In [24]:
from twitter import Twitter, OAuth, TwitterHTTPError, TwitterStream
import json

In [9]:
!pip install twitter


Collecting twitter
  Downloading twitter-1.17.1-py2.py3-none-any.whl (55kB)
    100% |████████████████████████████████| 61kB 1.5MB/s ta 0:00:01
Installing collected packages: twitter
Successfully installed twitter-1.17.1

In [12]:
#from twython import Twython

import twitter

In [21]:
CONSUMER_KEY = 'pxeqo0ylpUayIIl5Nlc2kBmkb'
CONSUMER_SECRET = 'JUAAG5ilMS9TxZN1Y0ZKwPhsamtE3gFoIYTnKfwWTGqGmF6zXL'
ACCESS_TOKEN = '395150986-GiB9RbBtrjjiEetZ977wtQwYGVWCuhiPMir0962F'
ACCESS_SECRET = 'DUk5aVVGGy55PySqjVNMWV4MTghtvdfwXbDJROUEnrH9Y'

oauth = OAuth(ACCESS_TOKEN, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET)

In [22]:
# Initiate the connection to Twitter Streaming API
twitter_stream = TwitterStream(auth=oauth)

# Get a sample of the public data following through Twitter
iterator = twitter_stream.statuses.sample()

In [25]:
# the Twitter API to collect data for days or even longer. 
tweet_count = 1000
for tweet in iterator:
    tweet_count -= 1
    # Twitter Python Tool wraps the data returned by Twitter 
    # as a TwitterDictResponse object.
    # We convert it back to the JSON format to print/score
    print(json.dumps(tweet))
    
    # The command below will do pretty printing for JSON data, try it out
    # print json.dumps(tweet, indent=4)
       
    if tweet_count <= 0:
        break


{"created_at": "Thu Sep 21 21:16:41 +0000 2017", "id": 910976098506125312, "id_str": "910976098506125312", "text": "I told him I got rid of his bitch ass ugly dog \ud83e\udd37\ud83c\udffc\u200d\u2640\ufe0f https://t.co/unNT509wNc", "display_text_range": [0, 52], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1738473607, "id_str": "1738473607", "name": "YoungNatty\u264a\ufe0f", "screen_name": "love_ladykicks", "location": "Bay Area, CA", "url": null, "description": "25\u2728Self Made\u26a1\ufe0fCali\u27a1\ufe0fNC| Thee Gram: @_YoungNatty SnapThang: laddyycain", "translator_type": "none", "protected": false, "verified": false, "followers_count": 319, "friends_count": 632, "listed_count": 4, "favourites_count": 862, "statuses_count": 6937, "created_at": "Fri Sep 06 23:46:32 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909176330540933133/Rcf8leo5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909176330540933133/Rcf8leo5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1738473607/1500435431", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910976094446039040, "id_str": "910976094446039040", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "url": "https://t.co/unNT509wNc", "display_url": "pic.twitter.com/unNT509wNc", "expanded_url": "https://twitter.com/love_ladykicks/status/910976098506125312/photo/1", "type": "photo", "sizes": {"small": {"w": 382, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1125, "h": 2001, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976094446039040, "id_str": "910976094446039040", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "url": "https://t.co/unNT509wNc", "display_url": "pic.twitter.com/unNT509wNc", "expanded_url": "https://twitter.com/love_ladykicks/status/910976098506125312/photo/1", "type": "photo", "sizes": {"small": {"w": 382, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1125, "h": 2001, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028601658"}
{"created_at": "Thu Sep 21 21:16:41 +0000 2017", "id": 910976098514726917, "id_str": "910976098514726917", "text": "\u00bfAburrido Quien? https://t.co/GDDsdaWAHU", "display_text_range": [0, 16], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 811779425876512768, "id_str": "811779425876512768", "name": "LuisYeg27", "screen_name": "LuisYeg27", "location": "Venezuela", "url": null, "description": "Hola Chabales :v", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4, "friends_count": 29, "listed_count": 0, "favourites_count": 5, "statuses_count": 9, "created_at": "Thu Dec 22 03:44:32 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/901588425798766592/G6oPPuH8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/901588425798766592/G6oPPuH8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/811779425876512768/1482378718", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910976080542093312, "id_str": "910976080542093312", "indices": [17, 40], "media_url": "http://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "url": "https://t.co/GDDsdaWAHU", "display_url": "pic.twitter.com/GDDsdaWAHU", "expanded_url": "https://twitter.com/LuisYeg27/status/910976098514726917/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 338, "resize": "fit"}, "small": {"w": 554, "h": 338, "resize": "fit"}, "medium": {"w": 554, "h": 338, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976080542093312, "id_str": "910976080542093312", "indices": [17, 40], "media_url": "http://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "url": "https://t.co/GDDsdaWAHU", "display_url": "pic.twitter.com/GDDsdaWAHU", "expanded_url": "https://twitter.com/LuisYeg27/status/910976098514726917/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 338, "resize": "fit"}, "small": {"w": 554, "h": 338, "resize": "fit"}, "medium": {"w": 554, "h": 338, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028601660"}
{"created_at": "Thu Sep 21 21:16:41 +0000 2017", "id": 910976098535723014, "id_str": "910976098535723014", "text": "Reacting to XXxTentacion Hanging White Kid!! And His New Look Must Watch: https://t.co/BQkMpV0nTy via @YouTube", "source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 412036728, "id_str": "412036728", "name": "Samuel Bowman", "screen_name": "SAM_BOWMAN2", "location": null, "url": "https://m.youtube.com/user/eGNike2", "description": "IG: __trapwiz Snapchat: sambowshc2", "translator_type": "none", "protected": false, "verified": false, "followers_count": 394, "friends_count": 849, "listed_count": 0, "favourites_count": 269, "statuses_count": 339, "created_at": "Mon Nov 14 05:50:23 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "D02B55", "profile_sidebar_border_color": "829D5E", "profile_sidebar_fill_color": "99CC33", "profile_text_color": "3E4415", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/784265760910692352/jb-NtS_7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784265760910692352/jb-NtS_7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/412036728/1457921198", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/BQkMpV0nTy", "expanded_url": "http://youtu.be/fA6f-vBkXTE?a", "display_url": "youtu.be/fA6f-vBkXTE?a", "indices": [74, 97]}], "user_mentions": [{"screen_name": "YouTube", "name": "YouTube", "id": 10228272, "id_str": "10228272", "indices": [102, 110]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028601665"}
{"delete": {"status": {"id": 201518905066397697, "id_str": "201518905066397697", "user_id": 355314147, "user_id_str": "355314147"}, "timestamp_ms": "1506028602245"}}
{"delete": {"status": {"id": 321181601264435200, "id_str": "321181601264435200", "user_id": 292739525, "user_id_str": "292739525"}, "timestamp_ms": "1506028602478"}}
{"delete": {"status": {"id": 819588832970604545, "id_str": "819588832970604545", "user_id": 2963792109, "user_id_str": "2963792109"}, "timestamp_ms": "1506028602608"}}
{"delete": {"status": {"id": 910968490059845637, "id_str": "910968490059845637", "user_id": 2867688255, "user_id_str": "2867688255"}, "timestamp_ms": "1506028602661"}}
{"delete": {"status": {"id": 910973317707857920, "id_str": "910973317707857920", "user_id": 3064086545, "user_id_str": "3064086545"}, "timestamp_ms": "1506028602671"}}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102696288256, "id_str": "910976102696288256", "text": "RT @hxyaw: Best thing about bringing this to GUQ is that we host over 40 nationalities. The diverse love for \ud83c\uddf6\ud83c\udde6 is prevalent\ud83c\udf0e\u2026 ", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 46899351, "id_str": "46899351", "name": "Neeshad V S", "screen_name": "ineeshadvs", "location": "Qatar", "url": "http://about.me/neeshad", "description": "Youth #Climate Advocate | Speaker | Co-founder @aycmqa | MIT @ClimateCoLab Fellow | @CliMates_ | @YouthClimateLab | @citizensclimate | @CoalitionWILD|", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3246, "friends_count": 466, "listed_count": 1257, "favourites_count": 58264, "statuses_count": 186052, "created_at": "Sat Jun 13 15:00:43 +0000 2009", "utc_offset": 14400, "time_zone": "Abu Dhabi", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9266CC", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/515898948729331712/ltaD6dX5.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/515898948729331712/ltaD6dX5.jpeg", "profile_background_tile": true, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "E3E2DE", "profile_text_color": "634047", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906194790408212480/e6ZCDlvu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906194790408212480/e6ZCDlvu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/46899351/1503420048", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:10:39 +0000 2017", "id": 910838684110413824, "id_str": "910838684110413824", "text": "Best thing about bringing this to GUQ is that we host over 40 nationalities. The diverse love for \ud83c\uddf6\ud83c\udde6 is prevalent\ud83c\udf0e\u2026 https://t.co/I35Imyq9If", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": true, "in_reply_to_status_id": 910776840721174529, "in_reply_to_status_id_str": "910776840721174529", "in_reply_to_user_id": 223104961, "in_reply_to_user_id_str": "223104961", "in_reply_to_screen_name": "hxyaw", "user": {"id": 223104961, "id_str": "223104961", "name": "Haya Al-Thani\ud83c\uddf6\ud83c\udde6", "screen_name": "hxyaw", "location": null, "url": "https://curiouscat.me/Hayabntalwaleed", "description": "\u0647\u064a\u0627 \u0628\u0646\u062a \u0627\u0644\u0648\u0644\u064a\u062f Avid reader, caffeinated thinker, opinionated speaker. Georgetown SFS. Harvard. Int'l Politics|Arab & Regional Studies. \u0623\u0645\u064a \u0645\u0631\u064a\u0645\u2764\ufe0f#\u062a\u0645\u064a\u0645_\u0627\u0644\u0645\u062c\u062f\ud83c\uddf6\ud83c\udde6", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3215, "friends_count": 527, "listed_count": 24, "favourites_count": 5776, "statuses_count": 45209, "created_at": "Sun Dec 05 12:02:55 +0000 2010", "utc_offset": 10800, "time_zone": "Kuwait", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "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_link_color": "8A0808", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910040855272202240/L0ECLeh5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910040855272202240/L0ECLeh5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/223104961/1505325703", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "Best thing about bringing this to GUQ is that we host over 40 nationalities. The diverse love for \ud83c\uddf6\ud83c\udde6 is prevalent\ud83c\udf0e\u2764\ufe0f #WorldStandsWithQatar https://t.co/f5i95zhzcy", "display_text_range": [0, 138], "entities": {"hashtags": [{"text": "WorldStandsWithQatar", "indices": [117, 138]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910838656755105792, "id_str": "910838656755105792", "indices": [139, 162], "media_url": "http://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "url": "https://t.co/f5i95zhzcy", "display_url": "pic.twitter.com/f5i95zhzcy", "expanded_url": "https://twitter.com/hxyaw/status/910838684110413824/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 900, "resize": "fit"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910838656755105792, "id_str": "910838656755105792", "indices": [139, 162], "media_url": "http://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "url": "https://t.co/f5i95zhzcy", "display_url": "pic.twitter.com/f5i95zhzcy", "expanded_url": "https://twitter.com/hxyaw/status/910838684110413824/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 900, "resize": "fit"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}}, "quote_count": 0, "reply_count": 5, "retweet_count": 7, "favorite_count": 16, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/I35Imyq9If", "expanded_url": "https://twitter.com/i/web/status/910838684110413824", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [116, 139]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "hxyaw", "name": "Haya Al-Thani\ud83c\uddf6\ud83c\udde6", "id": 223104961, "id_str": "223104961", "indices": [3, 9]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602657"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102725599232, "id_str": "910976102725599232", "text": "RT @asummercold: \ud65c\ud65c \ud45c\uc815 \uc7a5\uc778 \ud83d\udd25\n\n170920 \uc18c\ub9ac\ubc14\ub2e4 \uc5b4\uc6cc\uc988 #\ud65c\ud65c FULL VER \ud83d\udcf9 https://t.co/WL823tetz5\n#\uc6cc\ub108\uc6d0 #\uc639\uc131\uc6b0 https://t.co/tkoYeA4sRB", "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M2)</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 898168649936130048, "id_str": "898168649936130048", "name": "\ubbf8\uc57c", "screen_name": "titipino23", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 10, "friends_count": 35, "listed_count": 0, "favourites_count": 12, "statuses_count": 163, "created_at": "Thu Aug 17 13:04:28 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 13:43:50 +0000 2017", "id": 910862133906128897, "id_str": "910862133906128897", "text": "\ud65c\ud65c \ud45c\uc815 \uc7a5\uc778 \ud83d\udd25\n\n170920 \uc18c\ub9ac\ubc14\ub2e4 \uc5b4\uc6cc\uc988 #\ud65c\ud65c FULL VER \ud83d\udcf9 https://t.co/WL823tetz5\n#\uc6cc\ub108\uc6d0 #\uc639\uc131\uc6b0 https://t.co/tkoYeA4sRB", "display_text_range": [0, 76], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 880808976819994624, "id_str": "880808976819994624", "name": "\uc5ec\ub984\uac10\uae30", "screen_name": "asummercold", "location": "\ud63c\uc790 \uc18c\uc18c\ud558\uac8c \uc553\ub294 \uacf3", "url": null, "description": "\uc5ec\ub984\uc740 \uc639\uc131\uc6b0\u2600, \ud658\uc790\ub294 \ub098\ud83d\ude37", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1567, "friends_count": 32, "listed_count": 66, "favourites_count": 35, "statuses_count": 190, "created_at": "Fri Jun 30 15:23:19 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "91D2FA", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905421757854580737/gJYizMGs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905421757854580737/gJYizMGs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/880808976819994624/1502372450", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 656, "favorite_count": 622, "entities": {"hashtags": [{"text": "\ud65c\ud65c", "indices": [28, 31]}, {"text": "\uc6cc\ub108\uc6d0", "indices": [67, 71]}, {"text": "\uc639\uc131\uc6b0", "indices": [72, 76]}], "urls": [{"url": "https://t.co/WL823tetz5", "expanded_url": "https://youtu.be/LXBJPD0Eqg8", "display_url": "youtu.be/LXBJPD0Eqg8", "indices": [43, 66]}], "user_mentions": [], "symbols": [], "media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [77, 100], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [77, 100], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 40340, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/pl/CLFsKPu08ONFpaiR.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/240x240/aCfNQw2DjSKjcyiq.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/720x720/thmnHYJ3ywGzDBeN.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/480x480/uC5uPXH-45xS2sy-.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\ud65c\ud65c", "indices": [45, 48]}, {"text": "\uc6cc\ub108\uc6d0", "indices": [84, 88]}, {"text": "\uc639\uc131\uc6b0", "indices": [89, 93]}], "urls": [{"url": "https://t.co/WL823tetz5", "expanded_url": "https://youtu.be/LXBJPD0Eqg8", "display_url": "youtu.be/LXBJPD0Eqg8", "indices": [60, 83]}], "user_mentions": [{"screen_name": "asummercold", "name": "\uc5ec\ub984\uac10\uae30", "id": 880808976819994624, "id_str": "880808976819994624", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [94, 117], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "source_status_id": 910862133906128897, "source_status_id_str": "910862133906128897", "source_user_id": 880808976819994624, "source_user_id_str": "880808976819994624"}]}, "extended_entities": {"media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [94, 117], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "source_status_id": 910862133906128897, "source_status_id_str": "910862133906128897", "source_user_id": 880808976819994624, "source_user_id_str": "880808976819994624", "video_info": {"aspect_ratio": [1, 1], "duration_millis": 40340, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/pl/CLFsKPu08ONFpaiR.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/240x240/aCfNQw2DjSKjcyiq.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/720x720/thmnHYJ3ywGzDBeN.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/480x480/uC5uPXH-45xS2sy-.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028602664"}
{"delete": {"status": {"id": 910969723193626624, "id_str": "910969723193626624", "user_id": 2614596584, "user_id_str": "2614596584"}, "timestamp_ms": "1506028602773"}}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102709039104, "id_str": "910976102709039104", "text": "RT @Teddyt00asian: @iamtheanswer_ Anytime \u270a\ufe0f", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1447387310, "id_str": "1447387310", "name": "zo", "screen_name": "iamtheanswer_", "location": null, "url": "http://finessing.com", "description": "vs6 is iconic", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1927, "friends_count": 804, "listed_count": 9, "favourites_count": 17356, "statuses_count": 45142, "created_at": "Tue May 21 22:13:48 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909528111527661568/fU0u_0BV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909528111527661568/fU0u_0BV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1447387310/1505738359", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:00:27 +0000 2017", "id": 910972013191290886, "id_str": "910972013191290886", "text": "@iamtheanswer_ Anytime \u270a\ufe0f", "display_text_range": [15, 25], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910965160763957254, "in_reply_to_status_id_str": "910965160763957254", "in_reply_to_user_id": 1447387310, "in_reply_to_user_id_str": "1447387310", "in_reply_to_screen_name": "iamtheanswer_", "user": {"id": 164596634, "id_str": "164596634", "name": "teddy", "screen_name": "Teddyt00asian", "location": null, "url": null, "description": "24. Navy vet. \u270a\ufe0f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3304, "friends_count": 2880, "listed_count": 15, "favourites_count": 11650, "statuses_count": 210027, "created_at": "Fri Jul 09 07:29:55 +0000 2010", "utc_offset": -18000, "time_zone": "Quito", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000043759064/29df881c7318a26a2b1bbebb8a8ba21c.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000043759064/29df881c7318a26a2b1bbebb8a8ba21c.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908069701556883457/A9qp2t3j_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908069701556883457/A9qp2t3j_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/164596634/1503331480", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "iamtheanswer_", "name": "zo", "id": 1447387310, "id_str": "1447387310", "indices": [0, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Teddyt00asian", "name": "teddy", "id": 164596634, "id_str": "164596634", "indices": [3, 17]}, {"screen_name": "iamtheanswer_", "name": "zo", "id": 1447387310, "id_str": "1447387310", "indices": [19, 33]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102721564673, "id_str": "910976102721564673", "text": "RT @casaliteratura: Este s\u00e1bado 23 de setiembre, a las 10:30 a.m., tendremos un recorrido dirigido a docentes en nuestra exposici\u00f3n Ama\u2026 ", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 734108081467064320, "id_str": "734108081467064320", "name": "Ag\u00e9ndalo Lima", "screen_name": "agendalo_pe", "location": "Lima, Peru", "url": null, "description": "Ag\u00e9ndalo Lima nace con la intenci\u00f3n de ayudar a las personas a encontrar un lugar de esparcimiento. Hacemos RETWEET a tus eventos !!!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 286, "friends_count": 57, "listed_count": 11, "favourites_count": 698, "statuses_count": 2563, "created_at": "Sat May 21 19:46:20 +0000 2016", "utc_offset": -18000, "time_zone": "Bogota", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/734110987352199170/6BUr6Ro1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734110987352199170/6BUr6Ro1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/734108081467064320/1463862026", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:01:08 +0000 2017", "id": 910972185849864194, "id_str": "910972185849864194", "text": "Este s\u00e1bado 23 de setiembre, a las 10:30 a.m., tendremos un recorrido dirigido a docentes en nuestra exposici\u00f3n Ama\u2026 https://t.co/XBRJBtZN6F", "display_text_range": [0, 140], "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 107751029, "id_str": "107751029", "name": "Casa de Literatura", "screen_name": "casaliteratura", "location": "Jr. Ancash 207, Lima", "url": "http://twittercounter.com/casaliteratura", "description": "La Casa de la Literatura Peruana es un centro cultural dedicado a provocar la experiencia literaria en la ciudadan\u00eda. Entrada libre a todas las actividades.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 22719, "friends_count": 1437, "listed_count": 283, "favourites_count": 1468, "statuses_count": 21391, "created_at": "Sat Jan 23 16:15:02 +0000 2010", "utc_offset": -18000, "time_zone": "Lima", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": 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_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/813407458714669057/Ms4rMXBs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/813407458714669057/Ms4rMXBs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/107751029/1488589669", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "Este s\u00e1bado 23 de setiembre, a las 10:30 a.m., tendremos un recorrido dirigido a docentes en nuestra exposici\u00f3n Amauta. #IngresoLibre https://t.co/atH3TiGuLP", "display_text_range": [0, 133], "entities": {"hashtags": [{"text": "IngresoLibre", "indices": [120, 133]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910972182746075137, "id_str": "910972182746075137", "indices": [134, 157], "media_url": "http://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "url": "https://t.co/atH3TiGuLP", "display_url": "pic.twitter.com/atH3TiGuLP", "expanded_url": "https://twitter.com/casaliteratura/status/910972185849864194/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 844, "h": 726, "resize": "fit"}, "medium": {"w": 844, "h": 726, "resize": "fit"}, "small": {"w": 680, "h": 585, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910972182746075137, "id_str": "910972182746075137", "indices": [134, 157], "media_url": "http://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "url": "https://t.co/atH3TiGuLP", "display_url": "pic.twitter.com/atH3TiGuLP", "expanded_url": "https://twitter.com/casaliteratura/status/910972185849864194/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 844, "h": 726, "resize": "fit"}, "medium": {"w": 844, "h": 726, "resize": "fit"}, "small": {"w": 680, "h": 585, "resize": "fit"}}}]}}, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 2, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/XBRJBtZN6F", "expanded_url": "https://twitter.com/i/web/status/910972185849864194", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "casaliteratura", "name": "Casa de Literatura", "id": 107751029, "id_str": "107751029", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602663"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102696439808, "id_str": "910976102696439808", "text": "RT @vsvp6ix: https://t.co/BfTMHh0wYI", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3338061507, "id_str": "3338061507", "name": "Renato Almeida", "screen_name": "renato10w", "location": "4400", "url": null, "description": "insta- renatoalmeidaw10", "translator_type": "none", "protected": false, "verified": false, "followers_count": 267, "friends_count": 152, "listed_count": 2, "favourites_count": 6077, "statuses_count": 11431, "created_at": "Sun Jun 21 02:12:18 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/889262300099739649/-YqEJ8jV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/889262300099739649/-YqEJ8jV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3338061507/1505850584", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:33:54 +0000 2017", "id": 910950230115471360, "id_str": "910950230115471360", "text": "https://t.co/BfTMHh0wYI", "display_text_range": [0, 0], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3035166554, "id_str": "3035166554", "name": "ADV.6iX", "screen_name": "vsvp6ix", "location": "mg", "url": "https://open.spotify.com/user/adv.6ix/playlist/6801raWAJqBBijX2JDtrU6", "description": "Rap, Fotos, Aleat\u00f3rias\u200b, V\u00eddeos, Gifs, Frases. http://facebook.com/asap.6ix/ https://www.instagram.com/asap.6ix/", "translator_type": "none", "protected": false, "verified": false, "followers_count": 112186, "friends_count": 315, "listed_count": 918, "favourites_count": 1538, "statuses_count": 58491, "created_at": "Sat Feb 21 20:22:28 +0000 2015", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ABB8C2", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/579628846757990400/dc__eEBU.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/579628846757990400/dc__eEBU.jpg", "profile_background_tile": true, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/799272093561004032/hkmNV5UC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/799272093561004032/hkmNV5UC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3035166554/1502314249", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 0, "retweet_count": 112, "favorite_count": 157, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": true, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "vsvp6ix", "name": "ADV.6iX", "id": 3035166554, "id_str": "3035166554", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}, "source_status_id": 910950230115471360, "source_status_id_str": "910950230115471360", "source_user_id": 3035166554, "source_user_id_str": "3035166554"}]}, "extended_entities": {"media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}, "source_status_id": 910950230115471360, "source_status_id_str": "910950230115471360", "source_user_id": 3035166554, "source_user_id_str": "3035166554"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028602657"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102708973569, "id_str": "910976102708973569", "text": "@rivalwally junkrat ain\u2019t even that bad. now WINSTON", "display_text_range": [12, 52], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910960246784499713, "in_reply_to_status_id_str": "910960246784499713", "in_reply_to_user_id": 1325566614, "in_reply_to_user_id_str": "1325566614", "in_reply_to_screen_name": "rivalwally", "user": {"id": 2334775510, "id_str": "2334775510", "name": "liam", "screen_name": "aIexisneiers", "location": null, "url": null, "description": "i went to an urgent care around here and they told me i had chlamydia one time.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 313, "friends_count": 321, "listed_count": 16, "favourites_count": 64920, "statuses_count": 17671, "created_at": "Mon Feb 10 00:58:48 +0000 2014", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "8D8B96", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909925723481264130/Zf7PJfi9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909925723481264130/Zf7PJfi9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2334775510/1495500197", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "rivalwally", "name": "DJ HENTAI", "id": 1325566614, "id_str": "1325566614", "indices": [0, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102713233408, "id_str": "910976102713233408", "text": "@futureofphilly I didn't know the slide rule can also be to the AHL for a 19 year eligible", "display_text_range": [16, 90], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910972738306740226, "in_reply_to_status_id_str": "910972738306740226", "in_reply_to_user_id": 754694767620030464, "in_reply_to_user_id_str": "754694767620030464", "in_reply_to_screen_name": "futureofphilly", "user": {"id": 134149281, "id_str": "134149281", "name": "Tim M.", "screen_name": "Flyersguru", "location": "South Jersey", "url": "http://www.FlyersAutographDatabase.com", "description": "Owner & Operator of the Flyers Autograph Database. Talking Flyers News & Rumors. I also talk Eagles. Hockey Autograph eBay store owner: https://t.co/AfodD2ezdx", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1235, "friends_count": 469, "listed_count": 66, "favourites_count": 2, "statuses_count": 59383, "created_at": "Sat Apr 17 15:45:09 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/93020644/FlyersLogo.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/93020644/FlyersLogo.png", "profile_background_tile": true, "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/576821776891654144/Mp7F075I_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/576821776891654144/Mp7F075I_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/134149281/1405269572", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "futureofphilly", "name": "Flyers Prospects", "id": 754694767620030464, "id_str": "754694767620030464", "indices": [0, 15]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602661"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102725816320, "id_str": "910976102725816320", "text": "RT @jsm2272: Wow! A whole site on Visual Patterns (more than 200 of them!) https://t.co/z31Bh429tq https://t.co/Trz7SjWFbe", "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Lite</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1469315990, "id_str": "1469315990", "name": "NTU Primary Maths", "screen_name": "NTUPriMaths", "location": "Nottingham, UK.", "url": null, "description": "Mathematical provocations, possibilities and delights\r\nPrimary Maths team at Nottingham Trent University \r\n(primary teacher education) views our own", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1034, "friends_count": 22, "listed_count": 70, "favourites_count": 951, "statuses_count": 4265, "created_at": "Thu May 30 09:10:22 +0000 2013", "utc_offset": -36000, "time_zone": "Hawaii", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/570881013836816384/6TgXUKk0_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/570881013836816384/6TgXUKk0_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1469315990/1424944945", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 00:45:48 +0000 2017", "id": 910666337361547270, "id_str": "910666337361547270", "text": "Wow! A whole site on Visual Patterns (more than 200 of them!) https://t.co/z31Bh429tq https://t.co/Trz7SjWFbe", "display_text_range": [0, 85], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 214986803, "id_str": "214986803", "name": "Julie Millan", "screen_name": "jsm2272", "location": "Toronto, Canada", "url": "http://JulieMillan.ca", "description": "Teacher in the Toronto DSB | Google Innovative Educator | Apple Distinguished Educator | http://www.juliemillan.ca | #TDSB #GoogleEI #FlipgridFever #ADE2017", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6805, "friends_count": 5803, "listed_count": 366, "favourites_count": 9462, "statuses_count": 9907, "created_at": "Fri Nov 12 18:35:37 +0000 2010", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/775080225822519296/eOQ4Y1st_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/775080225822519296/eOQ4Y1st_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/214986803/1453077505", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 5, "reply_count": 3, "retweet_count": 12, "favorite_count": 40, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z31Bh429tq", "expanded_url": "http://www.visualpatterns.org/", "display_url": "visualpatterns.org", "indices": [62, 85]}], "user_mentions": [], "symbols": [], "media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [86, 109], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [86, 109], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z31Bh429tq", "expanded_url": "http://www.visualpatterns.org/", "display_url": "visualpatterns.org", "indices": [75, 98]}], "user_mentions": [{"screen_name": "jsm2272", "name": "Julie Millan", "id": 214986803, "id_str": "214986803", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}, "source_status_id": 910666337361547270, "source_status_id_str": "910666337361547270", "source_user_id": 214986803, "source_user_id_str": "214986803"}]}, "extended_entities": {"media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}, "source_status_id": 910666337361547270, "source_status_id_str": "910666337361547270", "source_user_id": 214986803, "source_user_id_str": "214986803"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602664"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102721613825, "id_str": "910976102721613825", "text": "RT @hsercan_: A Spor bile yay\u0131n\u0131 kesti, Ali Ko\u00e7'un konu\u015fmas\u0131n\u0131 yay\u0131nl\u0131yor. FB TV g\u00f6rmezden gelmeye devam ediyor.", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2666185049, "id_str": "2666185049", "name": "Bize HerG\u00fcn 15Temmuz", "screen_name": "3f99459b5fc6495", "location": "izmir", "url": null, "description": "bir uyan\u0131\u015f bir dirili\u015f bir yeniden do\u011fu\u015f bir besmele \u00e7eki\u015fin davas\u0131d\u0131r bu", "translator_type": "none", "protected": false, "verified": false, "followers_count": 799, "friends_count": 930, "listed_count": 0, "favourites_count": 1194, "statuses_count": 1580, "created_at": "Thu Jul 03 02:30:47 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907173124868857856/0jtpXmnr_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907173124868857856/0jtpXmnr_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2666185049/1475847444", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:13:18 +0000 2017", "id": 910960146922262528, "id_str": "910960146922262528", "text": "A Spor bile yay\u0131n\u0131 kesti, Ali Ko\u00e7'un konu\u015fmas\u0131n\u0131 yay\u0131nl\u0131yor. FB TV g\u00f6rmezden gelmeye devam ediyor.", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 138357336, "id_str": "138357336", "name": "Sercan Okur", "screen_name": "hsercan_", "location": "Kartal, \u0130stanbul", "url": "http://www.kuzeystar.com", "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 2294, "friends_count": 463, "listed_count": 5, "favourites_count": 291, "statuses_count": 20185, "created_at": "Thu Apr 29 09:40:10 +0000 2010", "utc_offset": 10800, "time_zone": "Istanbul", "geo_enabled": true, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ACDED6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000180797873/KvbLv_Jv.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000180797873/KvbLv_Jv.jpeg", "profile_background_tile": true, "profile_link_color": "038543", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907345967422337024/FL_dXL9O_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907345967422337024/FL_dXL9O_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/138357336/1485034078", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 1, "retweet_count": 45, "favorite_count": 124, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "tr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "hsercan_", "name": "Sercan Okur", "id": 138357336, "id_str": "138357336", "indices": [3, 12]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "tr", "timestamp_ms": "1506028602663"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102734147585, "id_str": "910976102734147585", "text": "RT @JeffParshley: I only want people around who teach me the importance of growth and who encourage and support me through the hardships of\u2026", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 894585840361365504, "id_str": "894585840361365504", "name": "CME \ud83d\udc8b", "screen_name": "Goldenncmee", "location": "Los Angeles, CA", "url": null, "description": "God First\ud83d\ude4f\ud83c\udffd Live Love Laugh \ud83e\udd8b\u2728", "translator_type": "none", "protected": false, "verified": false, "followers_count": 133, "friends_count": 113, "listed_count": 0, "favourites_count": 449, "statuses_count": 1334, "created_at": "Mon Aug 07 15:47:39 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900592655121494016/gdLtWf8J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900592655121494016/gdLtWf8J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/894585840361365504/1503553050", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:17:46 +0000 2017", "id": 910961269208899584, "id_str": "910961269208899584", "text": "I only want people around who teach me the importance of growth and who encourage and support me through the hardships of my journey in life", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 30576467, "id_str": "30576467", "name": "Jeff Parshley", "screen_name": "JeffParshley", "location": "Los Angeles", "url": "http://www.noh8campaign.com", "description": "NOH8 Campaign Co-Founder", "translator_type": "none", "protected": false, "verified": true, "followers_count": 210061, "friends_count": 189615, "listed_count": 777, "favourites_count": 895, "statuses_count": 6749, "created_at": "Sun Apr 12 01:57:29 +0000 2009", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/319790413/JEFFPARSHLEY_twitterbg.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/319790413/JEFFPARSHLEY_twitterbg.jpg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/711252611849068544/yhjxMi7T_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/711252611849068544/yhjxMi7T_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/30576467/1451432816", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 0, "retweet_count": 34, "favorite_count": 86, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "JeffParshley", "name": "Jeff Parshley", "id": 30576467, "id_str": "30576467", "indices": [3, 16]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602666"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102713249792, "id_str": "910976102713249792", "text": "Lavei meu cabelo hj, d\u00e1 m\u00f3 al\u00edvio", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 842389215895797762, "id_str": "842389215895797762", "name": "\ud83c\udf51", "screen_name": "PORRAlohanne", "location": "No seu cora\u00e7\u00e3o", "url": null, "description": "17 anos/ solteira/ flamenguista \u2764\u2665\n\n\n\n\n\n\n\n\n\n\n\n\n\nA vida \u00e9 uma loucura, e no final todos morem!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 536, "friends_count": 281, "listed_count": 1, "favourites_count": 349, "statuses_count": 7086, "created_at": "Thu Mar 16 14:56:54 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910694352581775360/Hfl8MVRb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910694352581775360/Hfl8MVRb_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028602661"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729945088, "id_str": "910976102729945088", "text": "@LaGloriosaTuiit prob\u00e9 la beta, est\u00e1 muy buena.ya los ped\u00ed online pq ambos f\u00edsico salen un huevo.", "display_text_range": [17, 97], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": 910975485785624576, "in_reply_to_status_id_str": "910975485785624576", "in_reply_to_user_id": 1526249761, "in_reply_to_user_id_str": "1526249761", "in_reply_to_screen_name": "LaGloriosaTuiit", "user": {"id": 1321608510, "id_str": "1321608510", "name": "doble a", "screen_name": "PicanteAlicante", "location": "Ciudad Aut\u00f3noma de Buenos Aire", "url": null, "description": "Cuervo recalcitrante, a veces quiero todo y a la vez no quiero nada.. PseudoSoltero. #HastaLaVictoriaSiempre", "translator_type": "none", "protected": false, "verified": false, "followers_count": 23, "friends_count": 151, "listed_count": 0, "favourites_count": 673, "statuses_count": 743, "created_at": "Tue Apr 02 02:58:53 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3464895828/e6e79696bcec75cfb56047fcb1f3de75_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3464895828/e6e79696bcec75cfb56047fcb1f3de75_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1321608510/1502595545", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LaGloriosaTuiit", "name": "LaGloriosaTuit", "id": 1526249761, "id_str": "1526249761", "indices": [0, 16]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102708981760, "id_str": "910976102708981760", "text": "Las blumettra en todo el concurso #Gala2GH https://t.co/B14ZObAavX", "display_text_range": [0, 42], "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Lite</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 755522024, "id_str": "755522024", "name": "Mal\u00faPamplona :)", "screen_name": "Lauraaa_rm", "location": "ESPA\u00d1A", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 2310, "friends_count": 464, "listed_count": 18, "favourites_count": 33361, "statuses_count": 120076, "created_at": "Mon Aug 13 17:30:14 +0000 2012", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/866249709026988033/p8pkLrbj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/866249709026988033/p8pkLrbj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/755522024/1464626945", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910972661169360897, "quoted_status_id_str": "910972661169360897", "quoted_status": {"created_at": "Thu Sep 21 21:03:02 +0000 2017", "id": 910972661169360897, "id_str": "910972661169360897", "text": "Yo cuando Shippo algo https://t.co/D2OoOwMAhy", "display_text_range": [0, 21], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4904793082, "id_str": "4904793082", "name": "\ud83d\udd96\ud83d\udc2f\ud83e\udd81\ud83c\udf51", "screen_name": "lau_matamoros", "location": "Barcelona, Espa\u00f1a", "url": "https://youtu.be/nU5I5oRK-tc", "description": "TEORIA DEL ESPEJO | 41,92% |\u2764\ufe0f #BlumeTv #PLL", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1669, "friends_count": 284, "listed_count": 7, "favourites_count": 50956, "statuses_count": 48385, "created_at": "Sat Feb 13 13:31:03 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/885872917422235648/SjOFzjxc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/885872917422235648/SjOFzjxc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4904793082/1502435977", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 1, "retweet_count": 7, "favorite_count": 11, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910972652034170880, "id_str": "910972652034170880", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "url": "https://t.co/D2OoOwMAhy", "display_url": "pic.twitter.com/D2OoOwMAhy", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897/photo/1", "type": "photo", "sizes": {"medium": {"w": 554, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 382, "resize": "fit"}, "small": {"w": 554, "h": 382, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910972652034170880, "id_str": "910972652034170880", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "url": "https://t.co/D2OoOwMAhy", "display_url": "pic.twitter.com/D2OoOwMAhy", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897/photo/1", "type": "photo", "sizes": {"medium": {"w": 554, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 382, "resize": "fit"}, "small": {"w": 554, "h": 382, "resize": "fit"}}}, {"id": 910972652063469570, "id_str": "910972652063469570", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKRszO5WsAINoMf.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRszO5WsAINoMf.jpg", "url": "https://t.co/D2OoOwMAhy", "display_url": "pic.twitter.com/D2OoOwMAhy", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 450, "resize": "fit"}, "medium": {"w": 1200, "h": 795, "resize": "fit"}, "large": {"w": 1738, "h": 1151, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "Gala2GH", "indices": [34, 42]}], "urls": [{"url": "https://t.co/B14ZObAavX", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897", "display_url": "twitter.com/lau_matamoros/\u2026", "indices": [43, 66]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102730002434, "id_str": "910976102730002434", "text": "RT @Le_M__: \"Mon tr\u00e9sor ? Je vous le laisse si vous voulez. Trouvez le ! Je l'ai laissez quelque part dans ce monde.\" - Liliane Bettencourt.", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 908114192380678144, "id_str": "908114192380678144", "name": "Herviin BG", "screen_name": "HerviinB", "location": "Guin\u00e9e", "url": null, "description": "ajouter mon snap : herviin92i", "translator_type": "none", "protected": false, "verified": false, "followers_count": 20, "friends_count": 174, "listed_count": 0, "favourites_count": 0, "statuses_count": 125, "created_at": "Wed Sep 13 23:44:30 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908117974573305857/1OhaTf0j_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908117974573305857/1OhaTf0j_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:50:26 +0000 2017", "id": 910969490401320960, "id_str": "910969490401320960", "text": "\"Mon tr\u00e9sor ? Je vous le laisse si vous voulez. Trouvez le ! Je l'ai laissez quelque part dans ce monde.\" - Liliane Bettencourt.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2650614322, "id_str": "2650614322", "name": "Le \u2133", "screen_name": "Le_M__", "location": null, "url": null, "description": "J'parle dans ta t\u00eate comme le professeur Xavier", "translator_type": "none", "protected": false, "verified": false, "followers_count": 26470, "friends_count": 104, "listed_count": 192, "favourites_count": 0, "statuses_count": 2897, "created_at": "Sat Jun 28 16:38:01 +0000 2014", "utc_offset": 10800, "time_zone": "Athens", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/843113486012076033/osGSbnlI_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/843113486012076033/osGSbnlI_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2650614322/1460319397", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 10, "reply_count": 3, "retweet_count": 341, "favorite_count": 191, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Le_M__", "name": "Le \u2133", "id": 2650614322, "id_str": "2650614322", "indices": [3, 10]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "fr", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102725767169, "id_str": "910976102725767169", "text": "@richietcziers @damndylan how", "display_text_range": [26, 29], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910976000619614208, "in_reply_to_status_id_str": "910976000619614208", "in_reply_to_user_id": 2949278714, "in_reply_to_user_id_str": "2949278714", "in_reply_to_screen_name": "richietcziers", "user": {"id": 762167111800135680, "id_str": "762167111800135680", "name": "\u3164\u064b", "screen_name": "Iucaszuman", "location": null, "url": null, "description": "80swyatt @richietcziers", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3181, "friends_count": 95, "listed_count": 58, "favourites_count": 78252, "statuses_count": 30874, "created_at": "Sun Aug 07 06:02:54 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "FAB81E", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910703542289215488/OEeHq5G8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910703542289215488/OEeHq5G8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/762167111800135680/1505963281", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "richietcziers", "name": "mel", "id": 2949278714, "id_str": "2949278714", "indices": [0, 14]}, {"screen_name": "damndylan", "name": "meghan 3", "id": 2952500073, "id_str": "2952500073", "indices": [15, 25]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028602664"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102730002432, "id_str": "910976102730002432", "text": "RT @SiyasetArsivi: Alparslan T\u00fcrke\u015f ve Muhsin Yaz\u0131c\u0131o\u011flu https://t.co/RO0TNLce37", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1016340588, "id_str": "1016340588", "name": "Mesud Reis", "screen_name": "MesudReis", "location": "Trabzon, T\u00fcrkiye", "url": null, "description": "Misir unundan bol teraya\u011fli bir maliyeci.\n\nBazen yazar'\u0131m baz\u0131 baz\u0131 sus. \n\nBilema Trabzon \u015fivesi...\n\n'Hokkas\u0131zDivit'\n\nAsla y\u0131lmak olmayacakt\u0131r. Bir T\u00fcrk...", "translator_type": "none", "protected": false, "verified": false, "followers_count": 292, "friends_count": 394, "listed_count": 0, "favourites_count": 1296, "statuses_count": 7589, "created_at": "Mon Dec 17 00:15:16 +0000 2012", "utc_offset": 10800, "time_zone": "Athens", "geo_enabled": false, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "4A913C", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/790195908/25707fd6c69e8d08426208c39a5e8430.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/790195908/25707fd6c69e8d08426208c39a5e8430.jpeg", "profile_background_tile": true, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/790680079986720768/_eVu4KAB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/790680079986720768/_eVu4KAB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1016340588/1451261574", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:00:04 +0000 2017", "id": 910926619115753473, "id_str": "910926619115753473", "text": "Alparslan T\u00fcrke\u015f ve Muhsin Yaz\u0131c\u0131o\u011flu https://t.co/RO0TNLce37", "display_text_range": [0, 37], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2633628992, "id_str": "2633628992", "name": "Siyasi Foto\u011fraflar", "screen_name": "SiyasetArsivi", "location": "\u0130stanbul, T\u00fcrkiye", "url": null, "description": "Viral reklam i\u00e7in webbangz@gmail.com", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 146067, "friends_count": 252, "listed_count": 141, "favourites_count": 1, "statuses_count": 3173, "created_at": "Sat Jul 12 23:42:10 +0000 2014", "utc_offset": 10800, "time_zone": "Istanbul", "geo_enabled": false, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/683303542644281344/N1KHqyRB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683303542644281344/N1KHqyRB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2633628992/1451747037", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 2, "retweet_count": 38, "favorite_count": 255, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "tr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "SiyasetArsivi", "name": "Siyasi Foto\u011fraflar", "id": 2633628992, "id_str": "2633628992", "indices": [3, 17]}], "symbols": [], "media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}, "source_status_id": 910926619115753473, "source_status_id_str": "910926619115753473", "source_user_id": 2633628992, "source_user_id_str": "2633628992"}]}, "extended_entities": {"media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}, "source_status_id": 910926619115753473, "source_status_id_str": "910926619115753473", "source_user_id": 2633628992, "source_user_id_str": "2633628992"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "tr", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102721626113, "id_str": "910976102721626113", "text": "RT @iloveputarias: queria ser igual aquelas pessoas que come\u00e7a a beber na quinta e s\u00f3 para no domingo", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2157724914, "id_str": "2157724914", "name": "tique", "screen_name": "Patrick__Mug", "location": null, "url": null, "description": "snap: patrickmug", "translator_type": "none", "protected": false, "verified": false, "followers_count": 484, "friends_count": 304, "listed_count": 0, "favourites_count": 752, "statuses_count": 5938, "created_at": "Sat Oct 26 23:42:54 +0000 2013", "utc_offset": -7200, "time_zone": "Mid-Atlantic", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "080808", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435148658766389248/TV9k0qgV.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435148658766389248/TV9k0qgV.png", "profile_background_tile": true, "profile_link_color": "18BEDB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906646707114577920/Xw1DhD5F_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906646707114577920/Xw1DhD5F_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2157724914/1496747915", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:57:57 +0000 2017", "id": 910971381730471938, "id_str": "910971381730471938", "text": "queria ser igual aquelas pessoas que come\u00e7a a beber na quinta e s\u00f3 para no domingo", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3296275677, "id_str": "3296275677", "name": "(+18)", "screen_name": "iloveputarias", "location": "Snapchat: iloveputarias", "url": "http://camerahot.com", "description": "Bem-vindo \u00e0 conta mais sexual do Twitter. (apenas para +18, conte\u00fado adulto) Publicidade: iloveputarias@outlook.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 986742, "friends_count": 154, "listed_count": 2274, "favourites_count": 587, "statuses_count": 2125, "created_at": "Sun May 24 09:26:22 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/768254668778643456/I-hQDg8Q_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/768254668778643456/I-hQDg8Q_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3296275677/1505781758", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": [58576769], "is_quote_status": false, "quote_count": 233, "reply_count": 26, "retweet_count": 1326, "favorite_count": 1423, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "iloveputarias", "name": "(+18)", "id": 3296275677, "id_str": "3296275677", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028602663"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729961472, "id_str": "910976102729961472", "text": "Don't know whether to update to iOS 11 or nah #iOS11", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 857217571724066817, "id_str": "857217571724066817", "name": "kdramabride", "screen_name": "ambiguous_920", "location": null, "url": null, "description": "k-\ud83c\uddf0\ud83c\uddf7 | 20 | Talent: Patiently waiting for new kdrama episodes \ud83d\ude02\ud83d\ude4c\ud83c\udffb | Jess&Gabriel | Jess \u2764\ufe0f x6", "translator_type": "none", "protected": false, "verified": false, "followers_count": 32, "friends_count": 37, "listed_count": 0, "favourites_count": 363, "statuses_count": 440, "created_at": "Wed Apr 26 12:59:30 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904762069513371652/LrEJK2uB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904762069513371652/LrEJK2uB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/857217571724066817/1504547064", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "iOS11", "indices": [46, 52]}], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102708994049, "id_str": "910976102708994049", "text": "@SnowAndBeach I think it will . When is it out !?", "display_text_range": [14, 49], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975738718932992, "in_reply_to_status_id_str": "910975738718932992", "in_reply_to_user_id": 733003963994415108, "in_reply_to_user_id_str": "733003963994415108", "in_reply_to_screen_name": "SnowAndBeach", "user": {"id": 882158575631708160, "id_str": "882158575631708160", "name": "Liam", "screen_name": "liamJwhite23", "location": "Ireland", "url": null, "description": "Enjoy your own company. It's okay to go shopping alone, Go to the movies alone, Go out to eat alone. Be happy with yourself. nursing is my passion \ud83d\udc68\ud83c\udffb\u200d\u2695\ufe0f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 457, "friends_count": 2340, "listed_count": 5, "favourites_count": 5545, "statuses_count": 2937, "created_at": "Tue Jul 04 08:46:08 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900468005628518400/PZgIBw0-_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900468005628518400/PZgIBw0-_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/882158575631708160/1505661130", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "SnowAndBeach", "name": "Grant\ud83c\udf83\ud83d\udc7b", "id": 733003963994415108, "id_str": "733003963994415108", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102696407040, "id_str": "910976102696407040", "text": "PQP... https://t.co/g4QA5TrJx7", "display_text_range": [0, 6], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 392718175, "id_str": "392718175", "name": "Dom \u27b3\u2742", "screen_name": "valentimdom", "location": null, "url": "http://about.me/DomValentim", "description": "I`m #Rocker \u2620 \u221e #Rugby & #Archery \u27b3\u2742 #Crossfit \ud83c\udfcb\ud83c\udffb\u200d\u2640\ufe0f #Kendo \u2694\ufe0f  #Photografy \ud83d\udc7b#Snapchat: valentim.dom", "translator_type": "none", "protected": false, "verified": false, "followers_count": 802, "friends_count": 953, "listed_count": 18, "favourites_count": 13458, "statuses_count": 23563, "created_at": "Mon Oct 17 13:31:40 +0000 2011", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C3C5EB", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/566239711304245248/SXeagyaa.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/566239711304245248/SXeagyaa.jpeg", "profile_background_tile": true, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909479753232666625/jokOdKaW_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909479753232666625/jokOdKaW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/392718175/1500766064", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910654178233606144, "quoted_status_id_str": "910654178233606144", "quoted_status": {"created_at": "Wed Sep 20 23:57:29 +0000 2017", "id": 910654178233606144, "id_str": "910654178233606144", "text": "PEGAREMOS EM ARMAS\nIREMOS \u00c0S RUAS\n\nINACEIT\u00c1VEL https://t.co/S3NGO5eesk", "display_text_range": [0, 46], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter for  iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 7850072, "id_str": "7850072", "name": "Joleana", "screen_name": "juzao", "location": "S\u00e3o Paulo, Brasil", "url": "http://www.instagram.com/juzao", "description": "de dia trabalho no @TwitterBrasil e \u00e0 noite combato o crime pelas ruas da metr\u00f3pole (contato@juzao.com.br)", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 188110, "friends_count": 1207, "listed_count": 612, "favourites_count": 30335, "statuses_count": 118837, "created_at": "Tue Jul 31 15:19:37 +0000 2007", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "B38CC2", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/487009908705853442/MOvOMxP_.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/487009908705853442/MOvOMxP_.jpeg", "profile_background_tile": true, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "B7C9C7", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/654285359984046080/Yzl9qon__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654285359984046080/Yzl9qon__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/7850072/1447362622", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "68e019afec7d0ba5", "url": "https://api.twitter.com/1.1/geo/id/68e019afec7d0ba5.json", "place_type": "city", "name": "S\u00e3o Paulo", "full_name": "S\u00e3o Paulo, Brasil", "country_code": "BR", "country": "Brasil", "bounding_box": {"type": "Polygon", "coordinates": [[[-46.826039, -24.008814], [-46.826039, -23.356792], [-46.365052, -23.356792], [-46.365052, -24.008814]]]}, "attributes": {}}, "contributors": null, "quoted_status_id": 910646938336399360, "quoted_status_id_str": "910646938336399360", "is_quote_status": true, "quote_count": 41, "reply_count": 37, "retweet_count": 1098, "favorite_count": 1646, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/S3NGO5eesk", "expanded_url": "https://twitter.com/epocanegocios/status/910646938336399360", "display_url": "twitter.com/epocanegocios/\u2026", "indices": [47, 70]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/g4QA5TrJx7", "expanded_url": "https://twitter.com/juzao/status/910654178233606144", "display_url": "twitter.com/juzao/status/9\u2026", "indices": [7, 30]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028602657"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102713176064, "id_str": "910976102713176064", "text": "RT @XXL: F*ck it up sis\n\n(Remember Miri Ben-Ari?) https://t.co/Sttt7nl5XE", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 257182892, "id_str": "257182892", "name": "G\ud83d\udca7", "screen_name": "GSwagg_Music", "location": "Chester, South Carolina\u2708\ufe0f", "url": "http://www.soundcloud.com/SpiffyLover", "description": "18\ud83c\udf93|T.M\u2764\ufe0f|Blessed.\ud83d\ude07\u2728|R.I.P Uncle William \ud83e\udd40", "translator_type": "none", "protected": false, "verified": false, "followers_count": 956, "friends_count": 1114, "listed_count": 2, "favourites_count": 5558, "statuses_count": 10917, "created_at": "Thu Feb 24 22:25:09 +0000 2011", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "642D8B", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/667592255/ae81ae31421f99621d997ad28604bb2a.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/667592255/ae81ae31421f99621d997ad28604bb2a.png", "profile_background_tile": true, "profile_link_color": "FF0000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "C93ABF", "profile_text_color": "3D1957", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900561976082006017/HSKdj0nQ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900561976082006017/HSKdj0nQ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/257182892/1504327173", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:03:14 +0000 2017", "id": 910942512734457856, "id_str": "910942512734457856", "text": "F*ck it up sis\n\n(Remember Miri Ben-Ari?) https://t.co/Sttt7nl5XE", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 14629315, "id_str": "14629315", "name": "XXL Magazine", "screen_name": "XXL", "location": "New York", "url": "http://freshman.xxlmag.com/", "description": "Hip-Hop on a Higher Level", "translator_type": "none", "protected": false, "verified": true, "followers_count": 1557119, "friends_count": 2203, "listed_count": 6280, "favourites_count": 1945, "statuses_count": 161489, "created_at": "Fri May 02 18:29:28 +0000 2008", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFE", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/464062667259265024/r1JC4Lbl.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/464062667259265024/r1JC4Lbl.jpeg", "profile_background_tile": true, "profile_link_color": "D40C16", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "E8F0D4", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/476774260954771456/pR-suB70_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/476774260954771456/pR-suB70_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14629315/1499361720", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 113, "reply_count": 20, "retweet_count": 561, "favorite_count": 1127, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [41, 64], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040"}]}, "extended_entities": {"media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [41, 64], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040", "video_info": {"aspect_ratio": [9, 16], "duration_millis": 139600, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/720x1280/9sHpLDOeRPWC2g6c.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/360x640/TkiGkWPdTzQfAG5J.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/pl/rPi3EjbfxB7wVWhr.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/180x320/yKcWMM_ftd5nqUhd.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "XXL", "name": "XXL Magazine", "id": 14629315, "id_str": "14629315", "indices": [3, 7]}], "symbols": [], "media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [50, 73], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040"}]}, "extended_entities": {"media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [50, 73], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040", "video_info": {"aspect_ratio": [9, 16], "duration_millis": 139600, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/720x1280/9sHpLDOeRPWC2g6c.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/360x640/TkiGkWPdTzQfAG5J.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/pl/rPi3EjbfxB7wVWhr.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/180x320/yKcWMM_ftd5nqUhd.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in", "timestamp_ms": "1506028602661"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102730027011, "id_str": "910976102730027011", "text": "TClowting Alright. Can you try reinstalling the app using the steps here: https://t.co/CUI3fa1Pft and see if it makes a difference? /LM", "source": "<a href=\"https://ifttt.com\" rel=\"nofollow\">IFTTT</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 773304972, "id_str": "773304972", "name": "Pxloey1", "screen_name": "Cxloey", "location": null, "url": null, "description": "2012", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2, "friends_count": 1, "listed_count": 0, "favourites_count": 0, "statuses_count": 569, "created_at": "Wed Aug 22 09:55:55 +0000 2012", "utc_offset": 25200, "time_zone": "Jakarta", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F70D30", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/639667580/bmv0bb901648bku0ix63.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/639667580/bmv0bb901648bku0ix63.jpeg", "profile_background_tile": true, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/CUI3fa1Pft", "expanded_url": "http://spoti.fi/1TUh9sT", "display_url": "spoti.fi/1TUh9sT", "indices": [74, 97]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729945090, "id_str": "910976102729945090", "text": "RT @michaelc4reta: el personaje de Matteo nunca me cay\u00f3 bien pero est\u00e1 temporada cre\u00ed que iba a mejorar but no,fue todo lo contrario:)", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 866446602768179200, "id_str": "866446602768179200", "name": "Ana\ud83d\udc9a 15/9", "screen_name": "sb_anabanana", "location": "Guayaquil, Ecuador", "url": null, "description": "PRP\ud83d\udd25 Muerta.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 19, "friends_count": 65, "listed_count": 0, "favourites_count": 244, "statuses_count": 2151, "created_at": "Mon May 22 00:12:22 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908694693067804672/zxC9LPwu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908694693067804672/zxC9LPwu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/866446602768179200/1503291419", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:15:01 +0000 2017", "id": 910975678677385217, "id_str": "910975678677385217", "text": "el personaje de Matteo nunca me cay\u00f3 bien pero est\u00e1 temporada cre\u00ed que iba a mejorar but no,fue todo lo contrario:)", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 759224154679836672, "id_str": "759224154679836672", "name": "\ud83c\udde6\ud83c\uddf7\ud83c\uddf2\ud83c\uddfd", "screen_name": "michaelc4reta", "location": "\ud83d\udc51valentina\ud83d\udc51", "url": "https://www.instagram.com/alejandrapsk/", "description": "'' and if you want it, take it\nand if you can't take it, break it ''", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1788, "friends_count": 343, "listed_count": 6, "favourites_count": 16287, "statuses_count": 63337, "created_at": "Sat Jul 30 03:08:39 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "7FDBB6", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910913215432941568/qZpxDkU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910913215432941568/qZpxDkU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/759224154679836672/1505829638", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 3, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "michaelc4reta", "name": "\ud83c\udde6\ud83c\uddf7\ud83c\uddf2\ud83c\uddfd", "id": 759224154679836672, "id_str": "759224154679836672", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102734155777, "id_str": "910976102734155777", "text": "In the month of September win a $100 Hyatt gift card! https://t.co/2rj5yTH99Y", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 91508868, "id_str": "91508868", "name": "Dana  Rodriguez", "screen_name": "tatzgrrly", "location": "Lexington, SC", "url": "https://www.facebook.com/dana.rodriguez.7583", "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 3527, "friends_count": 2621, "listed_count": 710, "favourites_count": 18811, "statuses_count": 264093, "created_at": "Sat Nov 21 05:18:17 +0000 2009", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "642D8B", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/859622521/17b394cc9d358516c52035851df8719f.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/859622521/17b394cc9d358516c52035851df8719f.jpeg", "profile_background_tile": true, "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "7AC3EE", "profile_text_color": "FF0000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/459879053831331841/hWacCXK0_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459879053831331841/hWacCXK0_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/91508868/1496679249", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/2rj5yTH99Y", "expanded_url": "http://woobox.com/m4bsbc/jenovj", "display_url": "woobox.com/m4bsbc/jenovj", "indices": [54, 77]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602666"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729908224, "id_str": "910976102729908224", "text": "RT @UkNatArchives: #OTD 1915 - Cecil Chubb purchased #Stonehenge for \u00a36,600, as a gift for his wife. (image, 1906)\u2026 ", "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2724136502, "id_str": "2724136502", "name": "Dr Eleanor Quince", "screen_name": "eleanorquince", "location": null, "url": null, "description": "Lecturer at University of Southampton @HistoryAtSoton, country houses, heritage, interiors, London, shopping. AHRC projects: @swaythlingww1, @AntiqueDealersA", "translator_type": "none", "protected": false, "verified": false, "followers_count": 720, "friends_count": 873, "listed_count": 73, "favourites_count": 7294, "statuses_count": 8012, "created_at": "Mon Aug 11 15:22:30 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/498855652425334784/Y3asmrdj_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/498855652425334784/Y3asmrdj_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2724136502/1413737990", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:00:44 +0000 2017", "id": 910926785860259840, "id_str": "910926785860259840", "text": "#OTD 1915 - Cecil Chubb purchased #Stonehenge for \u00a36,600, as a gift for his wife. (image, 1906)\u2026 https://t.co/4JMfmgtbe6", "display_text_range": [0, 140], "source": "<a href=\"http://www.socialsignin.co.uk\" rel=\"nofollow\">SocialSignIn Application</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 55190298, "id_str": "55190298", "name": "National Archives UK", "screen_name": "UkNatArchives", "location": "Kew, London", "url": "http://www.nationalarchives.gov.uk", "description": "Official archive of the UK government. Discover our online collections, research guides and educational resources spanning 1,000 years of history", "translator_type": "none", "protected": false, "verified": true, "followers_count": 114639, "friends_count": 460, "listed_count": 2262, "favourites_count": 5691, "statuses_count": 9545, "created_at": "Thu Jul 09 09:30:16 +0000 2009", "utc_offset": 3600, "time_zone": "London", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "716B6B", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/821102698/d93eaa657b69e4191692db1e54cdb033.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/821102698/d93eaa657b69e4191692db1e54cdb033.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "EEEEEE", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/552155680027586560/jeQoHQvu_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/552155680027586560/jeQoHQvu_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/55190298/1480588521", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "#OTD 1915 - Cecil Chubb purchased #Stonehenge for \u00a36,600, as a gift for his wife. (image, 1906) https://t.co/ZUlqphbjo0 https://t.co/xGG2WibSOm", "display_text_range": [0, 119], "entities": {"hashtags": [{"text": "OTD", "indices": [0, 4]}, {"text": "Stonehenge", "indices": [34, 45]}], "urls": [{"url": "https://t.co/ZUlqphbjo0", "expanded_url": "http://socsi.in/cWA2A", "display_url": "socsi.in/cWA2A", "indices": [96, 119]}], "user_mentions": [], "symbols": [], "media": [{"id": 910926782790029318, "id_str": "910926782790029318", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "url": "https://t.co/xGG2WibSOm", "display_url": "pic.twitter.com/xGG2WibSOm", "expanded_url": "https://twitter.com/UkNatArchives/status/910926785860259840/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 656, "resize": "fit"}, "small": {"w": 680, "h": 372, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1281, "h": 700, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910926782790029318, "id_str": "910926782790029318", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "url": "https://t.co/xGG2WibSOm", "display_url": "pic.twitter.com/xGG2WibSOm", "expanded_url": "https://twitter.com/UkNatArchives/status/910926785860259840/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 656, "resize": "fit"}, "small": {"w": 680, "h": 372, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1281, "h": 700, "resize": "fit"}}}]}}, "quote_count": 6, "reply_count": 1, "retweet_count": 33, "favorite_count": 31, "entities": {"hashtags": [{"text": "OTD", "indices": [0, 4]}, {"text": "Stonehenge", "indices": [34, 45]}], "urls": [{"url": "https://t.co/4JMfmgtbe6", "expanded_url": "https://twitter.com/i/web/status/910926785860259840", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [97, 120]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "OTD", "indices": [19, 23]}, {"text": "Stonehenge", "indices": [53, 64]}], "urls": [], "user_mentions": [{"screen_name": "UkNatArchives", "name": "National Archives UK", "id": 55190298, "id_str": "55190298", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102700601344, "id_str": "910976102700601344", "text": "@AnsgarMedina @Politica_LR Mezclas papas con camotes.  Por supuesto que el homosexualismo es una realidad, qui\u00e9n lo\u2026 https://t.co/H9ZDS6ECVJ", "display_text_range": [27, 140], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": true, "in_reply_to_status_id": 910862400655695872, "in_reply_to_status_id_str": "910862400655695872", "in_reply_to_user_id": 3007955141, "in_reply_to_user_id_str": "3007955141", "in_reply_to_screen_name": "AnsgarMedina", "user": {"id": 128212618, "id_str": "128212618", "name": "Orlando Gonzales", "screen_name": "ogonzaleslara", "location": "Lima - Per\u00fa", "url": null, "description": "Cristiano. Peruano. Ingeniero.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 185, "friends_count": 349, "listed_count": 1, "favourites_count": 2897, "statuses_count": 2925, "created_at": "Wed Mar 31 13:03:33 +0000 2010", "utc_offset": -18000, "time_zone": "Lima", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542053604/7.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542053604/7.jpg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/865423529000538112/M0nXVpQ-_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/865423529000538112/M0nXVpQ-_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/128212618/1474988790", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "@AnsgarMedina @Politica_LR Mezclas papas con camotes.  Por supuesto que el homosexualismo es una realidad, qui\u00e9n lo neg\u00f3? Pero no es un sexo, sexo solo hay dos.", "display_text_range": [27, 160], "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "AnsgarMedina", "name": "Ansgar Medina", "id": 3007955141, "id_str": "3007955141", "indices": [0, 13]}, {"screen_name": "Politica_LR", "name": "Pol\u00edtica LRep\u00fablica", "id": 829750511624679424, "id_str": "829750511624679424", "indices": [14, 26]}], "symbols": []}}, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/H9ZDS6ECVJ", "expanded_url": "https://twitter.com/i/web/status/910976102700601344", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [{"screen_name": "AnsgarMedina", "name": "Ansgar Medina", "id": 3007955141, "id_str": "3007955141", "indices": [0, 13]}, {"screen_name": "Politica_LR", "name": "Pol\u00edtica LRep\u00fablica", "id": 829750511624679424, "id_str": "829750511624679424", "indices": [14, 26]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602658"}
{"delete": {"status": {"id": 361850201977270273, "id_str": "361850201977270273", "user_id": 488386698, "user_id_str": "488386698"}, "timestamp_ms": "1506028603090"}}
{"delete": {"status": {"id": 910120804456607744, "id_str": "910120804456607744", "user_id": 763298456303652864, "user_id_str": "763298456303652864"}, "timestamp_ms": "1506028603379"}}
{"delete": {"status": {"id": 910976031397466112, "id_str": "910976031397466112", "user_id": 173443386, "user_id_str": "173443386"}, "timestamp_ms": "1506028603523"}}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915758080, "id_str": "910976106915758080", "text": "RT @ytym333: Jr.\u304f\u3093\u305f\u3061\u300c\u5c71\u7530\u304f\u3093\u306f\u3044\u3044\u304a\u5ac1\u3055\u3093\u306b\u306a\u308a\u305d\u3046\uff01\u5973\u88c5\u304c\u4f3c\u5408\u3046\uff01\u300d\n\n\u88d5\u7fd4\u304f\u3093\u300c\u671d\u5473\u564c\u6c41\u4f5c\u3063\u3066\u304f\u308c\u305f\u304b\u3089\u201c\u7d50\u5a5a\u3057\u3088\u201d \u3063\u3066\u601d\u3063\u305f\u300d\n\n\u30ec\u30d9\u30eb\u304c1000\u9055\u3046", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 901610946598023168, "id_str": "901610946598023168", "name": "\u88d5\u7fd4\u795e\u62c5\ud83d\udc2c\u3086\u304d\u306a", "screen_name": "F96CF9", "location": null, "url": null, "description": "\u88d5\u7fd4\u795e\u62c5\ud83d\udc2cJUMP\u30aa\u30fc\u30eb\u62c5\u5f53\ud83d\ude4c\u305d\u3053\u3089\u3078\u3093\u306e\u5b66\u751f\u3067\u3054\u3056\u3044\u307e\u3059\ud83d\ude44\ud83d\udd90\ud83c\udffb\ud83d\udc93\u3068\u3082\u304f\u3093\ud83c\udf4b", "translator_type": "none", "protected": false, "verified": false, "followers_count": 319, "friends_count": 247, "listed_count": 0, "favourites_count": 53, "statuses_count": 994, "created_at": "Sun Aug 27 01:02:55 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906849622311632896/INrO5BS8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906849622311632896/INrO5BS8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/901610946598023168/1503827492", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 09:33:14 +0000 2017", "id": 910799067822800896, "id_str": "910799067822800896", "text": "Jr.\u304f\u3093\u305f\u3061\u300c\u5c71\u7530\u304f\u3093\u306f\u3044\u3044\u304a\u5ac1\u3055\u3093\u306b\u306a\u308a\u305d\u3046\uff01\u5973\u88c5\u304c\u4f3c\u5408\u3046\uff01\u300d\n\n\u88d5\u7fd4\u304f\u3093\u300c\u671d\u5473\u564c\u6c41\u4f5c\u3063\u3066\u304f\u308c\u305f\u304b\u3089\u201c\u7d50\u5a5a\u3057\u3088\u201d \u3063\u3066\u601d\u3063\u305f\u300d\n\n\u30ec\u30d9\u30eb\u304c1000\u9055\u3046", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1070076326, "id_str": "1070076326", "name": "\u3042\u3084\u304b", "screen_name": "ytym333", "location": "\u3086\u3068\u3084\u307e   \u5947\u8de1\u306e\u6b6f\u30d6\u30e9\u30b7 ", "url": "https://ask.fm/ytym333", "description": "\u9ed2\u9aea\u91cd\u3081\u524d\u9aea\u3068\u201d\u3060\u304b\u3089\u201d\u304c\u3081\u3061\u3083\u304f\u3061\u3083\u306b\u597d\u304d\u3067\u3059 (\u95a2\u897f\u306e\u5144\u3061\u3083\u3093\u9054\u3092\u611b\u3067\u308b\u30a2\u30ab\u30a6\u30f3\u30c8 @nzm__twin333)", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5016, "friends_count": 85, "listed_count": 23, "favourites_count": 23552, "statuses_count": 32262, "created_at": "Tue Jan 08 05:43:10 +0000 2013", "utc_offset": 28800, "time_zone": "Irkutsk", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/895921897510100992/BQCoxIdh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/895921897510100992/BQCoxIdh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1070076326/1484478947", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 9, "reply_count": 1, "retweet_count": 808, "favorite_count": 2556, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "ytym333", "name": "\u3042\u3084\u304b", "id": 1070076326, "id_str": "1070076326", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106894786560, "id_str": "910976106894786560", "text": "RT @_nskz: \u30a2\u30cf\uff01\u30a2\u30cf\u30cf\u30cf\uff01\u8ab0\u3082\u79c1\u3092\u53f1\u3089\u306a\u3044\uff01\u79c1\u306e\u81ea\u7531\u306a\u306e\uff01\u30a2\u30cf\u30cf\u30cf\uff01 https://t.co/TsKNtHWYfM", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2171159820, "id_str": "2171159820", "name": "\u982d\u306e\u60aa\u3044REIN\u2614\ud83d\udc36", "screen_name": "yuikonnu1999", "location": "\u795e\u5948\u5ddd", "url": "https://youtu.be/9qb4sXlASaU", "description": "\u5c11\u3057\u6b4c\u3063\u3066\u307f\u305f\u3092\u6295\u7a3f\u3057\u3066\u3044\u307e\u3059\u3002\u6700\u8fd1\u306f\u30a2\u30b3\u30ae\u3084\u3063\u3066\u307e\u3059\u3088\u3002CAS\u306f\u4e0d\u5b9a\u671f\u6c17\u5473\ud83c\udf00\u30ab\u30e1\u30e9\u3001\u30b3\u30b9\u30d7\u30ec\u3001\u304a\u7d75\u63cf\u304d\u3082\u3002\u30d7\u30ea\u30ad\u30e5\u30a2\u3068\u307c\u306e\u307c\u306e\u304c\u5927\u597d\u304d\u3067\u3059\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3585, "friends_count": 984, "listed_count": 13, "favourites_count": 9467, "statuses_count": 15910, "created_at": "Sun Nov 03 00:06:15 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909906927651495936/LMF8W7l9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909906927651495936/LMF8W7l9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2171159820/1505417970", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 15:00:55 +0000 2017", "id": 910519146001055744, "id_str": "910519146001055744", "text": "\u30a2\u30cf\uff01\u30a2\u30cf\u30cf\u30cf\uff01\u8ab0\u3082\u79c1\u3092\u53f1\u3089\u306a\u3044\uff01\u79c1\u306e\u81ea\u7531\u306a\u306e\uff01\u30a2\u30cf\u30cf\u30cf\uff01 https://t.co/TsKNtHWYfM", "display_text_range": [0, 29], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2551310142, "id_str": "2551310142", "name": "\u30de\u30ad\u30b3", "screen_name": "_nskz", "location": null, "url": "https://shira-tan.theblog.me/", "description": "@likepocky \u306e \u30a2\u30ab\u30a6\u30f3\u30c8\u79fb\u52d5\u5148.\ud83c\udfb8\ud83c\udfb7\ud83c\udf5c\ud83c\udf70\ud83c\udf66\ud83c\udf7a\ud83c\udf6a \u751f\u30af\u30ea\u30fc\u30e0\u306f\u98f2\u307f\u7269  \u25bd\u5275\u4f5c/CoC/\uff72\uff9d\uff7e\uff72\uff9d/\uff7b\uff80\uff7d\uff8d\uff9f/\uff8e\uff9e\uff70\uff84\uff9e\uff79\uff9e\uff70\uff91/\u9b3c\u982d\u83ab\u5b8f\n      http://odaibako.net/u/_nskz", "translator_type": "none", "protected": false, "verified": false, "followers_count": 502, "friends_count": 335, "listed_count": 30, "favourites_count": 19850, "statuses_count": 27222, "created_at": "Sat Jun 07 01:29:42 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897809139346296832/VHpkXFCR_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897809139346296832/VHpkXFCR_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2551310142/1505311500", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 249, "reply_count": 112, "retweet_count": 29802, "favorite_count": 64240, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [30, 53], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [30, 53], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "_nskz", "name": "\u30de\u30ad\u30b3", "id": 2551310142, "id_str": "2551310142", "indices": [3, 9]}], "symbols": [], "media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [41, 64], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}, "source_status_id": 910519146001055744, "source_status_id_str": "910519146001055744", "source_user_id": 2551310142, "source_user_id_str": "2551310142"}]}, "extended_entities": {"media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [41, 64], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}, "source_status_id": 910519146001055744, "source_status_id_str": "910519146001055744", "source_user_id": 2551310142, "source_user_id_str": "2551310142"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603658"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106911588352, "id_str": "910976106911588352", "text": "RT @TheHoopFocus: Lamar Norman Jr. (@Swaggyp__0) Ultimate Mixtape - coming soon. #ForTheCulture", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2209873915, "id_str": "2209873915", "name": "Nicole Cano", "screen_name": "nicolecano30_", "location": "Bay Area, CA", "url": "http://Instagram.com/nicolecurry.30", "description": "\ud83c\uddf2\ud83c\uddfd Bay Area \ud83c\udf09", "translator_type": "none", "protected": false, "verified": false, "followers_count": 684, "friends_count": 2568, "listed_count": 1, "favourites_count": 6512, "statuses_count": 7360, "created_at": "Sat Nov 23 02:50:30 +0000 2013", "utc_offset": -39600, "time_zone": "Midway Island", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/892870977415032833/1ab63YdX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/892870977415032833/1ab63YdX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209873915/1479063769", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:16:36 +0000 2017", "id": 910976075420848128, "id_str": "910976075420848128", "text": "Lamar Norman Jr. (@Swaggyp__0) Ultimate Mixtape - coming soon. #ForTheCulture", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2577778291, "id_str": "2577778291", "name": "HoopFocus", "screen_name": "TheHoopFocus", "location": "Baseline", "url": "https://www.youtube.com/channel/UCOvu0lmbJlWZ0Tnlf7zynAw", "description": "For the Culture | Contact: officialhoopfocus@gmail.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5198, "friends_count": 2735, "listed_count": 4, "favourites_count": 2876, "statuses_count": 1439, "created_at": "Fri Jun 20 00:59:25 +0000 2014", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/902687475071565824/Q3Ksiqky_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/902687475071565824/Q3Ksiqky_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2577778291/1504052081", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [{"text": "ForTheCulture", "indices": [63, 77]}], "urls": [], "user_mentions": [{"screen_name": "Swaggyp__0", "name": "Lamar Norman Jr", "id": 2779400511, "id_str": "2779400511", "indices": [18, 29]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "ForTheCulture", "indices": [81, 95]}], "urls": [], "user_mentions": [{"screen_name": "TheHoopFocus", "name": "HoopFocus", "id": 2577778291, "id_str": "2577778291", "indices": [3, 16]}, {"screen_name": "Swaggyp__0", "name": "Lamar Norman Jr", "id": 2779400511, "id_str": "2779400511", "indices": [36, 47]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603662"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106903347200, "id_str": "910976106903347200", "text": "RT @Drebae_: Fenty Beauty was a great launch. I'm just waiting on Rihanna to make an eyeshadow pallete now  https://t.co/yuP9FZT72d", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 387503882, "id_str": "387503882", "name": "brownhottie", "screen_name": "cluelessvibe", "location": "New Jersey, USA", "url": "http://uncutthinking.tumblr.com/", "description": "Snapchat//@cluelessvibe http://PayPal.me/EnDajac", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1510, "friends_count": 877, "listed_count": 18, "favourites_count": 5478, "statuses_count": 179354, "created_at": "Sun Oct 09 05:29:44 +0000 2011", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/768318209/93b700134fc55736526559b3d983a3db.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/768318209/93b700134fc55736526559b3d983a3db.jpeg", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/830517106793779200/K7NVHfd5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/830517106793779200/K7NVHfd5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/387503882/1478248906", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:56:24 +0000 2017", "id": 910955894980059136, "id_str": "910955894980059136", "text": "Fenty Beauty was a great launch. I'm just waiting on Rihanna to make an eyeshadow pallete now  https://t.co/yuP9FZT72d", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3117314104, "id_str": "3117314104", "name": "Alluring Ivy\u2728", "screen_name": "Drebae_", "location": "Bay Area", "url": "https://youtu.be/XYKb1z2PVUE", "description": "Makeup Enthusiast | Social Media Maven | I am a personality. Tweets Featured in Buzzfeed, TIME, Affinity, BET, MTV & more | Promotions: drebaemua@gmail.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 70129, "friends_count": 882, "listed_count": 1565, "favourites_count": 29910, "statuses_count": 30197, "created_at": "Thu Mar 26 05:18:44 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/885666699143389184/qRj8JP-X_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/885666699143389184/qRj8JP-X_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3117314104/1502070861", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 22, "reply_count": 5, "retweet_count": 321, "favorite_count": 967, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [95, 118], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104"}]}, "extended_entities": {"media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [95, 118], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104", "video_info": {"aspect_ratio": [25, 14], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/C9iMV8JVYAAidL4.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Drebae_", "name": "Alluring Ivy\u2728", "id": 3117314104, "id_str": "3117314104", "indices": [3, 11]}], "symbols": [], "media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [108, 131], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104"}]}, "extended_entities": {"media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [108, 131], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104", "video_info": {"aspect_ratio": [25, 14], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/C9iMV8JVYAAidL4.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603660"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106903216128, "id_str": "910976106903216128", "text": "#pcb board swap. check out our website at https://t.co/volC5bah5L today for more info!\u2026 https://t.co/jWrYc0x2Pr", "source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 760186128, "id_str": "760186128", "name": "TotalAccessData", "screen_name": "Total_Access2", "location": "Diamond Springs, CA", "url": "http://about.me/totalaccessdatarecovery", "description": "Rated Best Customer Service in the industry.\r\nFree FedEx shipping for all recoveries.\r\nWe guarantee a quote within one hour or you'll receive 10% off", "translator_type": "none", "protected": false, "verified": false, "followers_count": 490, "friends_count": 1793, "listed_count": 7, "favourites_count": 0, "statuses_count": 5279, "created_at": "Wed Aug 15 21:21:51 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/436645649912590337/pUfWf2Iw.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/436645649912590337/pUfWf2Iw.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "5E634A", "profile_text_color": "551E18", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2508978531/p92hvzp0vjib48vvtq0m_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2508978531/p92hvzp0vjib48vvtq0m_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/760186128/1392939277", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "pcb", "indices": [0, 4]}], "urls": [{"url": "https://t.co/volC5bah5L", "expanded_url": "http://www.totalaccessdatarecovery.com", "display_url": "totalaccessdatarecovery.com", "indices": [42, 65]}, {"url": "https://t.co/jWrYc0x2Pr", "expanded_url": "https://www.instagram.com/p/BZPD5TxHmD9/", "display_url": "instagram.com/p/BZPD5TxHmD9/", "indices": [88, 111]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603660"}
{"delete": {"status": {"id": 910758162499764224, "id_str": "910758162499764224", "user_id": 3634468694, "user_id_str": "3634468694"}, "timestamp_ms": "1506028603739"}}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106907480065, "id_str": "910976106907480065", "text": "Sometimes I wish I had a real bestfriend\ud83e\udd14", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 435985398, "id_str": "435985398", "name": "Kelsey Johnson", "screen_name": "ItsallabtdaBOSS", "location": null, "url": null, "description": "WELCOME TO MY WORLD!!! BO$$ LADY!!!! Mother of a Princess \ud83d\udc78\ud83c\udffd \ud83d\udc63ME ON IG @Boss_Lady745 | Add me on Snapchat: Boss_lady745", "translator_type": "none", "protected": false, "verified": false, "followers_count": 613, "friends_count": 461, "listed_count": 1, "favourites_count": 890, "statuses_count": 22330, "created_at": "Tue Dec 13 17:17:17 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "F5ABB5", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883153935887994886/oWH7XVXN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883153935887994886/oWH7XVXN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/435985398/1373413757", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603661"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106898931712, "id_str": "910976106898931712", "text": "RT @CitouSabia_: S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3344360243, "id_str": "3344360243", "name": "frases \ud83d\udcab", "screen_name": "frasevlngatlvas", "location": "ative as notifica\u00e7\u00f5es. ", "url": null, "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 143355, "friends_count": 58691, "listed_count": 39, "favourites_count": 2154, "statuses_count": 7509, "created_at": "Wed Jun 24 17:50:16 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ABB8C2", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": true, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/908494629892390912/b8XKuhLv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908494629892390912/b8XKuhLv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3344360243/1505436974", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:13:51 +0000 2017", "id": 910975383260016641, "id_str": "910975383260016641", "text": "S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "display_text_range": [0, 45], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 900428139523919872, "id_str": "900428139523919872", "name": "Sabi\u00e1", "screen_name": "CitouSabia_", "location": null, "url": "https://www.instagram.com/p/BZT0mzLg8Lk/", "description": "V1D4 L0k4\nSou o Dono do Morro porraaaaaa |Aceitamos sugest\u00f5es de Tweets | Ativem as notifica\u00e7\u00f5es // Criado- 08/09/2017 \u2764\ufe0f\ud83d\ude4f Twitter dedicado ao personagem Sabi\u00e1", "translator_type": "none", "protected": false, "verified": false, "followers_count": 20112, "friends_count": 27, "listed_count": 24, "favourites_count": 67, "statuses_count": 412, "created_at": "Wed Aug 23 18:42:52 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/900428139523919872/1505840576", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 29, "favorite_count": 23, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "CitouSabia_", "name": "Sabi\u00e1", "id": 900428139523919872, "id_str": "900428139523919872", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603659"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106903347201, "id_str": "910976106903347201", "text": "RT @BTS_twt: \ud83d\udc95\ud83d\ude06 https://t.co/aK3fMYg6qM", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2966041890, "id_str": "2966041890", "name": "Savion_jin_s.coups", "screen_name": "savionjinscoups", "location": null, "url": "http://instagram.com/savion_jin_s.coups", "description": "STOP THE FAN WARS AND LOVE AND SUPPORT ALL DIFFERENT IDOLS! KPOPPERS UNITE! \ud83d\udc95\ud83d\udc95\ud83d\udc95\nSVT PENTAGON BTS MONSTA X EXO K-POP \ud83d\udc47 Follow my instagram", "translator_type": "none", "protected": false, "verified": false, "followers_count": 68, "friends_count": 116, "listed_count": 1, "favourites_count": 2905, "statuses_count": 2867, "created_at": "Thu Jan 08 12:19:34 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "7FDBB6", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/903600015020576769/eDwLhBVh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/903600015020576769/eDwLhBVh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2966041890/1504270005", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 13:57:46 +0000 2017", "id": 910865640541495297, "id_str": "910865640541495297", "text": "\ud83d\udc95\ud83d\ude06 https://t.co/aK3fMYg6qM", "display_text_range": [0, 2], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 335141638, "id_str": "335141638", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "screen_name": "BTS_twt", "location": null, "url": "http://btsblog.ibighit.com", "description": "Hi~ we are BTS!", "translator_type": "regular", "protected": false, "verified": true, "followers_count": 8463059, "friends_count": 98, "listed_count": 19803, "favourites_count": 60, "statuses_count": 10126, "created_at": "Thu Jul 14 06:32:56 +0000 2011", "utc_offset": 28800, "time_zone": "Irkutsk", "geo_enabled": true, "lang": "ko", "contributors_enabled": false, "is_translator": 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_link_color": "FF0000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/335141638/1504796451", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 10762, "reply_count": 28240, "retweet_count": 167863, "favorite_count": 363148, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [3, 26], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [3, 26], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}}, {"id": 910865622975733760, "id_str": "910865622975733760", "indices": [3, 26], "media_url": "http://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}, "source_status_id": 910865640541495297, "source_status_id_str": "910865640541495297", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "extended_entities": {"media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}, "source_status_id": 910865640541495297, "source_status_id_str": "910865640541495297", "source_user_id": 335141638, "source_user_id_str": "335141638"}, {"id": 910865622975733760, "id_str": "910865622975733760", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "source_status_id": 910865640541495297, "source_status_id_str": "910865640541495297", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603660"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106919899136, "id_str": "910976106919899136", "text": "@xtcoxax \u304a\u306f\u3087\u30fc\u732b\u3055\u3093\ud83d\ude0a", "display_text_range": [9, 17], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910974451944112128, "in_reply_to_status_id_str": "910974451944112128", "in_reply_to_user_id": 880077494535077888, "in_reply_to_user_id_str": "880077494535077888", "in_reply_to_screen_name": "xtcoxax", "user": {"id": 4795946552, "id_str": "4795946552", "name": "\u3071\u304b\u3071\u304b\ud83e\udd24", "screen_name": "annzama1220", "location": "\u65e5\u672c", "url": null, "description": "\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 640, "friends_count": 157, "listed_count": 12, "favourites_count": 30162, "statuses_count": 23847, "created_at": "Fri Jan 22 00:53:25 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908523488545140736/BEIfSl9N_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908523488545140736/BEIfSl9N_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "xtcoxax", "name": "\ud83d\udc3b \u3042\u3059\u307d\u3093 \u3002", "id": 880077494535077888, "id_str": "880077494535077888", "indices": [0, 8]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603664"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924093440, "id_str": "910976106924093440", "text": "@iamanthonyjames @JSHiggins_ Let\u2019s keep it that way", "display_text_range": [29, 51], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975982147919873, "in_reply_to_status_id_str": "910975982147919873", "in_reply_to_user_id": 22640188, "in_reply_to_user_id_str": "22640188", "in_reply_to_screen_name": "iamanthonyjames", "user": {"id": 145195467, "id_str": "145195467", "name": "Michael \u2728", "screen_name": "MJRgrs", "location": "everywhere like such as", "url": "http://Instagr.am/MJRgrs", "description": "this is joy, this is summer", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 3218, "friends_count": 546, "listed_count": 29, "favourites_count": 18708, "statuses_count": 30553, "created_at": "Tue May 18 10:30:19 +0000 2010", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543530546987409408/-8ZDKq_J.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543530546987409408/-8ZDKq_J.jpeg", "profile_background_tile": false, "profile_link_color": "919191", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "000000", "profile_text_color": "858585", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/888497035997048832/RMrXbSZ6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/888497035997048832/RMrXbSZ6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/145195467/1503786947", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "iamanthonyjames", "name": "Ant \ud83d\udd25\ud83d\udc1c", "id": 22640188, "id_str": "22640188", "indices": [0, 16]}, {"screen_name": "JSHiggins_", "name": "James Higgins", "id": 201817316, "id_str": "201817316", "indices": [17, 28]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924318720, "id_str": "910976106924318720", "text": "\u0631\u0628\u0646\u0627 \u0628\u064a\u0642\u0648\u0644 \"\u0648 \u0644\u0642\u062f \u062e\u0644\u0642\u0646\u0627 \u0627\u0644\u0627\u0646\u0633\u0627\u0646 \u0648 \u0646\u0639\u0644\u0645 \u0645\u0627 \u062a\u0648\u0633\u0648\u0633 \u0628\u0647 \u0646\u0641\u0633\u0647 \u0648 \u0646\u062d\u0646 \u0627\u0642\u0631\u0628 \u0627\u0644\u064a\u0647 \u0645\u0646 \u062d\u0628\u0644 \u0627\u0644\u0648\u0631\u064a\u062f\" &lt;3 !\n\u0631\u0628\u0646\u0627 \u0642\u0631\u064a\u0628 \u0645\u0646\u0643 \u0627\u0643\u062a\u0631 \u0645\u0645\u0627 \u062a\u062a\u062e\u064a\u0644 \u0628\u0633 \u0627\u0646\u062a \u0627\u0644\u064a \u0628\u0639\u064a\u062f ..", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 891295212, "id_str": "891295212", "name": "ALY AHMED", "screen_name": "aly_ahmed2", "location": null, "url": null, "description": "\u064a\u0627\u0631\u0628 \u0646\u0633\u0627\u0641\u0631", "translator_type": "none", "protected": false, "verified": false, "followers_count": 404245, "friends_count": 146817, "listed_count": 419, "favourites_count": 2752, "statuses_count": 36795, "created_at": "Fri Oct 19 16:17:05 +0000 2012", "utc_offset": 10800, "time_zone": "Athens", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/464159962877267968/fezWVcQN_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/464159962877267968/fezWVcQN_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/891295212/1386328341", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106907480064, "id_str": "910976106907480064", "text": "jajajajajaj migue #DeLaPrimaveraAmo", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2873079965, "id_str": "2873079965", "name": "c\u03b1mi,,", "screen_name": "endlessvigna", "location": "{18/06/15} - {01/09/15}- {11/1", "url": null, "description": "*:\u2727realmente vale luchar por lo que uno sue\u00f1a*:\u2727 - flor vigna", "translator_type": "none", "protected": false, "verified": false, "followers_count": 11875, "friends_count": 1006, "listed_count": 4, "favourites_count": 36822, "statuses_count": 65613, "created_at": "Tue Nov 11 23:28:33 +0000 2014", "utc_offset": -10800, "time_zone": "Buenos Aires", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661263010401505281/5Z9WhGba.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661263010401505281/5Z9WhGba.png", "profile_background_tile": true, "profile_link_color": "000000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909495776161779712/R37cuy_p_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909495776161779712/R37cuy_p_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2873079965/1505167045", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "DeLaPrimaveraAmo", "indices": [18, 35]}], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603661"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915753985, "id_str": "910976106915753985", "text": "RT @med56_bot: \u300a\u540d\u8a00\u300b\u300c\u904e\u53bb\u554f\u304b\u3089\u554f\u984c\u304c\u51fa\u306a\u3044\u306a\u3089\u3001\u307f\u3093\u306a\u6b7b\u306c\u3057\u304b\u306a\u3044\u3058\u3083\u306a\u3044\uff01\uff01\u3000\u3042\u306a\u305f\u3082\u3001\u79c1\u3082\u2026\u300d\uff0d\u5df4\u30de\u30df https://t.co/Qk4vyzre6D", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 751282735289733122, "id_str": "751282735289733122", "name": "\u305f\u3060\u306e\u8089\u584a", "screen_name": "nickaiX", "location": "\u5b50\u5bae", "url": null, "description": "\u30d1\u30a4\u30d1\u30f3\u30de\u30f3\u3068\u7d19\u30ca\u30d7\u30ad\u30f3", "translator_type": "none", "protected": false, "verified": false, "followers_count": 329, "friends_count": 284, "listed_count": 13, "favourites_count": 29430, "statuses_count": 30137, "created_at": "Fri Jul 08 05:12:17 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/902236626637561856/6ZfrjHdl_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/902236626637561856/6ZfrjHdl_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/751282735289733122/1484881814", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Feb 20 10:13:48 +0000 2017", "id": 833620663260688384, "id_str": "833620663260688384", "text": "\u300a\u540d\u8a00\u300b\u300c\u904e\u53bb\u554f\u304b\u3089\u554f\u984c\u304c\u51fa\u306a\u3044\u306a\u3089\u3001\u307f\u3093\u306a\u6b7b\u306c\u3057\u304b\u306a\u3044\u3058\u3083\u306a\u3044\uff01\uff01\u3000\u3042\u306a\u305f\u3082\u3001\u79c1\u3082\u2026\u300d\uff0d\u5df4\u30de\u30df https://t.co/Qk4vyzre6D", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 394895164, "id_str": "394895164", "name": "\u533b\u5b66\u8a9e\u5442\u306a\u3046", "screen_name": "med56_bot", "location": "Langerhans\u5cf6\uff08\u4f53\u5185\uff09", "url": "http://medillust.net/med56", "description": "\u533b\u5b66\u306b\u95a2\u3059\u308b\u8a9e\u5442\u5408\u308f\u305b\u3092\uff11\u6642\u9593\u306b\uff11\u56de\u3064\u3076\u3084\u304f\u4ed5\u69d8\u3002TL\u306b\u6d41\u3057\u3066\u304a\u3051\u3070\u697d\u3057\u304f\u6697\u8a18\u3067\u304d\u308b\u304b\u3082\uff01\u304a\u4e0b\u54c1\u30cd\u30bf\u304c\u3042\u308b\u306e\u3067\u82e6\u624b\u306a\u4eba\u306f\u5fa1\u6ce8\u610f\u3092\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 47339, "friends_count": 42766, "listed_count": 939, "favourites_count": 661, "statuses_count": 52868, "created_at": "Thu Oct 20 20:03:03 +0000 2011", "utc_offset": -36000, "time_zone": "Hawaii", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": 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_link_color": "CC3366", "profile_sidebar_border_color": "DBE9ED", "profile_sidebar_fill_color": "E6F6F9", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/495391170361430017/eUbUvmRf_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495391170361430017/eUbUvmRf_normal.png", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 16, "favorite_count": 19, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [49, 72], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "extended_entities": {"media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [49, 72], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "med56_bot", "name": "\u533b\u5b66\u8a9e\u5442\u306a\u3046", "id": 394895164, "id_str": "394895164", "indices": [3, 13]}], "symbols": [], "media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [64, 87], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "extended_entities": {"media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [64, 87], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106894897152, "id_str": "910976106894897152", "text": "RT @muariix: @oopsmymuffins czy magia i r\u00f3\u017cne si\u0142y nadprzyrodzone istniej\u0105, a ludzie zwi\u0105zani z tym sie tak dobrze ukrywaj\u0105?", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 754224246260400128, "id_str": "754224246260400128", "name": "habilidad \ub098\ube44", "screen_name": "rosesforagatka", "location": "Badlands", "url": null, "description": "secrets I have held in my heart are harder to hide than I thought, maybe I just wanna be yours///5SOS//BTS", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2018, "friends_count": 3434, "listed_count": 5, "favourites_count": 21324, "statuses_count": 27638, "created_at": "Sat Jul 16 08:00:48 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pl", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "996699", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909514643743412225/CW3ogomJ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909514643743412225/CW3ogomJ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/754224246260400128/1503673728", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 09 14:03:28 +0000 2017", "id": 884050374893735937, "id_str": "884050374893735937", "text": "@oopsmymuffins czy magia i r\u00f3\u017cne si\u0142y nadprzyrodzone istniej\u0105, a ludzie zwi\u0105zani z tym sie tak dobrze ukrywaj\u0105?", "display_text_range": [15, 111], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 883823865083965440, "in_reply_to_status_id_str": "883823865083965440", "in_reply_to_user_id": 883708155640918016, "in_reply_to_user_id_str": "883708155640918016", "in_reply_to_screen_name": "muariix", "user": {"id": 883708155640918016, "id_str": "883708155640918016", "name": "muarii", "screen_name": "muariix", "location": "Poland", "url": null, "description": "one direction is literally the worlds biggest boyband yet i still feel like those bitches r underrated 170417", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2106, "friends_count": 1859, "listed_count": 2, "favourites_count": 10123, "statuses_count": 5505, "created_at": "Sat Jul 08 15:23:37 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909163188893179905/yZlOD_TS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909163188893179905/yZlOD_TS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/883708155640918016/1505596372", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 15, "reply_count": 16, "retweet_count": 858, "favorite_count": 427, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pl"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "muariix", "name": "muarii", "id": 883708155640918016, "id_str": "883708155640918016", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pl", "timestamp_ms": "1506028603658"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890743808, "id_str": "910976106890743808", "text": "@WhatBuilding the Pantheon, surely?", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 515418453, "in_reply_to_user_id_str": "515418453", "in_reply_to_screen_name": "WhatBuilding", "user": {"id": 3293933159, "id_str": "3293933159", "name": "Frank Walden", "screen_name": "WaldenFrancis", "location": "Brixton, London", "url": null, "description": "Londoner, saxophone player, amateur wine, cricket & architecture bore.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 410, "friends_count": 420, "listed_count": 1, "favourites_count": 605, "statuses_count": 571, "created_at": "Fri May 22 11:54:27 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/811961316969693185/uN1IeDN1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/811961316969693185/uN1IeDN1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3293933159/1482421639", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "WhatBuilding", "name": "What Building?", "id": 515418453, "id_str": "515418453", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106907541504, "id_str": "910976106907541504", "text": "RT @mbachelet: La Junta Asesora de la ONU sobre Mediaci\u00f3n a la que me han invitado a integrarme es voluntaria, no remunerada y su labor ser\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 70735009, "id_str": "70735009", "name": "KaTaRSiS", "screen_name": "mxmg", "location": "Santiago - Chile", "url": null, "description": "Una simple ciudadana", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3287, "friends_count": 2850, "listed_count": 56, "favourites_count": 1627, "statuses_count": 38779, "created_at": "Tue Sep 01 17:29:38 +0000 2009", "utc_offset": -10800, "time_zone": "Buenos Aires", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/60450041/mqblownaway.br.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/60450041/mqblownaway.br.jpg", "profile_background_tile": false, "profile_link_color": "6A6834", "profile_sidebar_border_color": "6A6834", "profile_sidebar_fill_color": "F3EA05", "profile_text_color": "111111", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/891852429289025536/1XkrM-QC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/891852429289025536/1XkrM-QC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/70735009/1501442567", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:25:11 +0000 2017", "id": 910963139235270659, "id_str": "910963139235270659", "text": "La Junta Asesora de la ONU sobre Mediaci\u00f3n a la que me han invitado a integrarme es voluntaria, no remunerada y su labor ser\u00e1 remota.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4119914644, "id_str": "4119914644", "name": "Michelle Bachelet", "screen_name": "mbachelet", "location": "Santiago, Chile", "url": null, "description": "Presidenta de Chile", "translator_type": "none", "protected": false, "verified": true, "followers_count": 250470, "friends_count": 121, "listed_count": 500, "favourites_count": 9, "statuses_count": 346, "created_at": "Thu Nov 05 14:20:16 +0000 2015", "utc_offset": -10800, "time_zone": "Santiago", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/824343903776239616/Fiux2ToR_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/824343903776239616/Fiux2ToR_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4119914644/1475836798", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 47, "reply_count": 82, "retweet_count": 334, "favorite_count": 558, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "mbachelet", "name": "Michelle Bachelet", "id": 4119914644, "id_str": "4119914644", "indices": [3, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603661"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924298240, "id_str": "910976106924298240", "text": "RT @geh_fla: Ontem foi um sil\u00eancio t\u00e3o grande na rua que parecia que o Botafogo tinha sido campe\u00e3o", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 51391967, "id_str": "51391967", "name": "Aloisio Villar", "screen_name": "aloisiovillar", "location": null, "url": "http://www.aloisiovillar.blogspot.com", "description": "Ator de filme porn\u00f4 gospel, cantor de funk universit\u00e1rio, dono de boca de fumo macrobi\u00f3tica e autor do best seller 50 tons de cor de burro quando foge. \u00c9 nois!!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1375, "friends_count": 823, "listed_count": 25, "favourites_count": 3590, "statuses_count": 172043, "created_at": "Sat Jun 27 09:05:09 +0000 2009", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/806713997/0dc402d4f81fd02c241d50cd7b74f29f.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/806713997/0dc402d4f81fd02c241d50cd7b74f29f.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/807311045006069761/2rGvYGVv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/807311045006069761/2rGvYGVv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/51391967/1463775647", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:47:39 +0000 2017", "id": 910938592297529345, "id_str": "910938592297529345", "text": "Ontem foi um sil\u00eancio t\u00e3o grande na rua que parecia que o Botafogo tinha sido campe\u00e3o", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2590260314, "id_str": "2590260314", "name": "GEHderson", "screen_name": "geh_fla", "location": null, "url": "http://gehfla10.sarahah.com", "description": "O perfil da #equipegeh e das #piadasgeh", "translator_type": "none", "protected": false, "verified": false, "followers_count": 7100, "friends_count": 566, "listed_count": 45, "favourites_count": 5788, "statuses_count": 81636, "created_at": "Thu Jun 26 20:59:31 +0000 2014", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "E80E20", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/482534415323516928/6VcYl2iG.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/482534415323516928/6VcYl2iG.jpeg", "profile_background_tile": true, "profile_link_color": "7AC0D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/895048458607964160/dPPkDpd2_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/895048458607964160/dPPkDpd2_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2590260314/1456932924", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 1, "retweet_count": 2, "favorite_count": 14, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "geh_fla", "name": "GEHderson", "id": 2590260314, "id_str": "2590260314", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890657792, "id_str": "910976106890657792", "text": "RT @WangDiary: Got7 tem:\ncantor\nator\ncompositor\nMc\nRapper\nM\u00e3e\nM\u00e1gico\nVisual\nE tudo isso \u00e9 s\u00f3 o Jinyoung\n#PrinceJinyoungDay https://t.co/QH0\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3207564515, "id_str": "3207564515", "name": "\u03b7y\u03b1 \u0b6d\u0325\u00b0", "screen_name": "byunwhy", "location": "kath \u2661 let\u00edcia \u2661 paula \u2661 gi \u2661", "url": "https://curiouscat.me/mins3ok", "description": "mil cair\u00e3o ao seu lado, dez mil \u00e0 sua direita, mas got7 o atingir\u00e1", "translator_type": "none", "protected": false, "verified": false, "followers_count": 968, "friends_count": 472, "listed_count": 8, "favourites_count": 329, "statuses_count": 40460, "created_at": "Sat Apr 25 23:16:00 +0000 2015", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFCC4D", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/637605242826305536/If1lTR-7.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/637605242826305536/If1lTR-7.png", "profile_background_tile": true, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910634832291545089/_JRtARTm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910634832291545089/_JRtARTm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3207564515/1505263093", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:06:48 +0000 2017", "id": 910898113451364352, "id_str": "910898113451364352", "text": "Got7 tem:\ncantor\nator\ncompositor\nMc\nRapper\nM\u00e3e\nM\u00e1gico\nVisual\nE tudo isso \u00e9 s\u00f3 o Jinyoung\n#PrinceJinyoungDay https://t.co/QH0CymKWqI", "display_text_range": [0, 107], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 818258087287156737, "id_str": "818258087287156737", "name": "Jack loves Jinyoung", "screen_name": "WangDiary", "location": "To na Tuan ", "url": null, "description": "Cuidando e protegendo minhas ahgases \ud83d\udc25\ud83d\udc9a\u2618 wild and sexy - DAB7 DIARIES - Parcerias: @AhgaseSquad e @Mysunshinebr", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2344, "friends_count": 128, "listed_count": 9, "favourites_count": 6624, "statuses_count": 4807, "created_at": "Mon Jan 09 00:48:25 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909962247782506497/7cj_xlVy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909962247782506497/7cj_xlVy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/818258087287156737/1505835861", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 246, "favorite_count": 241, "entities": {"hashtags": [{"text": "PrinceJinyoungDay", "indices": [89, 107]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910898105230520320, "id_str": "910898105230520320", "indices": [108, 131], "media_url": "http://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "url": "https://t.co/QH0CymKWqI", "display_url": "pic.twitter.com/QH0CymKWqI", "expanded_url": "https://twitter.com/WangDiary/status/910898113451364352/photo/1", "type": "photo", "sizes": {"large": {"w": 500, "h": 750, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 500, "h": 750, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910898105230520320, "id_str": "910898105230520320", "indices": [108, 131], "media_url": "http://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "url": "https://t.co/QH0CymKWqI", "display_url": "pic.twitter.com/QH0CymKWqI", "expanded_url": "https://twitter.com/WangDiary/status/910898113451364352/photo/1", "type": "photo", "sizes": {"large": {"w": 500, "h": 750, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 500, "h": 750, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "PrinceJinyoungDay", "indices": [104, 122]}], "urls": [], "user_mentions": [{"screen_name": "WangDiary", "name": "Jack loves Jinyoung", "id": 818258087287156737, "id_str": "818258087287156737", "indices": [3, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106928513025, "id_str": "910976106928513025", "text": "RT @ph_billboard: .@BTS_twt broke new ground for #kpop within 24 hours of releasing their music video for \u201cDNA.\u201d  https://t.co/O2xoBQ6yHN", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2885616181, "id_str": "2885616181", "name": "illegal \ud83d\udc30\ud83c\udf38", "screen_name": "nochusheart", "location": "insta: nochusbun", "url": "http://jeonnguks.tumblr.com", "description": "nik. \u2764\ufe0f \uc0ac\ub791\uc544 \uc815\uad6d\ud574. actual bun. my heart boomboom. \ud83c\udf08 170323. 4\uae30. Did you see my bag?", "translator_type": "none", "protected": false, "verified": false, "followers_count": 434, "friends_count": 117, "listed_count": 12, "favourites_count": 19108, "statuses_count": 56717, "created_at": "Fri Oct 31 19:50:42 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ACDED6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586716527988056064/IZkhJi2v.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586716527988056064/IZkhJi2v.jpg", "profile_background_tile": true, "profile_link_color": "E391FF", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910918095996256256/g26BffTX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910918095996256256/g26BffTX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2885616181/1505752752", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 04:30:01 +0000 2017", "id": 910722760678113280, "id_str": "910722760678113280", "text": ".@BTS_twt broke new ground for #kpop within 24 hours of releasing their music video for \u201cDNA.\u201d  https://t.co/O2xoBQ6yHN", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 725599416904622080, "id_str": "725599416904622080", "name": "BillboardPH", "screen_name": "ph_billboard", "location": "Republic of the Philippines", "url": "http://billboard.ph", "description": "Your ultimate go-to for the world's most popular international and local charts, music news, videos, analysis, events, and more! Instagram: @billboard_ph", "translator_type": "none", "protected": false, "verified": true, "followers_count": 25722, "friends_count": 329, "listed_count": 132, "favourites_count": 1209, "statuses_count": 7528, "created_at": "Thu Apr 28 08:15:56 +0000 2016", "utc_offset": 28800, "time_zone": "Singapore", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/737126941426257920/AxguDfz1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/737126941426257920/AxguDfz1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/725599416904622080/1497248594", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 21, "retweet_count": 2075, "favorite_count": 3714, "entities": {"hashtags": [{"text": "kpop", "indices": [31, 36]}], "urls": [{"url": "https://t.co/O2xoBQ6yHN", "expanded_url": "http://billboard.ph/bts-smashes-k-pop-records-dna-music-video/", "display_url": "billboard.ph/bts-smashes-k-\u2026", "indices": [96, 119]}], "user_mentions": [{"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [1, 9]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "kpop", "indices": [49, 54]}], "urls": [{"url": "https://t.co/O2xoBQ6yHN", "expanded_url": "http://billboard.ph/bts-smashes-k-pop-records-dna-music-video/", "display_url": "billboard.ph/bts-smashes-k-\u2026", "indices": [114, 137]}], "user_mentions": [{"screen_name": "ph_billboard", "name": "BillboardPH", "id": 725599416904622080, "id_str": "725599416904622080", "indices": [3, 16]}, {"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [19, 27]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603666"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924331011, "id_str": "910976106924331011", "text": "RT @callpurnia: sera que vamo ter uma cena da joyce ou de alguem penteando o cabelo da eleven ou ate msm o mike\ud83d\ude0d#ilusao", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4384032017, "id_str": "4384032017", "name": "\ud83d\udda4Bolinho G\u00f3tico \ud83d\udda4", "screen_name": "GoticoBolinho", "location": "Mike's Basement", "url": null, "description": "U became my life.\nMy light.\nMy promise.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 315, "friends_count": 108, "listed_count": 5, "favourites_count": 24754, "statuses_count": 17328, "created_at": "Sat Dec 05 14:53:39 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/907400535543861249/-nOWGVer_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907400535543861249/-nOWGVer_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4384032017/1505333054", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:55:42 +0000 2017", "id": 910970817802063872, "id_str": "910970817802063872", "text": "sera que vamo ter uma cena da joyce ou de alguem penteando o cabelo da eleven ou ate msm o mike\ud83d\ude0d#ilusao", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 941678664, "id_str": "941678664", "name": "jessy", "screen_name": "callpurnia", "location": "r n t \u2766", "url": null, "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 18272, "friends_count": 105, "listed_count": 116, "favourites_count": 320, "statuses_count": 205892, "created_at": "Sun Nov 11 16:42:03 +0000 2012", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543395138311946242/rakeqsYa.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543395138311946242/rakeqsYa.jpeg", "profile_background_tile": false, "profile_link_color": "000000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "FFF7CC", "profile_text_color": "0C3E53", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910878401162092544/GJdmXrv5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910878401162092544/GJdmXrv5_normal.jpg", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 0, "retweet_count": 6, "favorite_count": 0, "entities": {"hashtags": [{"text": "ilusao", "indices": [96, 103]}], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "ilusao", "indices": [112, 119]}], "urls": [], "user_mentions": [{"screen_name": "callpurnia", "name": "jessy", "id": 941678664, "id_str": "941678664", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890702848, "id_str": "910976106890702848", "text": "RT @HistoriaEnFotos: Los h\u00e9roes que merecen todo nuestro apoyo y admiraci\u00f3n #perrosrescatistas \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\n\nhttps://t.co/IdQiVBSUPJ", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 380493352, "id_str": "380493352", "name": "alex", "screen_name": "brujasolar", "location": null, "url": null, "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 20167, "friends_count": 11826, "listed_count": 47, "favourites_count": 34176, "statuses_count": 111814, "created_at": "Mon Sep 26 18:56:45 +0000 2011", "utc_offset": -18000, "time_zone": "Bogota", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/813254363/97e3e52cbda17ee42f1f609a8686b881.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/813254363/97e3e52cbda17ee42f1f609a8686b881.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "114AAD", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909454813120929792/1l9c8tLw_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909454813120929792/1l9c8tLw_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/380493352/1505949965", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:40:06 +0000 2017", "id": 910906493515571201, "id_str": "910906493515571201", "text": "Los h\u00e9roes que merecen todo nuestro apoyo y admiraci\u00f3n #perrosrescatistas \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\n\nhttps://t.co/IdQiVBSUPJ", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1073159618, "id_str": "1073159618", "name": "Im\u00e1genes Hist\u00f3ricas", "screen_name": "HistoriaEnFotos", "location": "\u00abPrimera cuenta en Espa\u00f1ol\u00bb", "url": null, "description": "\u00abFotograf\u00edas e im\u00e1genes que marcaron la historia de la humanidad. Momentos \u00fanicos e irrepetibles.\u00bb Publicidad: contactohistorico@gmail.com", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 583468, "friends_count": 1, "listed_count": 1900, "favourites_count": 1406, "statuses_count": 11283, "created_at": "Wed Jan 09 08:13:28 +0000 2013", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": 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_link_color": "FF3300", "profile_sidebar_border_color": "86A4A6", "profile_sidebar_fill_color": "A0C5C7", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/3777882002/deb22319eedad83bbdeb9bd140762c20_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3777882002/deb22319eedad83bbdeb9bd140762c20_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1073159618/1408765634", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 224, "reply_count": 62, "retweet_count": 3512, "favorite_count": 5893, "entities": {"hashtags": [{"text": "perrosrescatistas", "indices": [55, 73]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892"}]}, "extended_entities": {"media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "video", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 84017, "variants": [{"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/320x180/0DVD6GghBHbUV4GC.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/640x360/EbHGbTK5DzX7RzLZ.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/pl/srXXWun6hGbmquFf.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "perrosrescatistas", "indices": [76, 94]}], "urls": [], "user_mentions": [{"screen_name": "HistoriaEnFotos", "name": "Im\u00e1genes Hist\u00f3ricas", "id": 1073159618, "id_str": "1073159618", "indices": [3, 19]}], "symbols": [], "media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [101, 124], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892"}]}, "extended_entities": {"media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [101, 124], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "video", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 84017, "variants": [{"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/320x180/0DVD6GghBHbUV4GC.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/640x360/EbHGbTK5DzX7RzLZ.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/pl/srXXWun6hGbmquFf.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106899140613, "id_str": "910976106899140613", "text": "@ishawky_ 19", "display_text_range": [10, 12], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910975751847018496, "in_reply_to_status_id_str": "910975751847018496", "in_reply_to_user_id": 304401592, "in_reply_to_user_id_str": "304401592", "in_reply_to_screen_name": "ishawky_", "user": {"id": 878104040508469248, "id_str": "878104040508469248", "name": "\u0642\u064a\u0635\u0631 .. \ud83c\uddf8\ud83c\udde6", "screen_name": "tarjim_w", "location": null, "url": null, "description": "\u200f\u200f#\u0631\u064a\u0628\u0631\u0648\u0641_\u0627\u0644\u0645\u062c\u062f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 61, "friends_count": 919, "listed_count": 0, "favourites_count": 17, "statuses_count": 421, "created_at": "Fri Jun 23 04:14:52 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/898026779843194880/fq7B-SNF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/898026779843194880/fq7B-SNF_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "ishawky_", "name": "\u0627\u0644\u062c\u064a\u0646\u064a\u0635", "id": 304401592, "id_str": "304401592", "indices": [0, 9]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603659"}
{"delete": {"status": {"id": 909471127726108674, "id_str": "909471127726108674", "user_id": 3126284391, "user_id_str": "3126284391"}, "timestamp_ms": "1506028603883"}}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106899099648, "id_str": "910976106899099648", "text": "RT @AlbanoDante76: El dia 1-O el sol sortir\u00e0 a les 7:48 i jo anir\u00e9 a votar aqu\u00ed. https://t.co/hbIEP0jWoG", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1048111723, "id_str": "1048111723", "name": "Filumestre-Rep\u00fablica", "screen_name": "filumestre", "location": "PPCC - Principat", "url": null, "description": "All\u00f2 que val \u00e9s la consci\u00e8ncia de no \u00e9sser res si no s'\u00e9s poble.  Algun dia no podrem m\u00e9s i aleshores ho podrem tot. (Vicent Andr\u00e9s Estell\u00e9s)", "translator_type": "none", "protected": false, "verified": false, "followers_count": 937, "friends_count": 1888, "listed_count": 43, "favourites_count": 27070, "statuses_count": 104681, "created_at": "Sun Dec 30 15:06:45 +0000 2012", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": false, "lang": "ca", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/897438485359067137/As4BR417_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897438485359067137/As4BR417_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1048111723/1486327878", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:55:42 +0000 2017", "id": 910970817579814913, "id_str": "910970817579814913", "text": "El dia 1-O el sol sortir\u00e0 a les 7:48 i jo anir\u00e9 a votar aqu\u00ed. https://t.co/hbIEP0jWoG", "display_text_range": [0, 61], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 91560739, "id_str": "91560739", "name": "Albano-Dante Fachin", "screen_name": "AlbanoDante76", "location": "Girona", "url": "http://www.albanodante.net", "description": "Abans, lluitant des del http://cafeambllet.com. Ara faig de diputat al Parlament de Catalunya i de Secretari General de Podem Catalunya, Contracte temporal.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 43009, "friends_count": 3188, "listed_count": 852, "favourites_count": 15725, "statuses_count": 53930, "created_at": "Sat Nov 21 12:20:23 +0000 2009", "utc_offset": -7200, "time_zone": "Greenland", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/290299269/cafeambllet_petit.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/290299269/cafeambllet_petit.jpg", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/858405689617596416/MGGHZ1YT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/858405689617596416/MGGHZ1YT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/91560739/1460896216", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 4, "reply_count": 12, "retweet_count": 109, "favorite_count": 249, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [62, 85], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [62, 85], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "AlbanoDante76", "name": "Albano-Dante Fachin", "id": 91560739, "id_str": "91560739", "indices": [3, 17]}], "symbols": [], "media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [81, 104], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}, "source_status_id": 910970817579814913, "source_status_id_str": "910970817579814913", "source_user_id": 91560739, "source_user_id_str": "91560739"}]}, "extended_entities": {"media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [81, 104], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}, "source_status_id": 910970817579814913, "source_status_id_str": "910970817579814913", "source_user_id": 91560739, "source_user_id_str": "91560739"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603659"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106919993344, "id_str": "910976106919993344", "text": "This can't be called the Trump ERA This is a Trump BLIP. It's a blip in time that needs to end sooner than later. https://t.co/mH3efe8X47", "display_text_range": [0, 113], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 985418670, "id_str": "985418670", "name": "Jet Divots", "screen_name": "JetDivots", "location": null, "url": null, "description": "Speak my mind, too old not to. Agree with common sense. Love dogs, Doctor Who, and New Mexico.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 30, "friends_count": 116, "listed_count": 0, "favourites_count": 508, "statuses_count": 319, "created_at": "Sun Dec 02 21:38:12 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "FF691F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/904451921632681985/SltQ4SHE_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904451921632681985/SltQ4SHE_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/985418670/1503895965", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910972404142182401, "quoted_status_id_str": "910972404142182401", "quoted_status": {"created_at": "Thu Sep 21 21:02:00 +0000 2017", "id": 910972404142182401, "id_str": "910972404142182401", "text": "Pentagon military officers once spoke openly about security threats posed by climate change. Then Trump came to DC. https://t.co/pdKk7rz7E8", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15667291, "id_str": "15667291", "name": "BillMoyers.com", "screen_name": "BillMoyers", "location": null, "url": "http://www.billmoyers.com", "description": "Making sense of what matters. Tweets from the producers & occasionally Bill Moyers (/BM). http://www.billmoyers.com", "translator_type": "none", "protected": false, "verified": true, "followers_count": 157409, "friends_count": 1266, "listed_count": 4458, "favourites_count": 470, "statuses_count": 26723, "created_at": "Wed Jul 30 22:35:38 +0000 2008", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/884865465922842624/c6EQtnhh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/884865465922842624/c6EQtnhh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15667291/1487792313", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 0, "retweet_count": 22, "favorite_count": 35, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/pdKk7rz7E8", "expanded_url": "http://bit.ly/2xT3z4E", "display_url": "bit.ly/2xT3z4E", "indices": [116, 139]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/mH3efe8X47", "expanded_url": "https://twitter.com/BillMoyers/status/910972404142182401", "display_url": "twitter.com/BillMoyers/sta\u2026", "indices": [114, 137]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603664"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915917825, "id_str": "910976106915917825", "text": "RT @OGTVLoL: La saison r\u00e9guli\u00e8re est termin\u00e9e pour ce summer split 2017 des #Underdogs, mais les playoffs arrivent bient\u00f4t ! \ud83d\ude0e https://t.co\u2026", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1889626184, "id_str": "1889626184", "name": "Jorys", "screen_name": "Maveur", "location": "France - Avignon", "url": "https://www.twitch.tv/Maveur_LoL", "description": "Joueur LoL, H1Z1 et CSGO | 19 yo | BTS SIO SLAM 2eme Ann\u00e9e | Aime la culture jap' | R\u00e9dac' pour @Eclypsia_LoL", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 327, "friends_count": 148, "listed_count": 39, "favourites_count": 39316, "statuses_count": 42808, "created_at": "Sat Sep 21 09:47:06 +0000 2013", "utc_offset": 7200, "time_zone": "Paris", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "89C9FA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552483537421467648/bSFilOWM.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552483537421467648/bSFilOWM.jpeg", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904403002852769792/MKnQSAYV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904403002852769792/MKnQSAYV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1889626184/1440154127", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:14:13 +0000 2017", "id": 910975478755938305, "id_str": "910975478755938305", "text": "La saison r\u00e9guli\u00e8re est termin\u00e9e pour ce summer split 2017 des #Underdogs, mais les playoffs arrivent bient\u00f4t ! \ud83d\ude0e https://t.co/BggVXdpPU5", "display_text_range": [0, 113], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 500903925, "id_str": "500903925", "name": "O'Gaming LoL", "screen_name": "OGTVLoL", "location": "Paris", "url": "http://www.OGaming.tv", "description": "Retrouvez toute l'actualit\u00e9, les \u00e9missions et comp\u00e9titions League Of Legends avec le crew O'Gaming ! #OGLOL http://www.ogaming.tv/stream/league-of-legends", "translator_type": "none", "protected": false, "verified": false, "followers_count": 54453, "friends_count": 420, "listed_count": 152, "favourites_count": 6793, "statuses_count": 18744, "created_at": "Thu Feb 23 15:54:16 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/896086842520604672/wKW4b78C_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896086842520604672/wKW4b78C_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/500903925/1477936054", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 1, "retweet_count": 2, "favorite_count": 4, "entities": {"hashtags": [{"text": "Underdogs", "indices": [63, 73]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910975268143222787, "id_str": "910975268143222787", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "url": "https://t.co/BggVXdpPU5", "display_url": "pic.twitter.com/BggVXdpPU5", "expanded_url": "https://twitter.com/OGTVLoL/status/910975478755938305/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1916, "h": 1080, "resize": "fit"}, "medium": {"w": 1200, "h": 676, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910975268143222787, "id_str": "910975268143222787", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "url": "https://t.co/BggVXdpPU5", "display_url": "pic.twitter.com/BggVXdpPU5", "expanded_url": "https://twitter.com/OGTVLoL/status/910975478755938305/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1916, "h": 1080, "resize": "fit"}, "medium": {"w": 1200, "h": 676, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "Underdogs", "indices": [76, 86]}], "urls": [], "user_mentions": [{"screen_name": "OGTVLoL", "name": "O'Gaming LoL", "id": 500903925, "id_str": "500903925", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "fr", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915880964, "id_str": "910976106915880964", "text": "RT @diggy_simmons: Selective with the energies that surround me.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 631231503, "id_str": "631231503", "name": "Dingiswayo", "screen_name": "PhilaniQ", "location": "Johannesburg ", "url": "http://phambilimzansi.co.za/wp/", "description": "Afrikan. Co-founder & Director of Phambil Mzansi IGC.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 480, "friends_count": 308, "listed_count": 6, "favourites_count": 1522, "statuses_count": 5840, "created_at": "Mon Jul 09 14:46:57 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "ABB8C2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/872235306866679809/Wm-tNpPy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/872235306866679809/Wm-tNpPy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/631231503/1438944026", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Jan 25 20:43:50 +0000 2017", "id": 824357132925566977, "id_str": "824357132925566977", "text": "Selective with the energies that surround me.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 90246174, "id_str": "90246174", "name": "Diggy", "screen_name": "diggy_simmons", "location": null, "url": null, "description": "Inquiries: Laurie@RoarMgmt.com", "translator_type": "none", "protected": false, "verified": true, "followers_count": 1718166, "friends_count": 2199, "listed_count": 7702, "favourites_count": 2, "statuses_count": 15794, "created_at": "Sun Nov 15 20:56:38 +0000 2009", "utc_offset": -28800, "time_zone": "Alaska", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "0A0A0A", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/471636112268464128/xwxvxMmQ.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/471636112268464128/xwxvxMmQ.jpeg", "profile_background_tile": false, "profile_link_color": "321952", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "8F8F8F", "profile_text_color": "050000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/894783556186247168/XvjSgf9z_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/894783556186247168/XvjSgf9z_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/90246174/1500061500", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 29, "reply_count": 5, "retweet_count": 742, "favorite_count": 709, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "diggy_simmons", "name": "Diggy", "id": 90246174, "id_str": "90246174", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106928459776, "id_str": "910976106928459776", "text": "RT @behonestmik: This part still gives me so many chills when I watch it https://t.co/qx2qFaXmxi", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1472445655, "id_str": "1472445655", "name": "dervla", "screen_name": "horanxflicker", "location": null, "url": null, "description": "@Louis_Tomlinson: @NiallOfficial where did you get your clothes from the toilet stores ??", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4121, "friends_count": 377, "listed_count": 40, "favourites_count": 27622, "statuses_count": 79549, "created_at": "Fri May 31 15:31:28 +0000 2013", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "0099B9", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/478191116387246080/O7VoBI01.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/478191116387246080/O7VoBI01.png", "profile_background_tile": true, "profile_link_color": "B80043", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/891008777117466626/G7z9HIJU_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/891008777117466626/G7z9HIJU_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1472445655/1496264947", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:58:04 +0000 2017", "id": 910911014354378752, "id_str": "910911014354378752", "text": "This part still gives me so many chills when I watch it https://t.co/qx2qFaXmxi", "display_text_range": [0, 55], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 740056335216037889, "id_str": "740056335216037889", "name": "Mikaylah", "screen_name": "behonestmik", "location": "Canada", "url": null, "description": "18 | \ud83e\udd40", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5023, "friends_count": 300, "listed_count": 170, "favourites_count": 27522, "statuses_count": 14097, "created_at": "Tue Jun 07 05:42:34 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910036013791055872/jZCGQ0_y_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910036013791055872/jZCGQ0_y_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/740056335216037889/1502500177", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 5, "reply_count": 2, "retweet_count": 32, "favorite_count": 135, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [56, 79], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "photo", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [56, 79], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "animated_gif", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}, "video_info": {"aspect_ratio": [249, 100], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/DKQ0uxdUMAA81vC.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "behonestmik", "name": "Mikaylah", "id": 740056335216037889, "id_str": "740056335216037889", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [73, 96], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "photo", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}, "source_status_id": 910911014354378752, "source_status_id_str": "910911014354378752", "source_user_id": 740056335216037889, "source_user_id_str": "740056335216037889"}]}, "extended_entities": {"media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [73, 96], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "animated_gif", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}, "source_status_id": 910911014354378752, "source_status_id_str": "910911014354378752", "source_user_id": 740056335216037889, "source_user_id_str": "740056335216037889", "video_info": {"aspect_ratio": [249, 100], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/DKQ0uxdUMAA81vC.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603666"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890588161, "id_str": "910976106890588161", "text": "RT @ChrisMurphyCT: Oh. My. God.\n\n(Commonwealth is non-partisan, respected) https://t.co/bBnocLTWxT", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 752347062654504960, "id_str": "752347062654504960", "name": "BrienneofTarth", "screen_name": "BrienneResister", "location": "Northern California", "url": null, "description": "Oathkeeper. Champion. Defender against evil and all vile Trumpism. Defeater of Nazis. I don't tolerate bots or s**t stirrers. #GoTResists #TheResistance #FBR", "translator_type": "none", "protected": false, "verified": false, "followers_count": 701, "friends_count": 881, "listed_count": 1, "favourites_count": 2227, "statuses_count": 3679, "created_at": "Mon Jul 11 03:41:32 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/896178753520271360/NFGX052w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896178753520271360/NFGX052w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/752347062654504960/1502681521", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:07:55 +0000 2017", "id": 910943694261506048, "id_str": "910943694261506048", "text": "Oh. My. God.\n\n(Commonwealth is non-partisan, respected) https://t.co/bBnocLTWxT", "display_text_range": [0, 55], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 150078976, "id_str": "150078976", "name": "Chris Murphy", "screen_name": "ChrisMurphyCT", "location": null, "url": "https://chrismurphy.com/", "description": "U.S. Senator, Connecticut.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 376430, "friends_count": 179, "listed_count": 3714, "favourites_count": 879, "statuses_count": 14809, "created_at": "Mon May 31 01:22:43 +0000 2010", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/871076844904361985/7NorOQHB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/871076844904361985/7NorOQHB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/150078976/1493845670", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910528446195011585, "quoted_status_id_str": "910528446195011585", "quoted_status": {"created_at": "Wed Sep 20 15:37:53 +0000 2017", "id": 910528446195011585, "id_str": "910528446195011585", "text": "JUST RELEASED: 32 million to lose coverage under Graham-Cassidy ACA repeal.\n\nhttps://t.co/4wq0OHp7a3", "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1383272101, "id_str": "1383272101", "name": "Andy Slavitt", "screen_name": "ASlavitt", "location": "Edina, MN and Washington, DC", "url": null, "description": "Ran Medicare, Medicaid & ACA for President Obama. @bpc_bipartisan, Senior Advisor. @usatoday, Columnist. Future of Healthcare, co-chair. Opinions mine.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 139760, "friends_count": 493, "listed_count": 1966, "favourites_count": 12901, "statuses_count": 13753, "created_at": "Sat Apr 27 01:21:12 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1383272101/1500293527", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 647, "reply_count": 219, "retweet_count": 6041, "favorite_count": 3693, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4wq0OHp7a3", "expanded_url": "http://www.commonwealthfund.org/publications/blog/2017/sep/potential-effects-of-graham-cassidy", "display_url": "commonwealthfund.org/publications/b\u2026", "indices": [77, 100]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 32, "reply_count": 47, "retweet_count": 1068, "favorite_count": 1275, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/bBnocLTWxT", "expanded_url": "https://twitter.com/aslavitt/status/910528446195011585", "display_url": "twitter.com/aslavitt/statu\u2026", "indices": [56, 79]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "quoted_status_id": 910528446195011585, "quoted_status_id_str": "910528446195011585", "quoted_status": {"created_at": "Wed Sep 20 15:37:53 +0000 2017", "id": 910528446195011585, "id_str": "910528446195011585", "text": "JUST RELEASED: 32 million to lose coverage under Graham-Cassidy ACA repeal.\n\nhttps://t.co/4wq0OHp7a3", "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1383272101, "id_str": "1383272101", "name": "Andy Slavitt", "screen_name": "ASlavitt", "location": "Edina, MN and Washington, DC", "url": null, "description": "Ran Medicare, Medicaid & ACA for President Obama. @bpc_bipartisan, Senior Advisor. @usatoday, Columnist. Future of Healthcare, co-chair. Opinions mine.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 139760, "friends_count": 493, "listed_count": 1966, "favourites_count": 12901, "statuses_count": 13753, "created_at": "Sat Apr 27 01:21:12 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1383272101/1500293527", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 647, "reply_count": 219, "retweet_count": 6041, "favorite_count": 3693, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4wq0OHp7a3", "expanded_url": "http://www.commonwealthfund.org/publications/blog/2017/sep/potential-effects-of-graham-cassidy", "display_url": "commonwealthfund.org/publications/b\u2026", "indices": [77, 100]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/bBnocLTWxT", "expanded_url": "https://twitter.com/aslavitt/status/910528446195011585", "display_url": "twitter.com/aslavitt/statu\u2026", "indices": [75, 98]}], "user_mentions": [{"screen_name": "ChrisMurphyCT", "name": "Chris Murphy", "id": 150078976, "id_str": "150078976", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106920075264, "id_str": "910976106920075264", "text": "RT @bancaynegocios: Brasil busca evitar que Venezuela incumpla pagos de contratos por hasta US$ 5.000 millones https://t.co/e3QMeUzrOB", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 184433592, "id_str": "184433592", "name": "Rafael V  Blanco Y", "screen_name": "RvBlanco", "location": "Orlando, FL", "url": null, "description": "Ing. Civil. 4077298746", "translator_type": "none", "protected": false, "verified": false, "followers_count": 836, "friends_count": 3349, "listed_count": 7, "favourites_count": 2768, "statuses_count": 6093, "created_at": "Sun Aug 29 15:03:03 +0000 2010", "utc_offset": -14400, "time_zone": "Caracas", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/857418816799870976/6rT1OdoB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/857418816799870976/6rT1OdoB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/184433592/1486412847", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:07:27 +0000 2017", "id": 910973775868563462, "id_str": "910973775868563462", "text": "Brasil busca evitar que Venezuela incumpla pagos de contratos por hasta US$ 5.000 millones https://t.co/e3QMeUzrOB", "source": "<a href=\"http://bancaynegocios.com/\" rel=\"nofollow\">BancayNegocios.com</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 104238493, "id_str": "104238493", "name": "Banca y Negocios", "screen_name": "bancaynegocios", "location": "Caracas, Venezuela", "url": "http://www.bancaynegocios.com", "description": "Portal de noticias sobre Banca, Econom\u00eda, Negocios, Gerencia, Tecnologia y m\u00e1s, en Venezuela, Latinoam\u00e9rica y el mundo", "translator_type": "none", "protected": false, "verified": false, "followers_count": 51355, "friends_count": 2492, "listed_count": 828, "favourites_count": 198, "statuses_count": 345995, "created_at": "Tue Jan 12 18:42:18 +0000 2010", "utc_offset": -14400, "time_zone": "Caracas", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000056701047/79507d0264af6607466c51a2d93758f7.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000056701047/79507d0264af6607466c51a2d93758f7.jpeg", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/818455694894571520/lrm_l07B_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/818455694894571520/lrm_l07B_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/104238493/1433429765", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/e3QMeUzrOB", "expanded_url": "http://bit.ly/2xUhk2T", "display_url": "bit.ly/2xUhk2T", "indices": [91, 114]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/e3QMeUzrOB", "expanded_url": "http://bit.ly/2xUhk2T", "display_url": "bit.ly/2xUhk2T", "indices": [111, 134]}], "user_mentions": [{"screen_name": "bancaynegocios", "name": "Banca y Negocios", "id": 104238493, "id_str": "104238493", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603664"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106911629313, "id_str": "910976106911629313", "text": "#UnaPeliRecomendableEs https://t.co/uNQJeyCohI", "display_text_range": [0, 22], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 593355484, "id_str": "593355484", "name": "thelimit35", "screen_name": "thelimit35", "location": null, "url": null, "description": "Cinefilo, amante de los comics y ciencia ficcion.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 961, "friends_count": 1005, "listed_count": 5, "favourites_count": 4621, "statuses_count": 3761, "created_at": "Tue May 29 04:27:09 +0000 2012", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/867794848618819584/JSUA-Pft_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/867794848618819584/JSUA-Pft_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/593355484/1503329266", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "UnaPeliRecomendableEs", "indices": [0, 22]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910976088641359872, "id_str": "910976088641359872", "indices": [23, 46], "media_url": "http://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "url": "https://t.co/uNQJeyCohI", "display_url": "pic.twitter.com/uNQJeyCohI", "expanded_url": "https://twitter.com/thelimit35/status/910976106911629313/photo/1", "type": "photo", "sizes": {"large": {"w": 338, "h": 475, "resize": "fit"}, "medium": {"w": 338, "h": 475, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 338, "h": 475, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976088641359872, "id_str": "910976088641359872", "indices": [23, 46], "media_url": "http://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "url": "https://t.co/uNQJeyCohI", "display_url": "pic.twitter.com/uNQJeyCohI", "expanded_url": "https://twitter.com/thelimit35/status/910976106911629313/photo/1", "type": "photo", "sizes": {"large": {"w": 338, "h": 475, "resize": "fit"}, "medium": {"w": 338, "h": 475, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 338, "h": 475, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603662"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915942405, "id_str": "910976106915942405", "text": "RT @horrorflickss: Happy Birthday, Stephen King:\n\nCreator of Carrie, The Shining, It (and many more). https://t.co/XE4qsSjzBk", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2300850794, "id_str": "2300850794", "name": "SabrinaMonique\ud83c\udf38", "screen_name": "brinarod4897", "location": "San Diego, Texas", "url": null, "description": "How cruel of the universe to give you bright love you can't keep.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 218, "friends_count": 550, "listed_count": 0, "favourites_count": 6345, "statuses_count": 1029, "created_at": "Mon Jan 20 05:56:49 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5B1CE", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432707759809638401/bEHkgnhX.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432707759809638401/bEHkgnhX.jpeg", "profile_background_tile": false, "profile_link_color": "FCFEFF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/905165643858759680/TKNxbWk4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905165643858759680/TKNxbWk4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2300850794/1504477919", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:58:28 +0000 2017", "id": 910941314560208897, "id_str": "910941314560208897", "text": "Happy Birthday, Stephen King:\n\nCreator of Carrie, The Shining, It (and many more). https://t.co/XE4qsSjzBk", "display_text_range": [0, 82], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 854115402095505408, "id_str": "854115402095505408", "name": "HORROR FLICKS \ud83d\udd2a", "screen_name": "horrorflickss", "location": null, "url": null, "description": "Dedicated to the finest of the horror genre, old and new. DM us requests.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1683, "friends_count": 225, "listed_count": 7, "favourites_count": 1119, "statuses_count": 699, "created_at": "Mon Apr 17 23:32:35 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/854121612928589825/FueRqDW2_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/854121612928589825/FueRqDW2_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/854115402095505408/1492473643", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 3, "reply_count": 1, "retweet_count": 82, "favorite_count": 142, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}}, {"id": 910941296747040773, "id_str": "910941296747040773", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 408, "resize": "fit"}, "medium": {"w": 1200, "h": 720, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1228, "resize": "fit"}}}, {"id": 910941296734429185, "id_str": "910941296734429185", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 1198, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1198, "h": 675, "resize": "fit"}}}, {"id": 910941296759574528, "id_str": "910941296759574528", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 600, "h": 320, "resize": "fit"}, "small": {"w": 600, "h": 320, "resize": "fit"}, "medium": {"w": 600, "h": 320, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "horrorflickss", "name": "HORROR FLICKS \ud83d\udd2a", "id": 854115402095505408, "id_str": "854115402095505408", "indices": [3, 17]}], "symbols": [], "media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}]}, "extended_entities": {"media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}, {"id": 910941296747040773, "id_str": "910941296747040773", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 408, "resize": "fit"}, "medium": {"w": 1200, "h": 720, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1228, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}, {"id": 910941296734429185, "id_str": "910941296734429185", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 1198, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1198, "h": 675, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}, {"id": 910941296759574528, "id_str": "910941296759574528", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 600, "h": 320, "resize": "fit"}, "small": {"w": 600, "h": 320, "resize": "fit"}, "medium": {"w": 600, "h": 320, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106894852096, "id_str": "910976106894852096", "text": "@kikesma Ese no es titan el es un labrador, y el que se ve es un pastor.", "display_text_range": [9, 72], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910973209998008320, "in_reply_to_status_id_str": "910973209998008320", "in_reply_to_user_id": 85412926, "in_reply_to_user_id_str": "85412926", "in_reply_to_screen_name": "kikesma", "user": {"id": 1013665076, "id_str": "1013665076", "name": "PADR\u00cdNO!!", "screen_name": "jinetedeluz", "location": " Quer\u00e9taro ft. Guadalajara ", "url": null, "description": "Maduro al que solo los a\u00f1os le han domado. Defe\u00f1o de nacimiento, Quer\u00e9tano por adopci\u00f3n y Jalisciense de coraz\u00f3n. Chivas & Steleers .", "translator_type": "none", "protected": false, "verified": false, "followers_count": 419, "friends_count": 344, "listed_count": 1, "favourites_count": 711, "statuses_count": 13617, "created_at": "Sat Dec 15 17:58:58 +0000 2012", "utc_offset": -18000, "time_zone": "Mexico City", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/739111536/8a3f24cddb12db509fe0b7fd15914771.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/739111536/8a3f24cddb12db509fe0b7fd15914771.jpeg", "profile_background_tile": true, "profile_link_color": "009999", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909791829700128769/Td6zIy2K_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909791829700128769/Td6zIy2K_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1013665076/1505801891", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "kikesma", "name": "Enrique", "id": 85412926, "id_str": "85412926", "indices": [0, 8]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603658"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106928406528, "id_str": "910976106928406528", "text": "RT @PadredeIktan: @AztecaNoticias @AztecaDeportes Y yo como imb\u00e9cil viendo ayer el rescate de Frida Sof\u00eda. Carajo @daniellemx_", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 866109465350852609, "id_str": "866109465350852609", "name": "Nohemi", "screen_name": "Nohemi_fc", "location": "Edo.de Mex", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 71, "friends_count": 100, "listed_count": 0, "favourites_count": 2304, "statuses_count": 2140, "created_at": "Sun May 21 01:52:42 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/873923458639515653/X_3PA-Tg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/873923458639515653/X_3PA-Tg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/866109465350852609/1497715671", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:27:49 +0000 2017", "id": 910948698955317248, "id_str": "910948698955317248", "text": "@AztecaNoticias @AztecaDeportes Y yo como imb\u00e9cil viendo ayer el rescate de Frida Sof\u00eda. Carajo @daniellemx_", "display_text_range": [32, 108], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910945761533108224, "in_reply_to_status_id_str": "910945761533108224", "in_reply_to_user_id": 23377748, "in_reply_to_user_id_str": "23377748", "in_reply_to_screen_name": "AztecaNoticias", "user": {"id": 425357667, "id_str": "425357667", "name": "Beto", "screen_name": "PadredeIktan", "location": "La ciudad de los tributos", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 333, "friends_count": 1239, "listed_count": 6, "favourites_count": 198, "statuses_count": 12519, "created_at": "Wed Nov 30 22:17:54 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/859859566678470656/PuLtCYmt_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/859859566678470656/PuLtCYmt_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/425357667/1417483300", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 2, "retweet_count": 6, "favorite_count": 17, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "AztecaNoticias", "name": "Azteca Noticias", "id": 23377748, "id_str": "23377748", "indices": [0, 15]}, {"screen_name": "AztecaDeportes", "name": "Azteca Deportes", "id": 40131441, "id_str": "40131441", "indices": [16, 31]}, {"screen_name": "daniellemx_", "name": "Danielle Dithurbide", "id": 101658779, "id_str": "101658779", "indices": [96, 108]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "PadredeIktan", "name": "Beto", "id": 425357667, "id_str": "425357667", "indices": [3, 16]}, {"screen_name": "AztecaNoticias", "name": "Azteca Noticias", "id": 23377748, "id_str": "23377748", "indices": [18, 33]}, {"screen_name": "AztecaDeportes", "name": "Azteca Deportes", "id": 40131441, "id_str": "40131441", "indices": [34, 49]}, {"screen_name": "daniellemx_", "name": "Danielle Dithurbide", "id": 101658779, "id_str": "101658779", "indices": [114, 126]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603666"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106920071169, "id_str": "910976106920071169", "text": "@VidaModernaOML @IgnatiusFarray1 Aqu\u00ed hay COMMEDIA. https://t.co/5PnrQhur2E", "display_text_range": [0, 51], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 2654164081, "in_reply_to_user_id_str": "2654164081", "in_reply_to_screen_name": "VidaModernaOML", "user": {"id": 255592569, "id_str": "255592569", "name": "Dani Su\u00e1rez", "screen_name": "danielsuvi", "location": "Las Palmas de Gran Canaria", "url": "https://www.youtube.com/user/suvironi92", "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 179, "friends_count": 716, "listed_count": 3, "favourites_count": 9070, "statuses_count": 7463, "created_at": "Mon Feb 21 17:43:40 +0000 2011", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "7DBFFA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/208367722/1295788139328_1n.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/208367722/1295788139328_1n.jpg", "profile_background_tile": true, "profile_link_color": "40A2F7", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "00066E", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877478973181235201/6SuqbLNz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877478973181235201/6SuqbLNz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/255592569/1489073265", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "VidaModernaOML", "name": "La Vida Moderna", "id": 2654164081, "id_str": "2654164081", "indices": [0, 15]}, {"screen_name": "IgnatiusFarray1", "name": "Ignatius Farray", "id": 791198196, "id_str": "791198196", "indices": [16, 32]}], "symbols": [], "media": [{"id": 910976091103416321, "id_str": "910976091103416321", "indices": [52, 75], "media_url": "http://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "url": "https://t.co/5PnrQhur2E", "display_url": "pic.twitter.com/5PnrQhur2E", "expanded_url": "https://twitter.com/danielsuvi/status/910976106920071169/photo/1", "type": "photo", "sizes": {"large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 383, "h": 680, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976091103416321, "id_str": "910976091103416321", "indices": [52, 75], "media_url": "http://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "url": "https://t.co/5PnrQhur2E", "display_url": "pic.twitter.com/5PnrQhur2E", "expanded_url": "https://twitter.com/danielsuvi/status/910976106920071169/photo/1", "type": "photo", "sizes": {"large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 383, "h": 680, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603664"}
{"delete": {"status": {"id": 239683460141314048, "id_str": "239683460141314048", "user_id": 643723, "user_id_str": "643723"}, "timestamp_ms": "1506028604074"}}
{"delete": {"status": {"id": 569665755572277248, "id_str": "569665755572277248", "user_id": 568124302, "user_id_str": "568124302"}, "timestamp_ms": "1506028603616"}}
{"delete": {"status": {"id": 901567922346356737, "id_str": "901567922346356737", "user_id": 792882901, "user_id_str": "792882901"}, "timestamp_ms": "1506028604452"}}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111105810432, "id_str": "910976111105810432", "text": "\u3010\u7206\u7b11\u30c0\u30b8\u30e3\u30ec\u3011 \u71b1\u6d77\uff1a \u71b1\u6d77\u3067\u3042\u3063\u305f\u307f\u305f\u3044", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 898452215454617601, "id_str": "898452215454617601", "name": "\u7c73\u6d25\u7384\u5e2b(*\u00b4\u8278\uff40)\uff77\uff6c", "screen_name": "fesh1twist4", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 34, "friends_count": 76, "listed_count": 0, "favourites_count": 0, "statuses_count": 977, "created_at": "Fri Aug 18 07:51:15 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/898452371352592384/ptBWZLo__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/898452371352592384/ptBWZLo__normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604662"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122587648, "id_str": "910976111122587648", "text": "RT @_ruelia: Amy \ud83c\udf39 https://t.co/u5SzGy3Bxu", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2882529710, "id_str": "2882529710", "name": "Rue", "screen_name": "_ruelia", "location": "Los Angeles, CA", "url": "https://m.soundcloud.com/ruelia", "description": "ARTIST:\nhttp://soundcloud.com/ruelia\nInstagram: @ruelia", "translator_type": "none", "protected": false, "verified": false, "followers_count": 542, "friends_count": 139, "listed_count": 4, "favourites_count": 9465, "statuses_count": 665, "created_at": "Wed Oct 29 20:23:09 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2882529710/1505413529", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Tue Sep 19 04:52:20 +0000 2017", "id": 910003604269940736, "id_str": "910003604269940736", "text": "Amy \ud83c\udf39 https://t.co/u5SzGy3Bxu", "display_text_range": [0, 5], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2882529710, "id_str": "2882529710", "name": "Rue", "screen_name": "_ruelia", "location": "Los Angeles, CA", "url": "https://m.soundcloud.com/ruelia", "description": "ARTIST:\nhttp://soundcloud.com/ruelia\nInstagram: @ruelia", "translator_type": "none", "protected": false, "verified": false, "followers_count": 542, "friends_count": 139, "listed_count": 4, "favourites_count": 9465, "statuses_count": 664, "created_at": "Wed Oct 29 20:23:09 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2882529710/1505413529", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 3, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [6, 29], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [6, 29], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "video_info": {"aspect_ratio": [9, 16], "duration_millis": 15177, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/720x1280/xpjJPIGkfkMKgNG6.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/360x640/vnpc6FSwu2sLVzbU.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/pl/ZP82IyUHFKmmSVVm.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/180x320/vW7ZXO07aLK6AY2s.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "_ruelia", "name": "Rue", "id": 2882529710, "id_str": "2882529710", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [19, 42], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910003604269940736, "source_status_id_str": "910003604269940736", "source_user_id": 2882529710, "source_user_id_str": "2882529710"}]}, "extended_entities": {"media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [19, 42], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910003604269940736, "source_status_id_str": "910003604269940736", "source_user_id": 2882529710, "source_user_id_str": "2882529710", "video_info": {"aspect_ratio": [9, 16], "duration_millis": 15177, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/720x1280/xpjJPIGkfkMKgNG6.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/360x640/vnpc6FSwu2sLVzbU.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/pl/ZP82IyUHFKmmSVVm.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/180x320/vW7ZXO07aLK6AY2s.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101612032, "id_str": "910976111101612032", "text": "\u3067\u304d\u3061\u3083\u3063\u305f\u3053\u306e\u6c17\u306b\u306a\u308b\u30b7\u30df\u3000\u8eab\u8fd1\u306a\u3082\u306e\u3067\u6d88\u3059\u65b9\u6cd5\u3010\u30d1\u30a6\u30c0\u30fc\u30d5\u30a1\u30f3\u30c7\u30fc\u30b7\u30e7\u30f3\u3011\u30d1\u30a6\u30c0\u30fc\u30d5\u30a1\u30f3\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u306fUV\u30ab\u30c3\u30c8\u6a5f\u80fd\u306e\u6709\u7121\u660e\u793a\u306b\u95a2\u308f\u3089\u305a\u3001\u7d2b\u5916\u7dda\u9632\u6b62\u52b9\u679c\u304c\u3042\u308a\u307e\u3059\u3002\u30d1\u30a6\u30c0\u30fc\u30d5\u30a1\u30f3\u30c7\u30fc\u30b7\u30e7\u30f3\u3092\u5857\u3063\u3066\u3044\u308b\u3053\u3068\u3067\u7d2b\u5916\u7dda\u3092\u8df3\u306d\u8fd4\u3057\u3066\u304f\u308c\u307e\u3059\u3002", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2646532916, "id_str": "2646532916", "name": "\u30ad\u30ec\u30a4\u306a\u5973\u6027\u304c\u3084\u3063\u3066\u308b\u3053\u3068\u2606", "screen_name": "kireinajoshi", "location": null, "url": null, "description": "\u30ad\u30ec\u30a4\u306a\u5973\u6027\u306f\u3069\u3093\u306a\u30b3\u30b9\u30e1\u3092\u4f7f\u3063\u3066\u3044\u308b\u306e\uff01\uff1f\u6c17\u306b\u306a\u308b\u3042\u306e\u4eba\u304c\u4f7f\u3063\u3066\u3044\u308b\u3001\u4eca\u8a71\u984c\u306e\u5316\u7ca7\u54c1\u3084\u808c\u306e\u304a\u624b\u5165\u308c\u65b9\u6cd5\u3001\u30b5\u30d7\u30ea\u30e1\u30f3\u30c8\u306a\u3069\u3092\u3054\u7d39\u4ecb\u3057\u307e\u3059\u2606", "translator_type": "none", "protected": false, "verified": false, "followers_count": 207, "friends_count": 33, "listed_count": 5, "favourites_count": 0, "statuses_count": 72447, "created_at": "Mon Jul 14 23:42:19 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/488831258768592896/jjGArfsJ_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488831258768592896/jjGArfsJ_normal.jpeg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111084834816, "id_str": "910976111084834816", "text": "@SantosDudu51 https://t.co/McnkB59O6I", "display_text_range": [0, 13], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 866670266600095749, "in_reply_to_user_id_str": "866670266600095749", "in_reply_to_screen_name": "SantosDudu51", "user": {"id": 772202697860718592, "id_str": "772202697860718592", "name": "Bianca \u2728", "screen_name": "BiancaSeixasz", "location": "Angra dos Reis, Brasil", "url": null, "description": "@SantosDudu51 \ud83d\udc8d/ bianca_seixas \ud83d\udc7b", "translator_type": "none", "protected": false, "verified": false, "followers_count": 826, "friends_count": 399, "listed_count": 2, "favourites_count": 5928, "statuses_count": 15229, "created_at": "Sat Sep 03 22:40:44 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906880250457591809/TGCXNq_q_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906880250457591809/TGCXNq_q_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/772202697860718592/1505958749", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "9c8b282f46f0ca60", "url": "https://api.twitter.com/1.1/geo/id/9c8b282f46f0ca60.json", "place_type": "city", "name": "Angra dos Reis", "full_name": "Angra dos Reis, Brasil", "country_code": "BR", "country": "Brasil", "bounding_box": {"type": "Polygon", "coordinates": [[[-44.640141, -23.226788], [-44.640141, -22.838077], [-44.091446, -22.838077], [-44.091446, -23.226788]]]}, "attributes": {}}, "contributors": null, "quoted_status_id": 910919824536145921, "quoted_status_id_str": "910919824536145921", "quoted_status": {"created_at": "Thu Sep 21 17:33:04 +0000 2017", "id": 910919824536145921, "id_str": "910919824536145921", "text": "- amor n\u00e3o morde\n- mas \u00e9 s\u00f3 carinho \n- carinho do c\u00e3o n\u00e9", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 708783871123324928, "id_str": "708783871123324928", "name": "CASAL FALANDO", "screen_name": "CasalFalando", "location": null, "url": "https://m.facebook.com/CasalFaland0/", "description": "\u2709 Casalfalando@outlook.com // sugest\u00f5es na dm", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 172708, "friends_count": 39526, "listed_count": 348, "favourites_count": 6, "statuses_count": 5427, "created_at": "Sat Mar 12 22:36:58 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/849008858223824896/XhqyQh67_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/849008858223824896/XhqyQh67_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/708783871123324928/1493844927", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 74, "reply_count": 27, "retweet_count": 499, "favorite_count": 421, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/McnkB59O6I", "expanded_url": "https://twitter.com/casalfalando/status/910919824536145921", "display_url": "twitter.com/casalfalando/s\u2026", "indices": [14, 37]}], "user_mentions": [{"screen_name": "SantosDudu51", "name": "Dudu Santos", "id": 866670266600095749, "id_str": "866670266600095749", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604657"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097475072, "id_str": "910976111097475072", "text": "I just entered to win a vegan @ChocPizzaCo Decadent Dark Chocolate Pizza from @thehecticvegan you can too: https://t.co/HeBcuwnSb2", "source": "<a href=\"https://gleam.io\" rel=\"nofollow\">Gleam Competition App</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 88043681, "id_str": "88043681", "name": "Harrington Towers", "screen_name": "freyerj", "location": "UK \uf8ff\uf8ff", "url": null, "description": "love Border Collies, cats, football and The Beatles", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2408, "friends_count": 4793, "listed_count": 432, "favourites_count": 2237, "statuses_count": 306770, "created_at": "Fri Nov 06 22:03:01 +0000 2009", "utc_offset": 3600, "time_zone": "London", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "B2DFDA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/69640575/photo.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/69640575/photo.jpg", "profile_background_tile": true, "profile_link_color": "93A644", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/999912165/photo_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/999912165/photo_normal.jpg", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/HeBcuwnSb2", "expanded_url": "https://wn.nr/y2gKWb", "display_url": "wn.nr/y2gKWb", "indices": [107, 130]}], "user_mentions": [{"screen_name": "ChocPizzaCo", "name": "Gourmet Choc Pizza", "id": 136216272, "id_str": "136216272", "indices": [30, 42]}, {"screen_name": "TheHecticVegan", "name": "The Hectic Vegan", "id": 1098202417, "id_str": "1098202417", "indices": [78, 93]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118397441, "id_str": "910976111118397441", "text": "Xhet nangangatog na ko sa kaba, Lord ikaw na bahala \ud83d\ude2d", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 543383566, "id_str": "543383566", "name": "Janelle", "screen_name": "ChanJanelle", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 448, "friends_count": 262, "listed_count": 0, "favourites_count": 16876, "statuses_count": 48668, "created_at": "Mon Apr 02 12:45:19 +0000 2012", "utc_offset": 28800, "time_zone": "Beijing", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "CF0C64", "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_link_color": "CC3366", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "95E8EC", "profile_text_color": "3C3940", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910847629650673664/Zlt8LNy1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910847629650673664/Zlt8LNy1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/543383566/1479724211", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "tl", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111110008832, "id_str": "910976111110008832", "text": "RT @splinter_news: Oklahoma City cops fatally shot a deaf man as neighbors screamed, \"He can't hear you!\" https://t.co/gvai7C7B5d https://t\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 871164700603564032, "id_str": "871164700603564032", "name": "Saba", "screen_name": "sabumafooo", "location": "Elk Grove, CA", "url": null, "description": "I'm just chilling", "translator_type": "none", "protected": false, "verified": false, "followers_count": 54, "friends_count": 71, "listed_count": 0, "favourites_count": 357, "statuses_count": 419, "created_at": "Sun Jun 04 00:40:24 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "7FDBB6", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883982104324849664/1p4hLyXF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883982104324849664/1p4hLyXF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/871164700603564032/1496538584", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 00:41:22 +0000 2017", "id": 910665218484834304, "id_str": "910665218484834304", "text": "Oklahoma City cops fatally shot a deaf man as neighbors screamed, \"He can't hear you!\" https://t.co/gvai7C7B5d https://t.co/nr8ikACj5u", "display_text_range": [0, 110], "source": "<a href=\"http://www.socialflow.com\" rel=\"nofollow\">SocialFlow</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 121817564, "id_str": "121817564", "name": "Splinter", "screen_name": "splinter_news", "location": null, "url": "http://splinternews.com", "description": "News and opinions that get under your skin.", "translator_type": "regular", "protected": false, "verified": true, "followers_count": 549473, "friends_count": 2150, "listed_count": 4301, "favourites_count": 7930, "statuses_count": 125214, "created_at": "Wed Mar 10 17:48:51 +0000 2010", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/507601660168773632/nS-zoRQn.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/507601660168773632/nS-zoRQn.jpeg", "profile_background_tile": true, "profile_link_color": "F85637", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/889485379476135938/od8CFhnw_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/889485379476135938/od8CFhnw_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/121817564/1500904800", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1104, "reply_count": 104, "retweet_count": 2607, "favorite_count": 2001, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/gvai7C7B5d", "expanded_url": "https://trib.al/XvQy986", "display_url": "trib.al/XvQy986", "indices": [87, 110]}], "user_mentions": [], "symbols": [], "media": [{"id": 910665215993290752, "id_str": "910665215993290752", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "url": "https://t.co/nr8ikACj5u", "display_url": "pic.twitter.com/nr8ikACj5u", "expanded_url": "https://twitter.com/splinter_news/status/910665218484834304/photo/1", "type": "photo", "sizes": {"large": {"w": 1080, "h": 1440, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910665215993290752, "id_str": "910665215993290752", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "url": "https://t.co/nr8ikACj5u", "display_url": "pic.twitter.com/nr8ikACj5u", "expanded_url": "https://twitter.com/splinter_news/status/910665218484834304/photo/1", "type": "photo", "sizes": {"large": {"w": 1080, "h": 1440, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/gvai7C7B5d", "expanded_url": "https://trib.al/XvQy986", "display_url": "trib.al/XvQy986", "indices": [106, 129]}], "user_mentions": [{"screen_name": "splinter_news", "name": "Splinter", "id": 121817564, "id_str": "121817564", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604663"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122644992, "id_str": "910976111122644992", "text": "RT @Rebelutionary_Z: Hey St. Louis peeps! You know this guy? Let's put him on blast. I wonder what his daughter would think..\n#STL\u2026 ", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 721461360, "id_str": "721461360", "name": "Andy \ud83d\udcf7\u2620\ufe0f", "screen_name": "akristofferson", "location": "Albuquerque, NM 505", "url": "https://www.burquemedia.com", "description": "https://www.instagram.com/505andy_/?hl=en", "translator_type": "none", "protected": false, "verified": false, "followers_count": 738, "friends_count": 1317, "listed_count": 77, "favourites_count": 7265, "statuses_count": 25434, "created_at": "Sat Jul 28 04:12:51 +0000 2012", "utc_offset": -21600, "time_zone": "Mountain Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/683336441120702465/vk0h5hTb.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/683336441120702465/vk0h5hTb.jpg", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900694078534201346/n6jBn-xF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900694078534201346/n6jBn-xF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/721461360/1502683654", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:05:26 +0000 2017", "id": 910927969929109505, "id_str": "910927969929109505", "text": "Hey St. Louis peeps! You know this guy? Let's put him on blast. I wonder what his daughter would think..\n#STL\u2026 https://t.co/3lAh2wtcFY", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 399224799, "id_str": "399224799", "name": "Rebelutionary Z", "screen_name": "Rebelutionary_Z", "location": "St Louis, MO", "url": "http://RebZ.tv", "description": "Livestreamer/Journalist - Founder http://RebZ.tv Help me stream and keep building my new media platform: http://RebZ.tv/donate", "translator_type": "none", "protected": false, "verified": false, "followers_count": 22069, "friends_count": 770, "listed_count": 624, "favourites_count": 20344, "statuses_count": 34410, "created_at": "Thu Oct 27 05:32:24 +0000 2011", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534820789/wllstbull.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534820789/wllstbull.jpg", "profile_background_tile": true, "profile_link_color": "4A913C", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/723566700873039873/I3WNlNdI_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723566700873039873/I3WNlNdI_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/399224799/1370370649", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "Hey St. Louis peeps! You know this guy? Let's put him on blast. I wonder what his daughter would think..\n#STL\n#STLverdict #STLcopsAttack https://t.co/sUfNCVUEdF", "display_text_range": [0, 136], "entities": {"hashtags": [{"text": "STL", "indices": [105, 109]}, {"text": "STLverdict", "indices": [110, 121]}, {"text": "STLcopsAttack", "indices": [122, 136]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910927964879044608, "id_str": "910927964879044608", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 229, "h": 251, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 229, "h": 251, "resize": "fit"}, "large": {"w": 229, "h": 251, "resize": "fit"}}}, {"id": 910927965864706048, "id_str": "910927965864706048", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"medium": {"w": 891, "h": 1054, "resize": "fit"}, "large": {"w": 891, "h": 1054, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 575, "h": 680, "resize": "fit"}}}, {"id": 910927965768187905, "id_str": "910927965768187905", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 478, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 776, "h": 546, "resize": "fit"}, "medium": {"w": 776, "h": 546, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910927964879044608, "id_str": "910927964879044608", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 229, "h": 251, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 229, "h": 251, "resize": "fit"}, "large": {"w": 229, "h": 251, "resize": "fit"}}}, {"id": 910927965864706048, "id_str": "910927965864706048", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"medium": {"w": 891, "h": 1054, "resize": "fit"}, "large": {"w": 891, "h": 1054, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 575, "h": 680, "resize": "fit"}}}, {"id": 910927965768187905, "id_str": "910927965768187905", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 478, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 776, "h": 546, "resize": "fit"}, "medium": {"w": 776, "h": 546, "resize": "fit"}}}]}}, "quote_count": 5, "reply_count": 5, "retweet_count": 34, "favorite_count": 24, "entities": {"hashtags": [{"text": "STL", "indices": [105, 109]}], "urls": [{"url": "https://t.co/3lAh2wtcFY", "expanded_url": "https://twitter.com/i/web/status/910927969929109505", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [111, 134]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "STL", "indices": [126, 130]}], "urls": [], "user_mentions": [{"screen_name": "Rebelutionary_Z", "name": "Rebelutionary Z", "id": 399224799, "id_str": "399224799", "indices": [3, 19]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111084961792, "id_str": "910976111084961792", "text": "RT @baghdad_salam: \u062e\u0631\u064a\u062c\u0627\u062a \u0643\u0644\u064a\u0629 \u0627\u0644\u0635\u064a\u062f\u0644\u0629 \n\u062c\u0627\u0645\u0639\u0629 \u0628\u063a\u062f\u0627\u062f\n\u0633\u0646\u0629 \u0661\u0669\u0665\u0667 \u0645\n#\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a \n#\u0627\u0644\u0635\u062f\u0645\u0647 \n#IRAQesque https://t.co/Gh4rjfAGrV", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 701107742568804352, "id_str": "701107742568804352", "name": "\ud83c\udd70Azhar\ud83c\udd70", "screen_name": "dr_azharr", "location": null, "url": null, "description": "\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0641\u064a \u0627\u0639\u062c\u0627\u0628\u0627\u062a\u064a  working as physician internal medicine", "translator_type": "none", "protected": false, "verified": false, "followers_count": 286, "friends_count": 140, "listed_count": 0, "favourites_count": 288, "statuses_count": 6965, "created_at": "Sat Feb 20 18:14:46 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/792901974047887361/pdGcO7vA_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/792901974047887361/pdGcO7vA_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/701107742568804352/1475245561", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Tue Jun 14 19:17:14 +0000 2016", "id": 742798066344955905, "id_str": "742798066344955905", "text": "\u062e\u0631\u064a\u062c\u0627\u062a \u0643\u0644\u064a\u0629 \u0627\u0644\u0635\u064a\u062f\u0644\u0629 \n\u062c\u0627\u0645\u0639\u0629 \u0628\u063a\u062f\u0627\u062f\n\u0633\u0646\u0629 \u0661\u0669\u0665\u0667 \u0645\n#\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a \n#\u0627\u0644\u0635\u062f\u0645\u0647 \n#IRAQesque https://t.co/Gh4rjfAGrV", "display_text_range": [0, 79], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 696792726365462530, "id_str": "696792726365462530", "name": "Baghdad Dar Al Salam", "screen_name": "baghdad_salam", "location": "iraq", "url": "https://www.facebook.com/permalink.php?story_fbid=479961912395141&id=100011440088153", "description": "\u0633\u0644\u0627\u0645 \u0639\u0644\u0649 \u062f\u0627\u0631 \u0627\u0644\u0633\u0644\u0627\u0645 \u062c\u0632\u064a\u0644 \u0648\u0639\u062a\u0628\u0649 \u0639\u0644\u0649 \u0627\u0646 \u0627\u0644\u0639\u062a\u0627\u0628 \u0637\u0648\u064a\u0644 \u062d\u0633\u0627\u0628 \u0645\u062a\u062e\u0635\u0635 \u0644\u0628\u063a\u062f\u0627\u062f \u0627\u0644\u062d\u0628\u064a\u0628\u0629 \u0648\u0627\u0644\u0639\u0631\u0627\u0642\u060c \u0627\u0633\u062a\u062e\u062f\u0645 #baghdad_salam \u0644\u062a\u062c\u062f \u0645\u0627\u0647\u0648 \u062c\u0645\u064a\u0644", "translator_type": "none", "protected": false, "verified": false, "followers_count": 74824, "friends_count": 1, "listed_count": 72, "favourites_count": 12517, "statuses_count": 7776, "created_at": "Mon Feb 08 20:28:26 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/890786305461936129/qr6k7bK5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/890786305461936129/qr6k7bK5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/696792726365462530/1465154667", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 5, "retweet_count": 63, "favorite_count": 102, "entities": {"hashtags": [{"text": "\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a", "indices": [44, 58]}, {"text": "\u0627\u0644\u0635\u062f\u0645\u0647", "indices": [60, 67]}, {"text": "IRAQesque", "indices": [69, 79]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [80, 103], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [80, 103], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a", "indices": [63, 77]}, {"text": "\u0627\u0644\u0635\u062f\u0645\u0647", "indices": [79, 86]}, {"text": "IRAQesque", "indices": [88, 98]}], "urls": [], "user_mentions": [{"screen_name": "baghdad_salam", "name": "Baghdad Dar Al Salam", "id": 696792726365462530, "id_str": "696792726365462530", "indices": [3, 17]}], "symbols": [], "media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}, "source_status_id": 742798066344955905, "source_status_id_str": "742798066344955905", "source_user_id": 696792726365462530, "source_user_id_str": "696792726365462530"}]}, "extended_entities": {"media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}, "source_status_id": 742798066344955905, "source_status_id_str": "742798066344955905", "source_user_id": 696792726365462530, "source_user_id_str": "696792726365462530"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604657"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118618625, "id_str": "910976111118618625", "text": "\u0635\u0648\u062a \u0646\u0648\u0627\u0644 \u0627\u0644\u0643\u0648\u064a\u062a\u064a\u0647 \u062f\u0627\u064a\u0645\u0627\u064b \u0648\u0623\u0628\u062f\u0627\u064b \u064a\u0631\u0648\u0642\u0646\u064a\ud83e\udd26\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udda4\ud83d\udda4\ud83d\udda4\ud83d\udda4.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3365133321, "id_str": "3365133321", "name": "\u0631\u0650\u0647\u0627\u0645.", "screen_name": "qvii7", "location": "Just San.", "url": null, "description": "\u0623\u062d\u0628 \u0625\u0646\u064a \u0643\u0644 \u0634\u064a\u0621 \u0628\u0627\u0644\u0646\u0633\u0628\u0647 \u0644\u0640 \u0633\u0627\u0646.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2508, "friends_count": 973, "listed_count": 2, "favourites_count": 28267, "statuses_count": 43770, "created_at": "Wed Jul 08 01:53:20 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910792838627172352/T11nv2Kz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910792838627172352/T11nv2Kz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3365133321/1504929658", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111105916928, "id_str": "910976111105916928", "text": "RT @frankthorp: Dem source: \"This is exactly the debate Graham &amp; Cassidy want to have. Sanders is looking out for himself rather th\u2026 ", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 884664676985872388, "id_str": "884664676985872388", "name": "LoriUKBay", "screen_name": "LoriUKBay", "location": "CA, NC, WA...", "url": null, "description": "Not using full name or importing contacts to avoid issues w/ employers - hoping my command of English is enough to show I'm not a bot.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5, "friends_count": 213, "listed_count": 0, "favourites_count": 325, "statuses_count": 546, "created_at": "Tue Jul 11 06:44:30 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886083503770619904/o_RhzPP7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886083503770619904/o_RhzPP7_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:05:56 +0000 2017", "id": 910973392593055745, "id_str": "910973392593055745", "text": "Dem source: \"This is exactly the debate Graham &amp; Cassidy want to have. Sanders is looking out for himself rather th\u2026 https://t.co/HcfSE2mm6l", "display_text_range": [0, 140], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 14007532, "id_str": "14007532", "name": "Frank Thorp V", "screen_name": "frankthorp", "location": "Washington, DC", "url": "http://www.nbcnews.com", "description": "Producer & Off-Air Reporter covering Congress at @NBCNews. Instagram: (frankthorpv) Snapchat: (frankthorp) Also served as Chairman of the RTCA Exec. Committee.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 40994, "friends_count": 1553, "listed_count": 1443, "favourites_count": 4671, "statuses_count": 24467, "created_at": "Tue Feb 26 15:31:46 +0000 2008", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/360628972/House_floor_small.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/360628972/House_floor_small.jpg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/674052150570459139/8qJWxmRm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674052150570459139/8qJWxmRm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14007532/1495901007", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910968062123368452, "quoted_status_id_str": "910968062123368452", "quoted_status": {"created_at": "Thu Sep 21 20:44:45 +0000 2017", "id": 910968062123368452, "id_str": "910968062123368452", "text": "Breaking: @LindseyGrahamSC @BillCassidy will debate @SenSanders @amyklobuchar on healthcare Monday at 9pET during @CNN Special Town Hall 1/2", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 18097821, "id_str": "18097821", "name": "Mark Preston", "screen_name": "PrestonCNN", "location": "\u00dcT: 38.900063,-77.008976", "url": "https://www.facebook.com/markprestoncnn", "description": "CNN's Exec. Dir. of Pol. Programming/Sr. Pol. Analyst; Full Stop w/ Mark Preston SiriusXM/POTUS 124; Bio http://bit.ly/2vibp68; \u262e\ufe0f & \u2764\ufe0f http://bit.ly/2wlyhhK", "translator_type": "none", "protected": false, "verified": true, "followers_count": 47001, "friends_count": 1559, "listed_count": 1345, "favourites_count": 575, "statuses_count": 8957, "created_at": "Sat Dec 13 12:52:32 +0000 2008", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/18097821/1460072106", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 637, "reply_count": 224, "retweet_count": 559, "favorite_count": 703, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LindseyGrahamSC", "name": "Lindsey Graham", "id": 432895323, "id_str": "432895323", "indices": [10, 26]}, {"screen_name": "BillCassidy", "name": "Bill Cassidy", "id": 55677432, "id_str": "55677432", "indices": [27, 39]}, {"screen_name": "SenSanders", "name": "Bernie Sanders", "id": 29442313, "id_str": "29442313", "indices": [52, 63]}, {"screen_name": "amyklobuchar", "name": "Amy Klobuchar", "id": 33537967, "id_str": "33537967", "indices": [64, 77]}, {"screen_name": "CNN", "name": "CNN", "id": 759251, "id_str": "759251", "indices": [114, 118]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "extended_tweet": {"full_text": "Dem source: \"This is exactly the debate Graham &amp; Cassidy want to have. Sanders is looking out for himself rather than being a team player\" https://t.co/o8wQ7sZqFN", "display_text_range": [0, 142], "entities": {"hashtags": [], "urls": [{"url": "https://t.co/o8wQ7sZqFN", "expanded_url": "https://twitter.com/PrestonCNN/status/910968062123368452", "display_url": "twitter.com/PrestonCNN/sta\u2026", "indices": [143, 166]}], "user_mentions": [], "symbols": []}}, "quote_count": 31, "reply_count": 30, "retweet_count": 113, "favorite_count": 147, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/HcfSE2mm6l", "expanded_url": "https://twitter.com/i/web/status/910973392593055745", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [121, 144]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "quoted_status_id": 910968062123368452, "quoted_status_id_str": "910968062123368452", "quoted_status": {"created_at": "Thu Sep 21 20:44:45 +0000 2017", "id": 910968062123368452, "id_str": "910968062123368452", "text": "Breaking: @LindseyGrahamSC @BillCassidy will debate @SenSanders @amyklobuchar on healthcare Monday at 9pET during @CNN Special Town Hall 1/2", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 18097821, "id_str": "18097821", "name": "Mark Preston", "screen_name": "PrestonCNN", "location": "\u00dcT: 38.900063,-77.008976", "url": "https://www.facebook.com/markprestoncnn", "description": "CNN's Exec. Dir. of Pol. Programming/Sr. Pol. Analyst; Full Stop w/ Mark Preston SiriusXM/POTUS 124; Bio http://bit.ly/2vibp68; \u262e\ufe0f & \u2764\ufe0f http://bit.ly/2wlyhhK", "translator_type": "none", "protected": false, "verified": true, "followers_count": 47001, "friends_count": 1559, "listed_count": 1345, "favourites_count": 575, "statuses_count": 8957, "created_at": "Sat Dec 13 12:52:32 +0000 2008", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/18097821/1460072106", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 637, "reply_count": 224, "retweet_count": 559, "favorite_count": 703, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LindseyGrahamSC", "name": "Lindsey Graham", "id": 432895323, "id_str": "432895323", "indices": [10, 26]}, {"screen_name": "BillCassidy", "name": "Bill Cassidy", "id": 55677432, "id_str": "55677432", "indices": [27, 39]}, {"screen_name": "SenSanders", "name": "Bernie Sanders", "id": 29442313, "id_str": "29442313", "indices": [52, 63]}, {"screen_name": "amyklobuchar", "name": "Amy Klobuchar", "id": 33537967, "id_str": "33537967", "indices": [64, 77]}, {"screen_name": "CNN", "name": "CNN", "id": 759251, "id_str": "759251", "indices": [114, 118]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "frankthorp", "name": "Frank Thorp V", "id": 14007532, "id_str": "14007532", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604662"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118499840, "id_str": "910976111118499840", "text": "\u30ac\u30f4\u30a7\u306f\u307e\u3060\u6016\u304f\u3066\u3042\u3093\u307e\u308a\u89e6\u3063\u3066\u306a\u3044\u3002", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1493342197, "id_str": "1493342197", "name": "\u3042\u304a\u3068", "screen_name": "rosja_ja", "location": "\u5305\u5bb9\u529b\u306e\u5909\u308f\u3089\u306a\u3044\u305f\u3060\u4e00\u3064\u306e\u304a\u5e03\u56e3", "url": "http://nanos.jp/ikrmnine/page/35/", "description": "\u8150\u3063\u3066\u308b\u6210\u4eba\u6e08\u3002\u57fa\u672c\u591c\u578b\u3002\u53e3\u3068\u6027\u683c\u304c\u60aa\u3044\u3002\u7bc0\u64cd\u306a\u3057\u3060\u304c\u504f\u98df\u5bb6\u3002\u305f\u307e\u306b\u98ef\u30c6\u30ed\uff0b\u30cd\u30a4\u30eb\u30c6\u30ed\u3002\u3042\u3068\u306f\u30d7\u30ed\u30d5\u306b\u3066\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 100, "friends_count": 98, "listed_count": 9, "favourites_count": 7955, "statuses_count": 146196, "created_at": "Sat Jun 08 16:21:40 +0000 2013", "utc_offset": 32400, "time_zone": "Tokyo", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": 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_link_color": "7ACCA8", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "A0C5C7", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908742280294436864/bZGRoV23_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908742280294436864/bZGRoV23_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1493342197/1499610495", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114207232, "id_str": "910976111114207232", "text": "RT @CitouSabia_: S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 731357634465542145, "id_str": "731357634465542145", "name": "\ud83c\udf34", "screen_name": "Reamavam", "location": null, "url": null, "description": "\u2661 @RelatandoStatus \u2661", "translator_type": "none", "protected": false, "verified": false, "followers_count": 33584, "friends_count": 9390, "listed_count": 32, "favourites_count": 246, "statuses_count": 1220, "created_at": "Sat May 14 05:37:02 +0000 2016", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/816435365133295620/_TC6ys_W_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/816435365133295620/_TC6ys_W_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/731357634465542145/1483488434", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:13:51 +0000 2017", "id": 910975383260016641, "id_str": "910975383260016641", "text": "S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "display_text_range": [0, 45], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 900428139523919872, "id_str": "900428139523919872", "name": "Sabi\u00e1", "screen_name": "CitouSabia_", "location": null, "url": "https://www.instagram.com/p/BZT0mzLg8Lk/", "description": "V1D4 L0k4\nSou o Dono do Morro porraaaaaa |Aceitamos sugest\u00f5es de Tweets | Ativem as notifica\u00e7\u00f5es // Criado- 08/09/2017 \u2764\ufe0f\ud83d\ude4f Twitter dedicado ao personagem Sabi\u00e1", "translator_type": "none", "protected": false, "verified": false, "followers_count": 20112, "friends_count": 27, "listed_count": 24, "favourites_count": 67, "statuses_count": 412, "created_at": "Wed Aug 23 18:42:52 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/900428139523919872/1505840576", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 62, "favorite_count": 23, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "CitouSabia_", "name": "Sabi\u00e1", "id": 900428139523919872, "id_str": "900428139523919872", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114366979, "id_str": "910976111114366979", "text": "RT @AmandinhanGomes: Pitbull \u00e9 foda https://t.co/baYKKejIi5", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1645720357, "id_str": "1645720357", "name": "F R A N k", "screen_name": "VascoMundo", "location": null, "url": "http://facebook.com/roberto.frank.50", "description": "Vasco", "translator_type": "none", "protected": false, "verified": false, "followers_count": 615, "friends_count": 2396, "listed_count": 4, "favourites_count": 1, "statuses_count": 68451, "created_at": "Sun Aug 04 17:16:37 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/797271622340251648/S-JUEDsk_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/797271622340251648/S-JUEDsk_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1645720357/1495351925", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:13:01 +0000 2017", "id": 910975175193239558, "id_str": "910975175193239558", "text": "Pitbull \u00e9 foda https://t.co/baYKKejIi5", "display_text_range": [0, 14], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1642177591, "id_str": "1642177591", "name": "Mandi", "screen_name": "AmandinhanGomes", "location": "+55 028", "url": null, "description": "GIGANTE DESDE 1898 @vascodagama \u2764", "translator_type": "none", "protected": false, "verified": false, "followers_count": 338, "friends_count": 204, "listed_count": 0, "favourites_count": 6118, "statuses_count": 10429, "created_at": "Sat Aug 03 05:49:17 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451867669549953024/z-3W9zrG.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451867669549953024/z-3W9zrG.jpeg", "profile_background_tile": true, "profile_link_color": "009999", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906561791358054400/TKkscc7g_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906561791358054400/TKkscc7g_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1642177591/1505862634", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "63cf4c863ca99fbb", "url": "https://api.twitter.com/1.1/geo/id/63cf4c863ca99fbb.json", "place_type": "city", "name": "Itapemirim", "full_name": "Itapemirim, Brasil", "country_code": "BR", "country": "Brasil", "bounding_box": {"type": "Polygon", "coordinates": [[[-41.115288, -21.111428], [-41.115288, -20.856537], [-40.753546, -20.856537], [-40.753546, -21.111428]]]}, "attributes": {}}, "contributors": null, "quoted_status_id": 910971059259756544, "quoted_status_id_str": "910971059259756544", "quoted_status": {"created_at": "Thu Sep 21 20:56:40 +0000 2017", "id": 910971059259756544, "id_str": "910971059259756544", "text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (6\u2026 https://t.co/EGiXZks4Ju", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15911679, "id_str": "15911679", "name": "Esporte Interativo", "screen_name": "Esp_Interativo", "location": "Brasil", "url": "http://www.esporteinterativo.com.br", "description": "O melhor canal de esportes na TV, na internet e no celular. Movidos por sonhos!", "translator_type": "none", "protected": false, "verified": true, "followers_count": 2024958, "friends_count": 539, "listed_count": 8191, "favourites_count": 12768, "statuses_count": 187837, "created_at": "Wed Aug 20 00:32:15 +0000 2008", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_tile": false, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15911679/1505246950", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (68), do @Corinthians ! https://t.co/wps85nZ6mg", "display_text_range": [0, 136], "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}, {"screen_name": "Corinthians", "name": "Corinthians", "id": 44627459, "id_str": "44627459", "indices": [122, 134]}], "symbols": [], "media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}}, "quote_count": 11, "reply_count": 4, "retweet_count": 67, "favorite_count": 130, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/EGiXZks4Ju", "expanded_url": "https://twitter.com/i/web/status/910971059259756544", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/baYKKejIi5", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544", "display_url": "twitter.com/Esp_Interativo\u2026", "indices": [15, 38]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "quoted_status_id": 910971059259756544, "quoted_status_id_str": "910971059259756544", "quoted_status": {"created_at": "Thu Sep 21 20:56:40 +0000 2017", "id": 910971059259756544, "id_str": "910971059259756544", "text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (6\u2026 https://t.co/EGiXZks4Ju", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15911679, "id_str": "15911679", "name": "Esporte Interativo", "screen_name": "Esp_Interativo", "location": "Brasil", "url": "http://www.esporteinterativo.com.br", "description": "O melhor canal de esportes na TV, na internet e no celular. Movidos por sonhos!", "translator_type": "none", "protected": false, "verified": true, "followers_count": 2024958, "friends_count": 539, "listed_count": 8191, "favourites_count": 12768, "statuses_count": 187837, "created_at": "Wed Aug 20 00:32:15 +0000 2008", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_tile": false, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15911679/1505246950", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (68), do @Corinthians ! https://t.co/wps85nZ6mg", "display_text_range": [0, 136], "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}, {"screen_name": "Corinthians", "name": "Corinthians", "id": 44627459, "id_str": "44627459", "indices": [122, 134]}], "symbols": [], "media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}}, "quote_count": 11, "reply_count": 4, "retweet_count": 67, "favorite_count": 130, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/EGiXZks4Ju", "expanded_url": "https://twitter.com/i/web/status/910971059259756544", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/baYKKejIi5", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544", "display_url": "twitter.com/Esp_Interativo\u2026", "indices": [36, 59]}], "user_mentions": [{"screen_name": "AmandinhanGomes", "name": "Mandi", "id": 1642177591, "id_str": "1642177591", "indices": [3, 19]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122755584, "id_str": "910976111122755584", "text": "RT @JohnMaxwellTeam: Adversity is an opportunity for self-discovery ~John Maxwell #JMTeam https://t.co/Vj6V3zHSLB", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 479404677, "id_str": "479404677", "name": "naija entrepreneur", "screen_name": "WOGUNDUBUISIS", "location": "Nigeria", "url": null, "description": "#entrepreneur , #startup ,#business , #Sociopreneur ,#youngpeople ,#mentor ,#coach ,#aba ,#ngwa ,#umuogele  ,#nigeria  ,#abia, #bank ,", "translator_type": "none", "protected": false, "verified": false, "followers_count": 286, "friends_count": 1406, "listed_count": 2, "favourites_count": 20, "statuses_count": 344, "created_at": "Tue Jan 31 10:34:03 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906663951177535488/MwO-1yAY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906663951177535488/MwO-1yAY_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:08:20 +0000 2017", "id": 910928699813482496, "id_str": "910928699813482496", "text": "Adversity is an opportunity for self-discovery ~John Maxwell #JMTeam https://t.co/Vj6V3zHSLB", "source": "<a href=\"https://www.socialjukebox.com\" rel=\"nofollow\">The Social Jukebox</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 352526493, "id_str": "352526493", "name": "John Maxwell Team", "screen_name": "JohnMaxwellTeam", "location": "West Palm Beach, FL", "url": "http://bit.ly/1Bn0hAw", "description": "World's largest and fastest growing entrepreneur certification program. By application, learn more, apply and qualify at link below #JMTeam - #LeadersThriveHere", "translator_type": "none", "protected": false, "verified": false, "followers_count": 110058, "friends_count": 81292, "listed_count": 1411, "favourites_count": 28720, "statuses_count": 62876, "created_at": "Wed Aug 10 19:02:20 +0000 2011", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "FF691F", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/600141263845732352/M9n3aKkg_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600141263845732352/M9n3aKkg_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/352526493/1479233981", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 6, "favorite_count": 6, "entities": {"hashtags": [{"text": "JMTeam", "indices": [61, 68]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "extended_entities": {"media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "JMTeam", "indices": [82, 89]}], "urls": [], "user_mentions": [{"screen_name": "JohnMaxwellTeam", "name": "John Maxwell Team", "id": 352526493, "id_str": "352526493", "indices": [3, 19]}], "symbols": [], "media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "extended_entities": {"media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093403649, "id_str": "910976111093403649", "text": "@cabelloartois To rindo de nervoso \ud83d\ude02\ud83d\ude02\ud83d\ude02 do jeito q brasileiro \u00e9  revolts nao vai prestar", "display_text_range": [15, 87], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910971829736624130, "in_reply_to_status_id_str": "910971829736624130", "in_reply_to_user_id": 103130914, "in_reply_to_user_id_str": "103130914", "in_reply_to_screen_name": "cabelloartois", "user": {"id": 798933169022128128, "id_str": "798933169022128128", "name": "Bia #HeLikeThat", "screen_name": "laujaguar5h", "location": "Lauren ", "url": "https://fifthharmony.com/", "description": "Pontes n\u00e3o muros\u2698", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5145, "friends_count": 5136, "listed_count": 1, "favourites_count": 4735, "statuses_count": 4710, "created_at": "Wed Nov 16 16:58:05 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909449180527153152/DMbgmpXM_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909449180527153152/DMbgmpXM_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/798933169022128128/1505664554", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "cabelloartois", "name": "Dope'Ste", "id": 103130914, "id_str": "103130914", "indices": [0, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093350401, "id_str": "910976111093350401", "text": "I liked a @YouTube video https://t.co/F1YtePDq60 Cotarvoid - Trial Papers [Rewind Remix Release]", "source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 853650086, "id_str": "853650086", "name": "Galaxy \ud83d\udcaf", "screen_name": "GalaxyPlaysYT_", "location": "United Kingdom", "url": "https://www.youtube.com/channel/UCV4_tg7lHWA1MeuKdZ-W7rQ", "description": "Come subscribe to my yt \ud83d\ude0a| Come Subscribe https://www.youtube.com/channel/UCV4_tg7lHWA1MeuKdZ-W7rQ  My Sponsors @DevilGrip Live Life to the fullest \ud83d\udc4f|", "translator_type": "none", "protected": false, "verified": false, "followers_count": 276, "friends_count": 700, "listed_count": 9, "favourites_count": 6948, "statuses_count": 6987, "created_at": "Sat Sep 29 21:47:23 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/875992640864571392/qlarS2dU_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/875992640864571392/qlarS2dU_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/853650086/1480084937", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/F1YtePDq60", "expanded_url": "http://youtu.be/edQrK_3ruXg?a", "display_url": "youtu.be/edQrK_3ruXg?a", "indices": [25, 48]}], "user_mentions": [{"screen_name": "YouTube", "name": "YouTube", "id": 10228272, "id_str": "10228272", "indices": [10, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097647110, "id_str": "910976111097647110", "text": "@emmalea23 This is adulting goals.", "display_text_range": [11, 34], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910972539685490688, "in_reply_to_status_id_str": "910972539685490688", "in_reply_to_user_id": 44938274, "in_reply_to_user_id_str": "44938274", "in_reply_to_screen_name": "emmalea23", "user": {"id": 833887892732837889, "id_str": "833887892732837889", "name": "Erin Doerksen", "screen_name": "eleighdoe", "location": "Newton, KS", "url": "http://www.buildersports.com/recruiting/0/18.php", "description": "Southwestern Head Cheer Coach", "translator_type": "none", "protected": false, "verified": false, "followers_count": 44, "friends_count": 70, "listed_count": 0, "favourites_count": 144, "statuses_count": 133, "created_at": "Tue Feb 21 03:55:41 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910600884186488838/xcrKI0Gs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910600884186488838/xcrKI0Gs_normal.jpg", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "emmalea23", "name": "Emma Bradley", "id": 44938274, "id_str": "44938274", "indices": [0, 10]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093342208, "id_str": "910976111093342208", "text": ".@kevinreindeer \u306eSH-02G\u304c\u307e\u305f\u30ea\u30d6\u30fc\u30c8\u3057\u307e\u3057\u305f (\u672c\u65e5 1\u56de\u76ee\uff0c\u901a\u7b97 90\u56de\u76ee) #rebootter", "source": "<a href=\"http://stackrmobile.com/misc/rebootter.html\" rel=\"nofollow\">Rebootter</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 324332971, "id_str": "324332971", "name": "\u3051\u3073\u3093", "screen_name": "kevinreindeer", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 11, "friends_count": 83, "listed_count": 0, "favourites_count": 17, "statuses_count": 1457, "created_at": "Sun Jun 26 12:26:28 +0000 2011", "utc_offset": 32400, "time_zone": "Tokyo", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2538424672/twipple1345817096544_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2538424672/twipple1345817096544_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "rebootter", "indices": [52, 62]}], "urls": [], "user_mentions": [{"screen_name": "kevinreindeer", "name": "\u3051\u3073\u3093", "id": 324332971, "id_str": "324332971", "indices": [1, 15]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122763777, "id_str": "910976111122763777", "text": "RT @g1: Nestl\u00e9 tem de vender marcas at\u00e9 outubro para aprovar compra da Garoto https://t.co/2HxGiEN46F #G1 https://t.co/HBbKVOK46U", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 76448642, "id_str": "76448642", "name": "Chamber Sierpinski", "screen_name": "ChamberSierpins", "location": "Guaruja/SP", "url": null, "description": "Eu n\u00e3o sei se choro, se sumo ou se finjo que estou bem.\nSentindo falta do que fomos um dia!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 386, "friends_count": 370, "listed_count": 22, "favourites_count": 39733, "statuses_count": 29978, "created_at": "Tue Sep 22 21:00:23 +0000 2009", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "FF0000", "profile_sidebar_border_color": "65B0DA", "profile_sidebar_fill_color": "7AC3EE", "profile_text_color": "3D1957", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/755837606412316672/tl-qgU5__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/755837606412316672/tl-qgU5__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/76448642/1479655658", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 01:01:00 +0000 2017", "id": 910670162507870210, "id_str": "910670162507870210", "text": "Nestl\u00e9 tem de vender marcas at\u00e9 outubro para aprovar compra da Garoto https://t.co/2HxGiEN46F #G1 https://t.co/HBbKVOK46U", "display_text_range": [0, 97], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 8802752, "id_str": "8802752", "name": "G1", "screen_name": "g1", "location": "Brasil", "url": "http://g1.com.br", "description": "O portal de not\u00edcias da Globo", "translator_type": "none", "protected": false, "verified": true, "followers_count": 9477672, "friends_count": 120, "listed_count": 17278, "favourites_count": 131, "statuses_count": 565907, "created_at": "Tue Sep 11 04:05:49 +0000 2007", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F0F0F0", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000030360744/cce1da5d2f091b9eb6a9eb9e37c28831.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000030360744/cce1da5d2f091b9eb6a9eb9e37c28831.jpeg", "profile_background_tile": false, "profile_link_color": "A80000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/895772431457157121/n8bWszjh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/895772431457157121/n8bWszjh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/8802752/1503341622", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 160, "reply_count": 47, "retweet_count": 109, "favorite_count": 420, "entities": {"hashtags": [{"text": "G1", "indices": [94, 97]}], "urls": [{"url": "https://t.co/2HxGiEN46F", "expanded_url": "https://glo.bo/2fc1uoT", "display_url": "glo.bo/2fc1uoT", "indices": [70, 93]}], "user_mentions": [], "symbols": [], "media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [98, 121], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [98, 121], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "G1", "indices": [102, 105]}], "urls": [{"url": "https://t.co/2HxGiEN46F", "expanded_url": "https://glo.bo/2fc1uoT", "display_url": "glo.bo/2fc1uoT", "indices": [78, 101]}], "user_mentions": [{"screen_name": "g1", "name": "G1", "id": 8802752, "id_str": "8802752", "indices": [3, 6]}], "symbols": [], "media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}, "source_status_id": 910670162507870210, "source_status_id_str": "910670162507870210", "source_user_id": 8802752, "source_user_id_str": "8802752"}]}, "extended_entities": {"media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}, "source_status_id": 910670162507870210, "source_status_id_str": "910670162507870210", "source_user_id": 8802752, "source_user_id_str": "8802752"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111110213633, "id_str": "910976111110213633", "text": "RT @iraqiahmed584: \u0627\u0644\u0633\u0644\u0627\u0645 \u0639\u0644\u064a\u0643\u0645 \u0634\u0628\u0627\u0628::\n\n\u0627\u062a\u0645\u0646\u0649 \u062f\u0639\u0645\u0643\u0645 \u0634\u0628\u0627\u0628 \u0644\u0627\u062a\u0642\u0635\u0631\u0648\u0646 \u0628\u0627\u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643 \u0628\u0627\u0644\u0642\u0646\u0627\u0629 \u0648\u0644\u0627\u064a\u0643 \u0644\u0644\u0645\u0642\u0637\u0639\n\u0631\u0627\u0628\u0637... https://t.co/4HJkWE38C6", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 885321981243142144, "id_str": "885321981243142144", "name": "Ashly Gregory", "screen_name": "tiososiligh1985", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 11, "friends_count": 68, "listed_count": 0, "favourites_count": 1393, "statuses_count": 1387, "created_at": "Thu Jul 13 02:16:23 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ru", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886895997904990208/lIYT8DsG_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886895997904990208/lIYT8DsG_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Feb 13 20:30:38 +0000 2017", "id": 831239179304566784, "id_str": "831239179304566784", "text": "\u0627\u0644\u0633\u0644\u0627\u0645 \u0639\u0644\u064a\u0643\u0645 \u0634\u0628\u0627\u0628::\n\n\u0627\u062a\u0645\u0646\u0649 \u062f\u0639\u0645\u0643\u0645 \u0634\u0628\u0627\u0628 \u0644\u0627\u062a\u0642\u0635\u0631\u0648\u0646 \u0628\u0627\u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643 \u0628\u0627\u0644\u0642\u0646\u0627\u0629 \u0648\u0644\u0627\u064a\u0643 \u0644\u0644\u0645\u0642\u0637\u0639\n\u0631\u0627\u0628\u0637... https://t.co/4HJkWE38C6", "source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3348188788, "id_str": "3348188788", "name": "iMr-Mask", "screen_name": "iraqiahmed584", "location": "Iraq", "url": "http://www.youtube.com/c/MrMask20", "description": "\u0642\u0646\u0627\u0629 #iMr_Mask \n\n \u0625\u0646\u0633\u062a\u062c\u0631\u0627\u0645ahmed_aliarqi@", "translator_type": "none", "protected": false, "verified": false, "followers_count": 76, "friends_count": 155, "listed_count": 0, "favourites_count": 25, "statuses_count": 72, "created_at": "Sat Jun 27 23:20:36 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614945786128789504/d685gmBU.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614945786128789504/d685gmBU.jpg", "profile_background_tile": true, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/720971623164211201/CnzxRUAy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/720971623164211201/CnzxRUAy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3348188788/1457944252", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 7, "favorite_count": 4, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4HJkWE38C6", "expanded_url": "http://fb.me/18JuuNKIv", "display_url": "fb.me/18JuuNKIv", "indices": [87, 110]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4HJkWE38C6", "expanded_url": "http://fb.me/18JuuNKIv", "display_url": "fb.me/18JuuNKIv", "indices": [106, 129]}], "user_mentions": [{"screen_name": "iraqiahmed584", "name": "iMr-Mask", "id": 3348188788, "id_str": "3348188788", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604663"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101833218, "id_str": "910976111101833218", "text": "RT @tjd117: Nice \u2600\ufe0f break but glad to have the hairy one back with me!!! #bestmate https://t.co/sfdHzH4NeA", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 716611948507435008, "id_str": "716611948507435008", "name": "Melanie Lloyd", "screen_name": "melanielloyd59", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 288, "friends_count": 453, "listed_count": 8, "favourites_count": 62922, "statuses_count": 18417, "created_at": "Sun Apr 03 13:02:57 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:07:08 +0000 2017", "id": 910943494021304320, "id_str": "910943494021304320", "text": "Nice \u2600\ufe0f break but glad to have the hairy one back with me!!! #bestmate https://t.co/sfdHzH4NeA", "display_text_range": [0, 70], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 363898354, "id_str": "363898354", "name": "TJ", "screen_name": "tjd117", "location": "UK", "url": null, "description": "5yr old Working GPD (and his best mate) living the dream walking the thin blue line", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1101, "friends_count": 591, "listed_count": 13, "favourites_count": 6897, "statuses_count": 2174, "created_at": "Sun Aug 28 21:44:09 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904708429377363969/kBgcdtA4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904708429377363969/kBgcdtA4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/363898354/1446854180", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 4, "favorite_count": 19, "entities": {"hashtags": [{"text": "bestmate", "indices": [61, 70]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [71, 94], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [71, 94], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "bestmate", "indices": [73, 82]}], "urls": [], "user_mentions": [{"screen_name": "tjd117", "name": "TJ", "id": 363898354, "id_str": "363898354", "indices": [3, 10]}], "symbols": [], "media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "source_status_id": 910943494021304320, "source_status_id_str": "910943494021304320", "source_user_id": 363898354, "source_user_id_str": "363898354"}]}, "extended_entities": {"media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "source_status_id": 910943494021304320, "source_status_id_str": "910943494021304320", "source_user_id": 363898354, "source_user_id_str": "363898354"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097651200, "id_str": "910976111097651200", "text": "Basta olhar pra voc\u00ea, pra minha boca querer um beijo bis...\ud83c\udfb6\ud83c\udfb6\n\nO swing da voz do Seu Jorge.", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 827970778587082752, "id_str": "827970778587082752", "name": "Cac\u00e1 \ud83d\udeeb", "screen_name": "_passageira_", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 638, "friends_count": 637, "listed_count": 1, "favourites_count": 4, "statuses_count": 16988, "created_at": "Sat Feb 04 20:03:11 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909401886113107968/rDhdGE2j_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909401886113107968/rDhdGE2j_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/827970778587082752/1489835200", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114366976, "id_str": "910976111114366976", "text": "RT @ESPNRun: #Atletas #ESPNRun @flor_vigna estuvo con @KzBelen en la presentaci\u00f3n de #LaCarreraDelMar. @ESPNRedes https://t.co/ltFozgpk4r", "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M2)</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 714547341311672324, "id_str": "714547341311672324", "name": "Keep Calm Love You", "screen_name": "DybalaMyHeroe10", "location": " [Boca Juniors mi Todo.RMC.F]", "url": "http://facebook.com/Fl\u00f6\u00f6rG\u00f6nz\u00e4l\u00ebz", "description": "{P.DYBALA\ud83d\udc8e}C\ud83d\udc9bA\ud83d\udc99B\ud83d\udc9bJ \u270c", "translator_type": "none", "protected": false, "verified": false, "followers_count": 473, "friends_count": 2316, "listed_count": 11, "favourites_count": 20171, "statuses_count": 54788, "created_at": "Mon Mar 28 20:18:56 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906631554721615873/f28Yzu_m_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906631554721615873/f28Yzu_m_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/714547341311672324/1505777770", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:45:13 +0000 2017", "id": 910877581292994561, "id_str": "910877581292994561", "text": "#Atletas #ESPNRun @flor_vigna estuvo con @KzBelen en la presentaci\u00f3n de #LaCarreraDelMar. @ESPNRedes https://t.co/ltFozgpk4r", "display_text_range": [0, 100], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327470494, "id_str": "327470494", "name": "ESPN Run", "screen_name": "ESPNRun", "location": null, "url": "http://www.espnrun.com", "description": "Programa \u00edntegramente dedicado al running. Horarios: http://guia.espndeportes.com - http://terminosdeuso.espn-la.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 32842, "friends_count": 39, "listed_count": 386, "favourites_count": 172, "statuses_count": 9277, "created_at": "Fri Jul 01 16:31:46 +0000 2011", "utc_offset": -10800, "time_zone": "Buenos Aires", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000177285161/sgGPmfy6.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000177285161/sgGPmfy6.png", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/639820123369570304/0acGZMiD_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639820123369570304/0acGZMiD_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327470494/1505845550", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": [200948140], "is_quote_status": false, "quote_count": 11, "reply_count": 12, "retweet_count": 375, "favorite_count": 570, "entities": {"hashtags": [{"text": "Atletas", "indices": [0, 8]}, {"text": "ESPNRun", "indices": [9, 17]}, {"text": "LaCarreraDelMar", "indices": [72, 88]}], "urls": [], "user_mentions": [{"screen_name": "flor_vigna", "name": "Flor Vigna", "id": 2468662926, "id_str": "2468662926", "indices": [18, 29]}, {"screen_name": "KzBelen", "name": "Bel\u00e9n Casetta", "id": 3294159232, "id_str": "3294159232", "indices": [41, 49]}, {"screen_name": "ESPNRedes", "name": "ESPN Redes", "id": 1525614408, "id_str": "1525614408", "indices": [90, 100]}], "symbols": [], "media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [101, 124], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [101, 124], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "Atletas", "indices": [13, 21]}, {"text": "ESPNRun", "indices": [22, 30]}, {"text": "LaCarreraDelMar", "indices": [85, 101]}], "urls": [], "user_mentions": [{"screen_name": "ESPNRun", "name": "ESPN Run", "id": 327470494, "id_str": "327470494", "indices": [3, 11]}, {"screen_name": "flor_vigna", "name": "Flor Vigna", "id": 2468662926, "id_str": "2468662926", "indices": [31, 42]}, {"screen_name": "KzBelen", "name": "Bel\u00e9n Casetta", "id": 3294159232, "id_str": "3294159232", "indices": [54, 62]}, {"screen_name": "ESPNRedes", "name": "ESPN Redes", "id": 1525614408, "id_str": "1525614408", "indices": [103, 113]}], "symbols": [], "media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}, "source_status_id": 910877581292994561, "source_status_id_str": "910877581292994561", "source_user_id": 327470494, "source_user_id_str": "327470494"}]}, "extended_entities": {"media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}, "source_status_id": 910877581292994561, "source_status_id_str": "910877581292994561", "source_user_id": 327470494, "source_user_id_str": "327470494"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097597952, "id_str": "910976111097597952", "text": "RT @giner_joan: No parem, cap a Sanfeliu a seguir cridant a la vaga. https://t.co/pYjIe9SvxS", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 314477818, "id_str": "314477818", "name": "Jordi Pijoan", "screen_name": "pijoan_jordi", "location": "Querol", "url": null, "description": "Pare... Eng. agr\u00edcola i ambient\u00f2leg\nProfessor Ci\u00e8ncies. Natura /meteo/ bici/ ADF.../ estones Alcalde Querol http://es.linkedin.com/in/jordi-pijoa\u2026", "translator_type": "none", "protected": false, "verified": false, "followers_count": 502, "friends_count": 610, "listed_count": 16, "favourites_count": 1905, "statuses_count": 7598, "created_at": "Fri Jun 10 09:55:57 +0000 2011", "utc_offset": 7200, "time_zone": "Berlin", "geo_enabled": true, "lang": "ca", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909083828307808257/wWQPM37m_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909083828307808257/wWQPM37m_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/314477818/1355175250", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:42:46 +0000 2017", "id": 910907164910391296, "id_str": "910907164910391296", "text": "No parem, cap a Sanfeliu a seguir cridant a la vaga. https://t.co/pYjIe9SvxS", "display_text_range": [0, 52], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 400892490, "id_str": "400892490", "name": "Joan Giner", "screen_name": "giner_joan", "location": "Cornell\u00e0 de Llobregat", "url": "https://joanginermiguelez.wordpress.com", "description": "De @podem_cat i diputat per @catsiqueespot. Anticapitalista. Soc dels que pensa que l'escala del desig no te barana. #Mar\u00e7al", "translator_type": "none", "protected": false, "verified": true, "followers_count": 5238, "friends_count": 1053, "listed_count": 87, "favourites_count": 1304, "statuses_count": 6923, "created_at": "Sat Oct 29 18:46:04 +0000 2011", "utc_offset": -7200, "time_zone": "Greenland", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877167725084385282/ISOnQp4E_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877167725084385282/ISOnQp4E_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/400892490/1444051481", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 1, "retweet_count": 29, "favorite_count": 36, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "giner_joan", "name": "Joan Giner", "id": 400892490, "id_str": "400892490", "indices": [3, 14]}], "symbols": [], "media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}, "source_status_id": 910907164910391296, "source_status_id_str": "910907164910391296", "source_user_id": 400892490, "source_user_id_str": "400892490"}]}, "extended_entities": {"media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}, "source_status_id": 910907164910391296, "source_status_id_str": "910907164910391296", "source_user_id": 400892490, "source_user_id_str": "400892490"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101833220, "id_str": "910976111101833220", "text": "RT @paperrrclip: Mario Kart for iMessage should be a thing", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 404494749, "id_str": "404494749", "name": "kt adams", "screen_name": "ktadams7", "location": "Mason City, IA", "url": "https://www.instagram.com/katmarrrrie/", "description": "mason city, ia \u2022 niacc", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1055, "friends_count": 958, "listed_count": 2, "favourites_count": 7988, "statuses_count": 3980, "created_at": "Fri Nov 04 00:40:19 +0000 2011", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784053787/9159035bc2c736bda43ac196fad4bcd8.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784053787/9159035bc2c736bda43ac196fad4bcd8.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/891482888121839616/Bl3z2jy7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/891482888121839616/Bl3z2jy7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/404494749/1458525941", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 04:59:29 +0000 2017", "id": 910367790107906048, "id_str": "910367790107906048", "text": "Mario Kart for iMessage should be a thing", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 169774853, "id_str": "169774853", "name": "mar", "screen_name": "paperrrclip", "location": null, "url": "https://www.instagram.com/svtmar/", "description": "princess of my household", "translator_type": "none", "protected": false, "verified": false, "followers_count": 948, "friends_count": 374, "listed_count": 3, "favourites_count": 10533, "statuses_count": 24094, "created_at": "Fri Jul 23 03:50:13 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_tile": true, "profile_link_color": "F5ABB5", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "009999", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/169774853/1505354274", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 337, "reply_count": 15, "retweet_count": 7207, "favorite_count": 10459, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "paperrrclip", "name": "mar", "id": 169774853, "id_str": "169774853", "indices": [3, 15]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101775872, "id_str": "910976111101775872", "text": "RT @ChampionsLeague: \u26bd\ufe0f\ud83d\ude0d Goal of the Week \ud83d\ude0d\u26bd\ufe0f\n\nThis beauty from @Besiktas star @CenkTosun_ \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f \n\n#UCL https://t.co/6wCLCiGDuL", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 747889615286243328, "id_str": "747889615286243328", "name": "Reyhan Polat", "screen_name": "reyhnplat", "location": null, "url": null, "description": "Mustafa Kemal Atat\u00fcrk\n\u2764Be\u015fikta\u015fk\u2764", "translator_type": "none", "protected": false, "verified": false, "followers_count": 267, "friends_count": 230, "listed_count": 0, "favourites_count": 3796, "statuses_count": 578, "created_at": "Tue Jun 28 20:29:14 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904700288988270592/HnfL8g1d_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904700288988270592/HnfL8g1d_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/747889615286243328/1484410318", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 09:01:27 +0000 2017", "id": 910791069629124609, "id_str": "910791069629124609", "text": "\u26bd\ufe0f\ud83d\ude0d Goal of the Week \ud83d\ude0d\u26bd\ufe0f\n\nThis beauty from @Besiktas star @CenkTosun_ \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f \n\n#UCL https://t.co/6wCLCiGDuL", "display_text_range": [0, 80], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 627673190, "id_str": "627673190", "name": "#UCL", "screen_name": "ChampionsLeague", "location": "Nyon, Vaud", "url": "http://www.uefa.com/uefachampionsleague", "description": "The official home of the #UCL on Twitter. Spanish: @LigadeCampeones  U19: @UEFAYouthLeague \nYouTube: http://uefa.tv", "translator_type": "none", "protected": false, "verified": true, "followers_count": 17734892, "friends_count": 509, "listed_count": 16822, "favourites_count": 1060, "statuses_count": 51113, "created_at": "Thu Jul 05 19:43:40 +0000 2012", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "022330", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/616679637687648258/trkDBuou.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/616679637687648258/trkDBuou.jpg", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/616969183948054528/mF1Oxcly_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616969183948054528/mF1Oxcly_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/627673190/1496665577", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 154, "reply_count": 174, "retweet_count": 7490, "favorite_count": 18923, "entities": {"hashtags": [{"text": "UCL", "indices": [76, 80]}], "urls": [], "user_mentions": [{"screen_name": "Besiktas", "name": "Be\u015fikta\u015f JK", "id": 259758878, "id_str": "259758878", "indices": [43, 52]}, {"screen_name": "CenkTosun_", "name": "Cenk Tosun", "id": 260195059, "id_str": "260195059", "indices": [58, 69]}], "symbols": [], "media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [81, 104], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "photo", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [81, 104], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "video", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 3800, "variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/480x480/lLGXQ1VVfIU_FUwI.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/240x240/z20ajAzJKjo0lR9C.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/pl/J4A3OKsd7J6BBVUc.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "UCL", "indices": [97, 101]}], "urls": [], "user_mentions": [{"screen_name": "ChampionsLeague", "name": "#UCL", "id": 627673190, "id_str": "627673190", "indices": [3, 19]}, {"screen_name": "Besiktas", "name": "Be\u015fikta\u015f JK", "id": 259758878, "id_str": "259758878", "indices": [64, 73]}, {"screen_name": "CenkTosun_", "name": "Cenk Tosun", "id": 260195059, "id_str": "260195059", "indices": [79, 90]}], "symbols": [], "media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [102, 125], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "photo", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}, "source_status_id": 910791069629124609, "source_status_id_str": "910791069629124609", "source_user_id": 627673190, "source_user_id_str": "627673190"}]}, "extended_entities": {"media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [102, 125], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "video", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}, "source_status_id": 910791069629124609, "source_status_id_str": "910791069629124609", "source_user_id": 627673190, "source_user_id_str": "627673190", "video_info": {"aspect_ratio": [1, 1], "duration_millis": 3800, "variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/480x480/lLGXQ1VVfIU_FUwI.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/240x240/z20ajAzJKjo0lR9C.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/pl/J4A3OKsd7J6BBVUc.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118573568, "id_str": "910976111118573568", "text": "RT @LifeFacts: I LOVE THIS https://t.co/k8TQWpEECr", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 499146972, "id_str": "499146972", "name": "MaLou \u2661", "screen_name": "LOUISE76_", "location": "France", "url": null, "description": "\u2022 Louise 19yo | Rouen/N\u00eemes |", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1022, "friends_count": 1448, "listed_count": 10, "favourites_count": 2453, "statuses_count": 51555, "created_at": "Tue Feb 21 20:35:18 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ACDED6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/694291439/ebd1e4a0ffe31c964faf762a61ee4d6c.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/694291439/ebd1e4a0ffe31c964faf762a61ee4d6c.jpeg", "profile_background_tile": true, "profile_link_color": "038543", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/899180266261970944/153bA5xu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/899180266261970944/153bA5xu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/499146972/1455560432", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 16:45:08 +0000 2017", "id": 910545371604160514, "id_str": "910545371604160514", "text": "I LOVE THIS https://t.co/k8TQWpEECr", "source": "<a href=\"http://bufferapp.com\" rel=\"nofollow\">Buffer</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 136627335, "id_str": "136627335", "name": "Life Facts", "screen_name": "LifeFacts", "location": "Life", "url": "http://takingfive.com", "description": "#LifeFacts Posting whatever I like that's true, funny, or just relatable. I do not own any posts. enjoy! hi@getmefamous.com", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 3020533, "friends_count": 2819, "listed_count": 7165, "favourites_count": 427, "statuses_count": 93928, "created_at": "Sat Apr 24 13:14:27 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/702602968147709952/D9TxvQJr.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/702602968147709952/D9TxvQJr.jpg", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/703241452499943424/zxb4iBDf_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/703241452499943424/zxb4iBDf_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/136627335/1456500367", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 48, "favorite_count": 110, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "extended_entities": {"media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020486262784, "id_str": "910229020486262784", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 652, "h": 680, "resize": "fit"}, "large": {"w": 1438, "h": 1499, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1151, "h": 1200, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020565848064, "id_str": "910229020565848064", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 614, "resize": "fit"}, "large": {"w": 1439, "h": 1299, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1083, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020180078592, "id_str": "910229020180078592", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 1139, "resize": "fit"}, "large": {"w": 1439, "h": 1366, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 646, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": true, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LifeFacts", "name": "Life Facts", "id": 136627335, "id_str": "136627335", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "extended_entities": {"media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020486262784, "id_str": "910229020486262784", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 652, "h": 680, "resize": "fit"}, "large": {"w": 1438, "h": 1499, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1151, "h": 1200, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020565848064, "id_str": "910229020565848064", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 614, "resize": "fit"}, "large": {"w": 1439, "h": 1299, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1083, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020180078592, "id_str": "910229020180078592", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 1139, "resize": "fit"}, "large": {"w": 1439, "h": 1366, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 646, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114297344, "id_str": "910976111114297344", "text": "1 Cellular(3g/4g/lte)\ub4f1\ub4f1 \uc140\uc774\ub77c \ubd88\ub9ac\uc6b0\ub294 \uae30\uc874\uc758 gsm/cdma\ub4f1\uc758 \uae30\uc220\ub4e4\uc740 \ubaa8\ub450 \ubc18\uacbd\uc774 \uc544\uc8fc \ud06c\uae30 \ub54c\ubb38\uc5d0 \ud070\uc9c0\uc5ed\uc744 \uce74\ubc14\ud568\uc73c\ub85c\uc11c \ubaa8\ubc14\uc77c\ud3f0\uc758 \uc8fc\ub41c \uae30\ub2a5\uc778 \ubcf4\uc774\uc2a4\uc5d0 \uaf2d \ud544\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \ub2e4\uc218\uc720\uc800\uc758 \ub370\uc774\ud0c0 \uc804\uc1a1\uc5d0\uc11c\ub294 \ucde8\uc57d\ud569\ub2c8\ub2e4.", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 512528666, "id_str": "512528666", "name": "\uc640\uc774\ud30c\uc774\ubd07", "screen_name": "wlan_bot", "location": "\uacf5\uc720\uae30\uc18d \uc548\ud14c\ub098\uc606", "url": null, "description": "\uac00\uc815\uacfc \uc624\ud53c\uc2a4\uc5d0\uc11c \uc0ac\uc6a9\ud558\ub294 \ubb34\uc120\ub79c\uacfc \uad00\ub828\ub418\uc11c \uc5b4\ub835\uc9c0\uc54a\uace0 \uc54c\uba74 \uc88b\uc744 \ub0b4\uc6a9\ub4e4\uc744 \ud2b8\uc717\ud558\ub294\uac8c \ucde8\uc9c0\uc785\ub2c8\ub2e4.  \uc9c8\ubb38\ub3c4 \uc8fc\uc2dc\uba74 \ucd5c\ub300\ud55c \ub2f5\ud574\ub4dc\ub9b4\uaed8\uc694.^^", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2323, "friends_count": 2098, "listed_count": 18, "favourites_count": 67, "statuses_count": 22186, "created_at": "Fri Mar 02 22:46:00 +0000 2012", "utc_offset": 36000, "time_zone": "Sydney", "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2294475283/pdc0d04u1o5e8ap88dw8_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2294475283/pdc0d04u1o5e8ap88dw8_normal.png", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111106019328, "id_str": "910976111106019328", "text": "@CandelasRg Literalmente as\u00ed, porque por ahora TICS y tecnolog\u00eda son m\u00e1s bien \ud83d\udc47\ud83c\udffc https://t.co/rfpimgPKe0", "display_text_range": [12, 80], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975373764124672, "in_reply_to_status_id_str": "910975373764124672", "in_reply_to_user_id": 825123496284020738, "in_reply_to_user_id_str": "825123496284020738", "in_reply_to_screen_name": "CandelasRg", "user": {"id": 3320997965, "id_str": "3320997965", "name": "DavidLG__Madrid \ud83c\uddea\ud83c\uddf8", "screen_name": "DavidLG__", "location": "Comunidad de Madrid, Espa\u00f1a", "url": null, "description": "Espa\u00f1ol, madrile\u00f1o. Pol\u00edtica.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 515, "friends_count": 1265, "listed_count": 28, "favourites_count": 19300, "statuses_count": 27475, "created_at": "Fri Jun 12 14:04:00 +0000 2015", "utc_offset": 7200, "time_zone": "Madrid", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909423884977438723/cZycTGvN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909423884977438723/cZycTGvN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320997965/1505827433", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "3b111abdac0a7687", "url": "https://api.twitter.com/1.1/geo/id/3b111abdac0a7687.json", "place_type": "admin", "name": "Comunidad de Madrid", "full_name": "Comunidad de Madrid, Espa\u00f1a", "country_code": "ES", "country": "Espa\u00f1a", "bounding_box": {"type": "Polygon", "coordinates": [[[-4.579175, 39.884537], [-4.579175, 41.164911], [-3.053132, 41.164911], [-3.053132, 39.884537]]]}, "attributes": {}}, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "CandelasRg", "name": "Candelas Rg", "id": 825123496284020738, "id_str": "825123496284020738", "indices": [0, 11]}], "symbols": [], "media": [{"id": 910976101534531585, "id_str": "910976101534531585", "indices": [81, 104], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "url": "https://t.co/rfpimgPKe0", "display_url": "pic.twitter.com/rfpimgPKe0", "expanded_url": "https://twitter.com/DavidLG__/status/910976111106019328/photo/1", "type": "photo", "sizes": {"small": {"w": 196, "h": 150, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 196, "h": 150, "resize": "fit"}, "medium": {"w": 196, "h": 150, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976101534531585, "id_str": "910976101534531585", "indices": [81, 104], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "url": "https://t.co/rfpimgPKe0", "display_url": "pic.twitter.com/rfpimgPKe0", "expanded_url": "https://twitter.com/DavidLG__/status/910976111106019328/photo/1", "type": "animated_gif", "sizes": {"small": {"w": 196, "h": 150, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 196, "h": 150, "resize": "fit"}, "medium": {"w": 196, "h": 150, "resize": "fit"}}, "video_info": {"aspect_ratio": [98, 75], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/DKRv8BLWAAENIyN.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028604662"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114321920, "id_str": "910976111114321920", "text": "RT @yisucrist: resumen del colegio en un bideo https://t.co/57QIDVQnxx", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 887474784241668097, "id_str": "887474784241668097", "name": "Sandra Olvera", "screen_name": "sandraolv23", "location": "______", "url": null, "description": "\ud83e\udd40\ud83d\udc9bya no espero nada de nadie.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 17, "friends_count": 56, "listed_count": 0, "favourites_count": 97, "statuses_count": 97, "created_at": "Wed Jul 19 00:50:51 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907240392726384641/RKxxW7jE_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907240392726384641/RKxxW7jE_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/887474784241668097/1505137942", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 14:00:08 +0000 2017", "id": 910503848111955969, "id_str": "910503848111955969", "text": "resumen del colegio en un bideo https://t.co/57QIDVQnxx", "display_text_range": [0, 31], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 701423664, "id_str": "701423664", "name": "jezucrihto xd", "screen_name": "yisucrist", "location": "instagram: @yisucrist", "url": "https://www.facebook.com/yisucrist", "description": "nas\u00ed kat\u00f3lico xk jud\u00edos habia muxos. maria mahdalena tkm (L) shavales, ai k repetir santa sena cabrones. Paso d traidores. Youtube y Twitch: YisusOficial \u25b6\ufe0f", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 1136114, "friends_count": 394, "listed_count": 1634, "favourites_count": 100018, "statuses_count": 11316, "created_at": "Tue Jul 17 17:16:55 +0000 2012", "utc_offset": 7200, "time_zone": "Madrid", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": 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_link_color": "0099B9", "profile_sidebar_border_color": "5ED4DC", "profile_sidebar_fill_color": "95E8EC", "profile_text_color": "3C3940", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407368218/fa1bad7b5fc824ed3deb233f7c586668_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407368218/fa1bad7b5fc824ed3deb233f7c586668_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/701423664/1477393248", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 96, "reply_count": 45, "retweet_count": 2342, "favorite_count": 4035, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [32, 55], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "photo", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [32, 55], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "video", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 35500, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/pl/95wiuNOir9pOF-6F.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/vid/240x240/s2vfh6jjM-KYvOij.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "yisucrist", "name": "jezucrihto xd", "id": 701423664, "id_str": "701423664", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [47, 70], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "photo", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}, "source_status_id": 910503848111955969, "source_status_id_str": "910503848111955969", "source_user_id": 701423664, "source_user_id_str": "701423664"}]}, "extended_entities": {"media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [47, 70], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "video", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}, "source_status_id": 910503848111955969, "source_status_id_str": "910503848111955969", "source_user_id": 701423664, "source_user_id_str": "701423664", "video_info": {"aspect_ratio": [1, 1], "duration_millis": 35500, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/pl/95wiuNOir9pOF-6F.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/vid/240x240/s2vfh6jjM-KYvOij.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114407936, "id_str": "910976111114407936", "text": "@Diija11 @10angel04_ \u0627\u062a\u0641\u0647*", "display_text_range": [21, 26], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910975336673923072, "in_reply_to_status_id_str": "910975336673923072", "in_reply_to_user_id": 792068862229549056, "in_reply_to_user_id_str": "792068862229549056", "in_reply_to_screen_name": "Diija11", "user": {"id": 1605838267, "id_str": "1605838267", "name": "Kingtan of Records\ud83d\udc51", "screen_name": "SAlmortada", "location": null, "url": null, "description": "Because in the end...\nWe're all just Dreamers...\nIn an Endless Universe...\ud83c\udf0c", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1157, "friends_count": 760, "listed_count": 2, "favourites_count": 247193, "statuses_count": 49835, "created_at": "Fri Jul 19 12:22:45 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910782641754034176/FZvjQwhm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910782641754034176/FZvjQwhm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1605838267/1505384578", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Diija11", "name": "\u200f\u05d7\u05d3\u05d9\u05d2'\u05d4 \u05b7", "id": 792068862229549056, "id_str": "792068862229549056", "indices": [0, 8]}, {"screen_name": "10angel04_", "name": "Angel \u029a\u25db\u025e", "id": 723793091015151617, "id_str": "723793091015151617", "indices": [9, 20]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093469189, "id_str": "910976111093469189", "text": "RT @TheFrogCastTCU: This game feels like 2014 OU. Simple  confidence and a team ready to take the next step. https://t.co/tH4x0BSnaq", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1016463055, "id_str": "1016463055", "name": "C Lumpkin-Lillo", "screen_name": "CarolLumpkin", "location": null, "url": null, "description": "GO FROGS! Riff Ram Bah Zoo!!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 177, "friends_count": 584, "listed_count": 2, "favourites_count": 40273, "statuses_count": 3457, "created_at": "Mon Dec 17 01:42:16 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/901441150443286528/JVxaYexW_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/901441150443286528/JVxaYexW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1016463055/1480775844", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 13:49:40 +0000 2017", "id": 910501215083073537, "id_str": "910501215083073537", "text": "This game feels like 2014 OU. Simple  confidence and a team ready to take the next step. https://t.co/tH4x0BSnaq", "display_text_range": [0, 88], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3424981162, "id_str": "3424981162", "name": "Geoff Mitchell", "screen_name": "TheFrogCastTCU", "location": "The Carter ", "url": null, "description": "Covering TCU, Big 12 and recruiting for 24/7 http://HornedFrogBlitz.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2015, "friends_count": 1195, "listed_count": 32, "favourites_count": 70134, "statuses_count": 15364, "created_at": "Sat Aug 15 23:19:54 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909388155597541376/iU7X6SoZ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909388155597541376/iU7X6SoZ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3424981162/1502222525", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910497060901724160, "quoted_status_id_str": "910497060901724160", "quoted_status": {"created_at": "Wed Sep 20 13:33:10 +0000 2017", "id": 910497060901724160, "id_str": "910497060901724160", "text": "Calling all Frogs! It is time!", "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1377224900, "id_str": "1377224900", "name": "Gary Patterson", "screen_name": "TCUCoachP", "location": "Fort Worth, TX", "url": "http://TCUFTW.com", "description": "Husband, Father, Head Football Coach at TCU #GoFrogs #FrogFam", "translator_type": "none", "protected": false, "verified": true, "followers_count": 74735, "friends_count": 17569, "listed_count": 330, "favourites_count": 680, "statuses_count": 5804, "created_at": "Wed Apr 24 14:47:52 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "252561", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1377224900/1501560878", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 16, "reply_count": 40, "retweet_count": 210, "favorite_count": 1100, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 5, "retweet_count": 6, "favorite_count": 50, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/tH4x0BSnaq", "expanded_url": "https://twitter.com/tcucoachp/status/910497060901724160", "display_url": "twitter.com/tcucoachp/stat\u2026", "indices": [89, 112]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "quoted_status_id": 910497060901724160, "quoted_status_id_str": "910497060901724160", "quoted_status": {"created_at": "Wed Sep 20 13:33:10 +0000 2017", "id": 910497060901724160, "id_str": "910497060901724160", "text": "Calling all Frogs! It is time!", "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1377224900, "id_str": "1377224900", "name": "Gary Patterson", "screen_name": "TCUCoachP", "location": "Fort Worth, TX", "url": "http://TCUFTW.com", "description": "Husband, Father, Head Football Coach at TCU #GoFrogs #FrogFam", "translator_type": "none", "protected": false, "verified": true, "followers_count": 74735, "friends_count": 17569, "listed_count": 330, "favourites_count": 680, "statuses_count": 5804, "created_at": "Wed Apr 24 14:47:52 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "252561", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1377224900/1501560878", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 16, "reply_count": 40, "retweet_count": 210, "favorite_count": 1100, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/tH4x0BSnaq", "expanded_url": "https://twitter.com/tcucoachp/status/910497060901724160", "display_url": "twitter.com/tcucoachp/stat\u2026", "indices": [109, 132]}], "user_mentions": [{"screen_name": "TheFrogCastTCU", "name": "Geoff Mitchell", "id": 3424981162, "id_str": "3424981162", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111085006849, "id_str": "910976111085006849", "text": "RT @Teookumura: !!!! \ud83d\udd25 https://t.co/u7uObMr4mG", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4049481796, "id_str": "4049481796", "name": "Jotaro Kuj\u014d", "screen_name": "tkshboy", "location": "Morioh town", "url": null, "description": "\u2022Paris - Shibuya. Japan \ud83c\udf0a babyboo \ud83d\udc98 #JoJoSquad", "translator_type": "none", "protected": false, "verified": false, "followers_count": 145, "friends_count": 144, "listed_count": 6, "favourites_count": 3349, "statuses_count": 7758, "created_at": "Mon Oct 26 23:13:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4049481796/1504997926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:27:15 +0000 2017", "id": 910948558513299458, "id_str": "910948558513299458", "text": "!!!! \ud83d\udd25 https://t.co/u7uObMr4mG", "display_text_range": [0, 6], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1089930739, "id_str": "1089930739", "name": "Taiga", "screen_name": "Teookumura", "location": "Shohoku high school", "url": "http://teookumura.tumblr.com/", "description": "MASTER BRUCE YEAH IM THE COLDEST @srmkth", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 344, "friends_count": 97, "listed_count": 29, "favourites_count": 2196, "statuses_count": 47005, "created_at": "Mon Jan 14 19:25:32 +0000 2013", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000089462654/6a8d4d7517d6fb5dad4f3e06c641dd6e.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000089462654/6a8d4d7517d6fb5dad4f3e06c641dd6e.jpeg", "profile_background_tile": true, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908083619800993792/cdFkirar_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908083619800993792/cdFkirar_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1089930739/1505655734", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 858959450685788160, "quoted_status_id_str": "858959450685788160", "quoted_status": {"created_at": "Mon May 01 08:21:06 +0000 2017", "id": 858959450685788160, "id_str": "858959450685788160", "text": "@THEDAMSO alter Ips\u00e9it\u00e9 \u2713 https://t.co/ro4P0zcUJD", "display_text_range": [0, 25], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 529836126, "in_reply_to_user_id_str": "529836126", "in_reply_to_screen_name": "THEDAMSO", "user": {"id": 4049481796, "id_str": "4049481796", "name": "Jotaro Kuj\u014d", "screen_name": "tkshboy", "location": "Morioh town", "url": null, "description": "\u2022Paris - Shibuya. Japan \ud83c\udf0a babyboo \ud83d\udc98 #JoJoSquad", "translator_type": "none", "protected": false, "verified": false, "followers_count": 145, "friends_count": 144, "listed_count": 6, "favourites_count": 3349, "statuses_count": 7757, "created_at": "Mon Oct 26 23:13:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4049481796/1504997926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 2, "retweet_count": 40, "favorite_count": 19, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "THEDAMSO", "name": "DAMSO", "id": 529836126, "id_str": "529836126", "indices": [0, 9]}], "symbols": [], "media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/u7uObMr4mG", "expanded_url": "https://twitter.com/tkshboy/status/858959450685788160", "display_url": "twitter.com/tkshboy/status\u2026", "indices": [7, 30]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "quoted_status_id": 858959450685788160, "quoted_status_id_str": "858959450685788160", "quoted_status": {"created_at": "Mon May 01 08:21:06 +0000 2017", "id": 858959450685788160, "id_str": "858959450685788160", "text": "@THEDAMSO alter Ips\u00e9it\u00e9 \u2713 https://t.co/ro4P0zcUJD", "display_text_range": [0, 25], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 529836126, "in_reply_to_user_id_str": "529836126", "in_reply_to_screen_name": "THEDAMSO", "user": {"id": 4049481796, "id_str": "4049481796", "name": "Jotaro Kuj\u014d", "screen_name": "tkshboy", "location": "Morioh town", "url": null, "description": "\u2022Paris - Shibuya. Japan \ud83c\udf0a babyboo \ud83d\udc98 #JoJoSquad", "translator_type": "none", "protected": false, "verified": false, "followers_count": 145, "friends_count": 144, "listed_count": 6, "favourites_count": 3349, "statuses_count": 7757, "created_at": "Mon Oct 26 23:13:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4049481796/1504997926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 2, "retweet_count": 40, "favorite_count": 19, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "THEDAMSO", "name": "DAMSO", "id": 529836126, "id_str": "529836126", "indices": [0, 9]}], "symbols": [], "media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/u7uObMr4mG", "expanded_url": "https://twitter.com/tkshboy/status/858959450685788160", "display_url": "twitter.com/tkshboy/status\u2026", "indices": [23, 46]}], "user_mentions": [{"screen_name": "Teookumura", "name": "Taiga", "id": 1089930739, "id_str": "1089930739", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604657"}
{"delete": {"status": {"id": 910867898050035712, "id_str": "910867898050035712", "user_id": 147608770, "user_id_str": "147608770"}, "timestamp_ms": "1506028605018"}}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114321924, "id_str": "910976111114321924", "text": "RT @Harvey_Art: 'No, can you make sure we can see her face AND her ass?' https://t.co/f4RYCWlB9v", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2438565537, "id_str": "2438565537", "name": "yima", "screen_name": "gemmarx_", "location": "murzia", "url": null, "description": "///cry in red///", "translator_type": "none", "protected": false, "verified": false, "followers_count": 171, "friends_count": 190, "listed_count": 2, "favourites_count": 2032, "statuses_count": 3230, "created_at": "Wed Mar 26 20:55:34 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/896520084667215872/nKyYN_Cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896520084667215872/nKyYN_Cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2438565537/1484598956", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Tue Sep 19 20:35:41 +0000 2017", "id": 910241003680026624, "id_str": "910241003680026624", "text": "'No, can you make sure we can see her face AND her ass?' https://t.co/f4RYCWlB9v", "display_text_range": [0, 56], "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 486108654, "id_str": "486108654", "name": "WolfSkullJack", "screen_name": "Harvey_Art", "location": "UK", "url": "http://www.wolfskulljack.com", "description": "Werewolf Queen shaped in human flesh. Etsy shop https://www.etsy.com/uk/shop/WolfSkullJack?ref=hdr_shop_menu", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6083, "friends_count": 1531, "listed_count": 129, "favourites_count": 42694, "statuses_count": 38705, "created_at": "Tue Feb 07 22:54:11 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "2FC2EF", "profile_sidebar_border_color": "181A1E", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/648605071614345216/mZN1emI5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648605071614345216/mZN1emI5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/486108654/1497047653", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 512, "reply_count": 336, "retweet_count": 12300, "favorite_count": 29100, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 910240989717127168, "id_str": "910240989717127168", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Harvey_Art", "name": "WolfSkullJack", "id": 486108654, "id_str": "486108654", "indices": [3, 14]}], "symbols": [], "media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910241003680026624, "source_status_id_str": "910241003680026624", "source_user_id": 486108654, "source_user_id_str": "486108654"}]}, "extended_entities": {"media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910241003680026624, "source_status_id_str": "910241003680026624", "source_user_id": 486108654, "source_user_id_str": "486108654"}, {"id": 910240989717127168, "id_str": "910240989717127168", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910241003680026624, "source_status_id_str": "910241003680026624", "source_user_id": 486108654, "source_user_id_str": "486108654"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111105990656, "id_str": "910976111105990656", "text": "The group chat would be a war zone https://t.co/Ms3Py23UbF", "display_text_range": [0, 34], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1005030728, "id_str": "1005030728", "name": "\u263cSol\u263c", "screen_name": "sunnnsational", "location": "Riddim island ", "url": "https://soundcloud.com/unnnshineee", "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 842, "friends_count": 347, "listed_count": 5, "favourites_count": 29899, "statuses_count": 29887, "created_at": "Tue Dec 11 22:33:03 +0000 2012", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/908386848719994880/QhfewAkl_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908386848719994880/QhfewAkl_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1005030728/1495904299", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910367790107906048, "quoted_status_id_str": "910367790107906048", "quoted_status": {"created_at": "Wed Sep 20 04:59:29 +0000 2017", "id": 910367790107906048, "id_str": "910367790107906048", "text": "Mario Kart for iMessage should be a thing", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 169774853, "id_str": "169774853", "name": "mar", "screen_name": "paperrrclip", "location": null, "url": "https://www.instagram.com/svtmar/", "description": "princess of my household", "translator_type": "none", "protected": false, "verified": false, "followers_count": 948, "friends_count": 374, "listed_count": 3, "favourites_count": 10533, "statuses_count": 24094, "created_at": "Fri Jul 23 03:50:13 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_tile": true, "profile_link_color": "F5ABB5", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "009999", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/169774853/1505354274", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 337, "reply_count": 15, "retweet_count": 7207, "favorite_count": 10459, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/Ms3Py23UbF", "expanded_url": "https://twitter.com/paperrrclip/status/910367790107906048", "display_url": "twitter.com/paperrrclip/st\u2026", "indices": [35, 58]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604662"}
{"delete": {"status": {"id": 347777947173785600, "id_str": "347777947173785600", "user_id": 184229350, "user_id_str": "184229350"}, "timestamp_ms": "1506028605059"}}
{"delete": {"status": {"id": 568552960587927553, "id_str": "568552960587927553", "user_id": 425281150, "user_id_str": "425281150"}, "timestamp_ms": "1506028605132"}}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093350402, "id_str": "910976111093350402", "text": "RT @SSWAN0221: 170920\uc18c\ub9ac\ubc14\ub2e4 \ub808\uce74 #\uc6ec\ub514 #Wendy 3p https://t.co/yfKTq4PkZ7", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 885075480994566145, "id_str": "885075480994566145", "name": "Red Velvet", "screen_name": "RVRedFlavorRV", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 13, "friends_count": 325, "listed_count": 0, "favourites_count": 1303, "statuses_count": 2039, "created_at": "Wed Jul 12 09:56:53 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pl", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904831623417487360/OaYKnGkm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904831623417487360/OaYKnGkm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/885075480994566145/1504522177", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 15:27:19 +0000 2017", "id": 910525790378278912, "id_str": "910525790378278912", "text": "170920\uc18c\ub9ac\ubc14\ub2e4 \ub808\uce74 #\uc6ec\ub514 #Wendy 3p https://t.co/yfKTq4PkZ7", "display_text_range": [0, 27], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4297284145, "id_str": "4297284145", "name": "\ud83c\udf4aSSW0221\ud83c\udf4a", "screen_name": "SSWAN0221", "location": null, "url": "http://www.youtube.com/c/ssw0221", "description": "Wendy \uc6ec\ub514", "translator_type": "none", "protected": false, "verified": false, "followers_count": 19864, "friends_count": 16, "listed_count": 629, "favourites_count": 2, "statuses_count": 730, "created_at": "Fri Nov 20 04:37:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/882112027300200448/c-3kPWKm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/882112027300200448/c-3kPWKm_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 12, "reply_count": 1, "retweet_count": 797, "favorite_count": 776, "entities": {"hashtags": [{"text": "\uc6ec\ub514", "indices": [14, 17]}, {"text": "Wendy", "indices": [18, 24]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 910525727593840641, "id_str": "910525727593840641", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}}, {"id": 910525727589638144, "id_str": "910525727589638144", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\uc6ec\ub514", "indices": [29, 32]}, {"text": "Wendy", "indices": [33, 39]}], "urls": [], "user_mentions": [{"screen_name": "SSWAN0221", "name": "\ud83c\udf4aSSW0221\ud83c\udf4a", "id": 4297284145, "id_str": "4297284145", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}]}, "extended_entities": {"media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}, {"id": 910525727593840641, "id_str": "910525727593840641", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}, {"id": 910525727589638144, "id_str": "910525727589638144", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028604659"}
{"delete": {"status": {"id": 361621742457872384, "id_str": "361621742457872384", "user_id": 488386698, "user_id_str": "488386698"}, "timestamp_ms": "1506028605661"}}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283337216, "id_str": "910976115283337216", "text": "RT @bIackpinks: nothing but respect for MY dance line https://t.co/hvHCYfVXQ0", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 309473465, "id_str": "309473465", "name": "TNT is back", "screen_name": "WHOIS_NEXTWIN", "location": null, "url": "http://ask.fm/Cherryblossom7777", "description": "hi i love everyone :) \u2764\ufe0f \u2708\ufe0f\u2708\ufe0f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1018, "friends_count": 915, "listed_count": 8, "favourites_count": 34280, "statuses_count": 106141, "created_at": "Thu Jun 02 04:28:53 +0000 2011", "utc_offset": -25200, "time_zone": "Arizona", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "40BDE6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000161950525/sogmUMbO.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000161950525/sogmUMbO.jpeg", "profile_background_tile": true, "profile_link_color": "7FACE3", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "9CBABD", "profile_text_color": "7CD5D6", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/662467364034752512/5sqhjqqN_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662467364034752512/5sqhjqqN_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309473465/1397084041", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:03:23 +0000 2017", "id": 910836856178315265, "id_str": "910836856178315265", "text": "nothing but respect for MY dance line https://t.co/hvHCYfVXQ0", "display_text_range": [0, 37], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 74573787, "id_str": "74573787", "name": "nayeon day", "screen_name": "bIackpinks", "location": "m - lh\u2122", "url": "https://curiouscat.me/Ioona", "description": "\uff65\uff9f\u2727", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4373, "friends_count": 124, "listed_count": 86, "favourites_count": 17518, "statuses_count": 11730, "created_at": "Tue Sep 15 22:21:08 +0000 2009", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "A5AEAD", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910914509316993024/GlCF21s4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910914509316993024/GlCF21s4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/74573787/1506013919", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 345, "reply_count": 18, "retweet_count": 11279, "favorite_count": 13061, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [38, 61], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [38, 61], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 11300, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/pl/kBN91HJSwAudyyrX.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/320x180/m4VwB3ET-bhMHMNj.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/640x360/52Y99VmabCir6uY3.mp4"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/1280x720/ZuAtOe5IsJ8JGqOK.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "bIackpinks", "name": "nayeon day", "id": 74573787, "id_str": "74573787", "indices": [3, 14]}], "symbols": [], "media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [54, 77], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id": 910836856178315265, "source_status_id_str": "910836856178315265", "source_user_id": 74573787, "source_user_id_str": "74573787"}]}, "extended_entities": {"media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [54, 77], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id": 910836856178315265, "source_status_id_str": "910836856178315265", "source_user_id": 74573787, "source_user_id_str": "74573787", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 11300, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/pl/kBN91HJSwAudyyrX.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/320x180/m4VwB3ET-bhMHMNj.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/640x360/52Y99VmabCir6uY3.mp4"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/1280x720/ZuAtOe5IsJ8JGqOK.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115279257600, "id_str": "910976115279257600", "text": "RT @moonbyulecom: 170920 #\ubb38\ubcc4 #\ub9c8\ub9c8\ubb34 #mamamoo @RBW_MAMAMOO \n\n\ud584\uae45\ud584\uae45 https://t.co/aJFtyygfZT", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 261160477, "id_str": "261160477", "name": "\ubcbc\ub9ac\uc758\ubc15\ub825", "screen_name": "byulkong2", "location": null, "url": null, "description": "\u203bRT\ub9ce\uc544\uc5ec\n#\ub9c8\ub9c8\ubb34_\ub098\ub85c\ub9d0\ud560\uac83\uac19\uc73c\uba74\n~\u2661", "translator_type": "none", "protected": false, "verified": false, "followers_count": 184, "friends_count": 397, "listed_count": 5, "favourites_count": 16346, "statuses_count": 17072, "created_at": "Sat Mar 05 11:03:22 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/854287028606844928/QFMwbRDQ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/854287028606844928/QFMwbRDQ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/261160477/1492747751", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:57:17 +0000 2017", "id": 910850418237779969, "id_str": "910850418237779969", "text": "170920 #\ubb38\ubcc4 #\ub9c8\ub9c8\ubb34 #mamamoo @RBW_MAMAMOO \n\n\ud584\uae45\ud584\uae45 https://t.co/aJFtyygfZT", "display_text_range": [0, 44], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 774617626001629185, "id_str": "774617626001629185", "name": "\ubb38\ubcc4 \uad00\uce21\uc18c", "screen_name": "moonbyulecom", "location": "\u1d0d\u1d0f\u1d0f\u0274\u0299\u028f\u1d1c\u029f ~\u2661", "url": "http://moonbyule.com", "description": "\ubb38\ubcc4\uc774 \uac10\uc0c1\ud558\uc790 \ud83d\udd2d", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6491, "friends_count": 4, "listed_count": 62, "favourites_count": 21, "statuses_count": 273, "created_at": "Sat Sep 10 14:36:48 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/872807155266486277/0_QZiXtL_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/872807155266486277/0_QZiXtL_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/774617626001629185/1504702527", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 0, "retweet_count": 439, "favorite_count": 560, "entities": {"hashtags": [{"text": "\ubb38\ubcc4", "indices": [7, 10]}, {"text": "\ub9c8\ub9c8\ubb34", "indices": [11, 15]}, {"text": "mamamoo", "indices": [16, 24]}], "urls": [], "user_mentions": [{"screen_name": "RBW_MAMAMOO", "name": "\ub9c8\ub9c8\ubb34(MAMAMOO)", "id": 2295631308, "id_str": "2295631308", "indices": [25, 37]}], "symbols": [], "media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}}, {"id": 910850318904074240, "id_str": "910850318904074240", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 910850326269386752, "id_str": "910850326269386752", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/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"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\ubb38\ubcc4", "indices": [25, 28]}, {"text": "\ub9c8\ub9c8\ubb34", "indices": [29, 33]}, {"text": "mamamoo", "indices": [34, 42]}], "urls": [], "user_mentions": [{"screen_name": "moonbyulecom", "name": "\ubb38\ubcc4 \uad00\uce21\uc18c", "id": 774617626001629185, "id_str": "774617626001629185", "indices": [3, 16]}, {"screen_name": "RBW_MAMAMOO", "name": "\ub9c8\ub9c8\ubb34(MAMAMOO)", "id": 2295631308, "id_str": "2295631308", "indices": [43, 55]}], "symbols": [], "media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}, "source_status_id": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}]}, "extended_entities": {"media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}, "source_status_id": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}, {"id": 910850318904074240, "id_str": "910850318904074240", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}, {"id": 910850326269386752, "id_str": "910850326269386752", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/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": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028605657"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115304316928, "id_str": "910976115304316928", "text": "RT @Braveymithra: 2\u670822\u65e5\u306f\u7af9\u5cf6\u306e\u65e5\u3000\n\u97d3\u56fd\u306b\u6b66\u529b\u306b\u3088\u3063\u3066\u4fb5\u7565\u3055\u308c\u5360\u62e0\u3055\u308c\u3001\n\u65e5\u672c\u4eba\u306f\u884c\u3051\u306a\u3044\u3051\u308c\u3069\u3000\u7af9\u5cf6\u306f\u65e5\u672c\u306e\u9818\u571f\u3067\u3059\u3002 https://t.co/WBXI5u7RX7", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2731018640, "id_str": "2731018640", "name": "\u300e\u30c7\u30b8\u304a\u3058\u3055\u3093\u300f#\u53cd\u65e5\u6f70\u3057\u3000#\u5acc\u7279\u4e9c\u4e09\u56fd", "screen_name": "dejiojisan", "location": null, "url": null, "description": "\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u3001\u30d5\u30a9\u30ed\u30fc\u30d0\u30c3\u30af\u3057\u306a\u3044\u4e8b\u304c\u6709\u308a\u307e\u3059\u3002\n\n\u904a\u3073\u3001\u30d3\u30b8\u30cd\u30b9\u76ee\u7684\u306f\u3001\u4e00\u5207\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u2757\n\n\u65e5\u672c\u56fd\u5927\u597d\u304d(^_^)v\n\u7279\u4e9c\u4e09\u56fd\u3001\u30d1\u30e8\u30af\u30fb\u30d0\u30ab\u30de\u30b9\u30b3\u30df\u5927\u5acc\u3044\ud83d\ude21\u26a1\n\n\u30d5\u30a9\u30ed\u30ef\u30fc\u306e\u7686\u69d8\u3078\u306e\u30ec\u30b9\u9045\u308c\u305f\u3089\u3054\u3081\u3093\u306a\u3055\u3044\ud83d\ude47\ud83d\udca6\ud83d\udca6", "translator_type": "none", "protected": false, "verified": false, "followers_count": 353, "friends_count": 330, "listed_count": 2, "favourites_count": 10793, "statuses_count": 10899, "created_at": "Thu Aug 14 05:54:25 +0000 2014", "utc_offset": 32400, "time_zone": "Seoul", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/610736936383221760/Sw1Ql9MA_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/610736936383221760/Sw1Ql9MA_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2731018640/1434446072", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:25:02 +0000 2017", "id": 910872502984785920, "id_str": "910872502984785920", "text": "2\u670822\u65e5\u306f\u7af9\u5cf6\u306e\u65e5\u3000\n\u97d3\u56fd\u306b\u6b66\u529b\u306b\u3088\u3063\u3066\u4fb5\u7565\u3055\u308c\u5360\u62e0\u3055\u308c\u3001\n\u65e5\u672c\u4eba\u306f\u884c\u3051\u306a\u3044\u3051\u308c\u3069\u3000\u7af9\u5cf6\u306f\u65e5\u672c\u306e\u9818\u571f\u3067\u3059\u3002 https://t.co/WBXI5u7RX7", "source": "<a href=\"http://autotweety.net\" rel=\"nofollow\">autotweety.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 189851428, "id_str": "189851428", "name": "\u3053\u3068\u308a\u3093", "screen_name": "Braveymithra", "location": "\u5175\u5eab\u770c", "url": null, "description": "\u6f2b\u753b\u3084\u4e59\u5973\u30b2\u30fc\u30e0\u304c\u5927\u597d\u304d\uff01\u6c38\u9060\u306b\uff12\uff10\u6b73\u306e\u4e59\u5973\u3067\u3059\u266a\u597d\u304d\u306a\u6f2b\u753b\u5bb6\u3055\u3093\u306f\u3001\u4ef2\u6751\u4f73\u6a39\u5148\u751f\uff06\u8fbb\u7530\u308a\u308a\u5b50\u5148\u751f\u3002\u597d\u304d\u306a\u30b2\u30fc\u30e0\u306f\u3001\u300c\u9065\u304b\u306a\u308b\u6642\u7a7a\u306e\u4e2d\u3067\u300d\u300c\u3068\u304d\u30e1\u30e2Girl's\u300d\u266a\u3000*^0^*\u3010\u30dc\u30c3\u30c8\u6a5f\u80fd\u3092\u5229\u7528\u3057\u3066\u3000\uff12\uff14\u6642\u9593\u3001\uff13\uff10\u5206\u3054\u3068\u306b\u3064\u3076\u3084\u3044\u3066\u304a\u308a\u307e\u3059\u3002\u30b3\u30d4\u30da\u62e1\u6563\u3001\u3054\u81ea\u7531\u306b\u3002\u7f72\u540d\u7121\u7528\u3067\u3059\u3002\u3011", "translator_type": "none", "protected": false, "verified": false, "followers_count": 19250, "friends_count": 13669, "listed_count": 244, "favourites_count": 30569, "statuses_count": 183584, "created_at": "Sun Sep 12 11:58:55 +0000 2010", "utc_offset": 32400, "time_zone": "Tokyo", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "89C9FA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/551323761647947776/jGFcyvYS.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/551323761647947776/jGFcyvYS.jpeg", "profile_background_tile": true, "profile_link_color": "B40B43", "profile_sidebar_border_color": "CC3366", "profile_sidebar_fill_color": "E5507E", "profile_text_color": "362720", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910129180423086080/v8XYv8jh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910129180423086080/v8XYv8jh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/189851428/1420281548", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 2, "favorite_count": 3, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "extended_entities": {"media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Braveymithra", "name": "\u3053\u3068\u308a\u3093", "id": 189851428, "id_str": "189851428", "indices": [3, 16]}], "symbols": [], "media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "extended_entities": {"media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028605663"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115304361984, "id_str": "910976115304361984", "text": "RT @Channel4News: .@LeoDiCaprio claims America is the \"only country in the world\" where there is an \"argument about climate change\". https:\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 903394921528287234, "id_str": "903394921528287234", "name": "Jonah Rogen", "screen_name": "RogenJonah23", "location": "California, USA", "url": "http://wereallimmigrants.com", "description": "Be kind.Be yourself. Smile even through hard times. Treat eachother equally. Recycle. Stand up for what you believe in. Grow. & Go travel the world \ud83c\udf3b\ud83e\udd8b\ud83d\udd49\u2640\ufe0f\u2642\ufe0f\u262e\u269b", "translator_type": "none", "protected": false, "verified": false, "followers_count": 61, "friends_count": 231, "listed_count": 0, "favourites_count": 1342, "statuses_count": 772, "created_at": "Thu Aug 31 23:11:48 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904515815134838786/ydtzihEI_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904515815134838786/ydtzihEI_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/903394921528287234/1504481980", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 11:18:16 +0000 2017", "id": 910463112414973952, "id_str": "910463112414973952", "text": ".@LeoDiCaprio claims America is the \"only country in the world\" where there is an \"argument about climate change\". https://t.co/0xAiDAkmQd", "display_text_range": [0, 114], "source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Media Studio</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_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": null, "url": "http://www.channel4.com/news", "description": "Stories that reveal and inspire, challenging expectations.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 1773552, "friends_count": 4587, "listed_count": 8677, "favourites_count": 457, "statuses_count": 85496, "created_at": "Mon Apr 28 14:29:37 +0000 2008", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "2C1C36", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/648955077240164352/qBTtGdoJ.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/648955077240164352/qBTtGdoJ.png", "profile_background_tile": false, "profile_link_color": "421174", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FAF0F6", "profile_text_color": "333333", "profile_use_background_image": true, "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/1464103587", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 58, "reply_count": 97, "retweet_count": 396, "favorite_count": 719, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LeoDiCaprio", "name": "Leonardo DiCaprio", "id": 133880286, "id_str": "133880286", "indices": [1, 13]}], "symbols": [], "media": [{"id": 910462490718457856, "id_str": "910462490718457856", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "media_url_https": "https://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "url": "https://t.co/0xAiDAkmQd", "display_url": "pic.twitter.com/0xAiDAkmQd", "expanded_url": "https://twitter.com/Channel4News/status/910463112414973952/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}, "medium": {"w": 720, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910462490718457856, "id_str": "910462490718457856", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "media_url_https": "https://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "url": "https://t.co/0xAiDAkmQd", "display_url": "pic.twitter.com/0xAiDAkmQd", "expanded_url": "https://twitter.com/Channel4News/status/910463112414973952/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}, "medium": {"w": 720, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 65440, "variants": [{"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/910462490718457856/vid/720x720/tPNWxj-So6-2VH5F.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/amplify_video/910462490718457856/pl/-RLMEGJrXA77Fito.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/910462490718457856/vid/240x240/J8vVIkJwdxW6W25b.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/910462490718457856/vid/480x480/2qnupCyDRkJHXQvT.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Channel4News", "name": "Channel 4 News", "id": 14569869, "id_str": "14569869", "indices": [3, 16]}, {"screen_name": "LeoDiCaprio", "name": "Leonardo DiCaprio", "id": 133880286, "id_str": "133880286", "indices": [19, 31]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605663"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283443712, "id_str": "910976115283443712", "text": "RT @ulinyusron: Pilu kelu \ud83d\ude2d https://t.co/z5ryMM6kWV", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 74112590, "id_str": "74112590", "name": "OmenShinchan", "screen_name": "Oomenchan", "location": null, "url": null, "description": "Pahlawan Bertopeng Hahahaha", "translator_type": "none", "protected": false, "verified": false, "followers_count": 304, "friends_count": 32, "listed_count": 4, "favourites_count": 756, "statuses_count": 20941, "created_at": "Mon Sep 14 08:51:09 +0000 2009", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FF0033", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000153270636/J6NGOGPg.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000153270636/J6NGOGPg.jpeg", "profile_background_tile": true, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "F6FFD1", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/868863810702004224/uPfigTvh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/868863810702004224/uPfigTvh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/74112590/1495988228", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:53:22 +0000 2017", "id": 910849433280978944, "id_str": "910849433280978944", "text": "Pilu kelu \ud83d\ude2d https://t.co/z5ryMM6kWV", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 49889849, "id_str": "49889849", "name": "Ulin Yusron", "screen_name": "ulinyusron", "location": "Enam indera", "url": "http://ulinyusron.blogspot.com", "description": "Pemburu senja. Pencuri malam. Penculik fajar. Pengempas terik. Pencari pelangi. IG: @ulinyusron #MelawanLupa #Bunga #Sajak140 [Apa adanya itu luar biasa]", "translator_type": "none", "protected": false, "verified": true, "followers_count": 104136, "friends_count": 979, "listed_count": 252, "favourites_count": 415, "statuses_count": 89912, "created_at": "Tue Jun 23 04:57:48 +0000 2009", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/87144878/kriwil.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/87144878/kriwil.jpg", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/731528849402400768/9MwyziXe_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731528849402400768/9MwyziXe_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/49889849/1380387195", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 4, "reply_count": 3, "retweet_count": 15, "favorite_count": 10, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z5ryMM6kWV", "expanded_url": "https://news.detik.com/read/2017/09/21/152936/3652793/10/kisah-tragis-ibu-gendong-bayinya-yang-baru-meninggal-dengan-angkot", "display_url": "news.detik.com/read/2017/09/2\u2026", "indices": [12, 35]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z5ryMM6kWV", "expanded_url": "https://news.detik.com/read/2017/09/21/152936/3652793/10/kisah-tragis-ibu-gendong-bayinya-yang-baru-meninggal-dengan-angkot", "display_url": "news.detik.com/read/2017/09/2\u2026", "indices": [28, 51]}], "user_mentions": [{"screen_name": "ulinyusron", "name": "Ulin Yusron", "id": 49889849, "id_str": "49889849", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312750592, "id_str": "910976115312750592", "text": "RT @BTS_twt: \ud83e\udd18 \ub0b4\uc77c\ubd10\uc694 \ud83d\ude18 https://t.co/icCZZ7Q9Ys", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 856548396911345664, "id_str": "856548396911345664", "name": "\uc11c \uc724", "screen_name": "m_kook_min", "location": "\uff0b\uff18\uff11\uff1a\uff10\uff11army", "url": null, "description": "\u514e\u30ca\u30f3\u30d0\uff11\u3067\u3059\u3002\uff08\uff1a\u9577\u7537\u3068\u96db\u3082\u63a8\u3057\u3066\u307e\u3059\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2, "friends_count": 64, "listed_count": 1, "favourites_count": 1294, "statuses_count": 1250, "created_at": "Mon Apr 24 16:40:26 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/896746771812040705/O5FJtW-G_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896746771812040705/O5FJtW-G_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/856548396911345664/1501418153", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:43:44 +0000 2017", "id": 910877209757310976, "id_str": "910877209757310976", "text": "\ud83e\udd18 \ub0b4\uc77c\ubd10\uc694 \ud83d\ude18 https://t.co/icCZZ7Q9Ys", "display_text_range": [0, 8], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 335141638, "id_str": "335141638", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "screen_name": "BTS_twt", "location": null, "url": "http://btsblog.ibighit.com", "description": "Hi~ we are BTS!", "translator_type": "regular", "protected": false, "verified": true, "followers_count": 8462886, "friends_count": 98, "listed_count": 19367, "favourites_count": 60, "statuses_count": 10126, "created_at": "Thu Jul 14 06:32:56 +0000 2011", "utc_offset": 28800, "time_zone": "Irkutsk", "geo_enabled": true, "lang": "ko", "contributors_enabled": false, "is_translator": 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_link_color": "FF0000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/335141638/1504796451", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 13090, "reply_count": 28576, "retweet_count": 148242, "favorite_count": 317283, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}, {"id": 910877193554628608, "id_str": "910877193554628608", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}}}, {"id": 910877193571418112, "id_str": "910877193571418112", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "extended_entities": {"media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}, {"id": 910877193554628608, "id_str": "910877193554628608", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}, {"id": 910877193571418112, "id_str": "910877193571418112", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115317067777, "id_str": "910976115317067777", "text": "3-4 This is the safe, responsible, and humanitarian approach.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3023125087, "id_str": "3023125087", "name": "Georges-michel", "screen_name": "GmJamra", "location": "Greenville, SC, USA", "url": null, "description": "dum spiro spero", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6, "friends_count": 35, "listed_count": 0, "favourites_count": 383, "statuses_count": 338, "created_at": "Tue Feb 17 00:47:00 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/906194484421152769/6JwOxvxT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906194484421152769/6JwOxvxT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3023125087/1504888553", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605666"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312693248, "id_str": "910976115312693248", "text": "RT @lina1616m: #\u304a\u3084\u3059\u307f\u306a\u3055\u3044 \ud83c\udf19\ud83d\udc30\ud83d\udc95 https://t.co/JhaPOZSkyH", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 784979849991467008, "id_str": "784979849991467008", "name": "\u304a\u304b\u3074\u3087\u3093", "screen_name": "hcikNXh5xeUEgRV", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 103, "friends_count": 152, "listed_count": 0, "favourites_count": 9939, "statuses_count": 5228, "created_at": "Sun Oct 09 04:52:35 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/861084743504338946/x5OU82UF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/861084743504338946/x5OU82UF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/784979849991467008/1492310461", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:41:42 +0000 2017", "id": 910876695623643139, "id_str": "910876695623643139", "text": "#\u304a\u3084\u3059\u307f\u306a\u3055\u3044 \ud83c\udf19\ud83d\udc30\ud83d\udc95 https://t.co/JhaPOZSkyH", "display_text_range": [0, 12], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 735119217184243712, "id_str": "735119217184243712", "name": "\u5317\u6797 \u5229\u5948 \ud83c\udf6d Candycoco", "screen_name": "lina1616m", "location": "team \u304d\u305f\u308a\u306a", "url": "http://hybridbank.net", "description": "HYBRID BANK\u6240\u5c5e\u2665( @Candycoco0328 )\u30e1\u30f3\u30d0\u30fc\u2665\u5e73\u621028\u5e74\u5ea6\u5929\u795e\u5929\u6e80\u82b1\u5a18\u2665\u304d\u3085\u3093\u30c9\u30e9 65\u8a71\u4e3b\u6f14\u2665\u30af\u30ed\u30b9\u30b0\u30eb\u30fc\u30d7\u30a4\u30e1\u30fc\u30b8\u30ac\u30fc\u30eb\u2665\u30a2\u30df\u30b9\u30bf\u64ae\u5f71\u4f1a\u2665\u30c6\u30ec\u30d3\uff62\u30d3\u30fc\u30d0\u30c3\u30d7\uff01\u30cf\u30a4\u30d2\u30fc\u30eb\uff63\u2665TV\u30b7\u30e7\u30c3\u30d4\u30f3\u30b0\u51fa\u6f14\u2665\u30dd\u30c3\u30d7\u30ea\u30fc\u30c9\u8868\u7d19\u2665\u30a2\u30b8\u30a2\u30ac\u30fc\u30eb\u30ba\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u51fa\u6f14\u2665\u30a8\u30cb\u30b7\u30e2\u64ae\u5f71\u4f1a\u2665\u7f8e\u30de\u30fc\u30b8\u30e5\u64ae\u5f71\u4f1a", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4051, "friends_count": 4510, "listed_count": 18, "favourites_count": 28736, "statuses_count": 2871, "created_at": "Tue May 24 14:44:14 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900995125555351552/owi6dV-N_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900995125555351552/owi6dV-N_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/735119217184243712/1490336112", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 11, "retweet_count": 1, "favorite_count": 22, "entities": {"hashtags": [{"text": "\u304a\u3084\u3059\u307f\u306a\u3055\u3044", "indices": [0, 8]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\u304a\u3084\u3059\u307f\u306a\u3055\u3044", "indices": [15, 23]}], "urls": [], "user_mentions": [{"screen_name": "lina1616m", "name": "\u5317\u6797 \u5229\u5948 \ud83c\udf6d Candycoco", "id": 735119217184243712, "id_str": "735119217184243712", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}, "source_status_id": 910876695623643139, "source_status_id_str": "910876695623643139", "source_user_id": 735119217184243712, "source_user_id_str": "735119217184243712"}]}, "extended_entities": {"media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}, "source_status_id": 910876695623643139, "source_status_id_str": "910876695623643139", "source_user_id": 735119217184243712, "source_user_id_str": "735119217184243712"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283333120, "id_str": "910976115283333120", "text": "https://t.co/mCmhhWqp\u25a0\u304a\u3082\u3057\u308d\u30b5\u30c3\u30ab\u30fcSEO\uff01 https://t.co/6nU4nnwh5V ##football #soccer #\u30b5\u30c3\u30ab\u30fc #\u30d5\u30c3\u30c8\u30dc\u30fc\u30eb", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 596259174, "id_str": "596259174", "name": "omoshiro_socce1", "screen_name": "omoshiro_socce1", "location": null, "url": "http://ameblo.jp/arzentin/", "description": "\u304a\u3082\u3057\u308d\u3044\u30b5\u30c3\u30ab\u30fc\u306e\u30cb\u30e5\u30fc\u30b9\u30fb\u52d5\u753b\u30fb\u60c5\u5831\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\r\n\u3010\u30d6\u30ed\u30b0\u3011\u304a\u3082\u3057\u308d\u30b5\u30c3\u30ab\u30fcSEO\uff01\r\nhttp://ameblo.jp/arzentin/", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1147, "friends_count": 2543, "listed_count": 110, "favourites_count": 0, "statuses_count": 86918, "created_at": "Fri Jun 01 06:14:14 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/829901064015011841/OcIhmXEo_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/829901064015011841/OcIhmXEo_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "football", "indices": [60, 69]}, {"text": "soccer", "indices": [70, 77]}, {"text": "\u30b5\u30c3\u30ab\u30fc", "indices": [78, 83]}, {"text": "\u30d5\u30c3\u30c8\u30dc\u30fc\u30eb", "indices": [84, 91]}], "urls": [{"url": "https://t.co/6nU4nnwh5V", "expanded_url": "http://ameblo.jp/arzentin/", "display_url": "ameblo.jp/arzentin/", "indices": [35, 58]}], "user_mentions": [], "symbols": [], "media": [{"id": 263105329473130496, "id_str": "263105329473130496", "indices": [0, 21], "media_url": "http://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "media_url_https": "https://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "url": "https://t.co/mCmhhWqp", "display_url": "pic.twitter.com/mCmhhWqp", "expanded_url": "http://twitter.com/omoshiro_socce1/status/263105329468936192/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"}}, "source_status_id": 263105329468936192, "source_status_id_str": "263105329468936192", "source_user_id": 596259174, "source_user_id_str": "596259174"}]}, "extended_entities": {"media": [{"id": 263105329473130496, "id_str": "263105329473130496", "indices": [0, 21], "media_url": "http://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "media_url_https": "https://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "url": "https://t.co/mCmhhWqp", "display_url": "pic.twitter.com/mCmhhWqp", "expanded_url": "http://twitter.com/omoshiro_socce1/status/263105329468936192/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"}}, "source_status_id": 263105329468936192, "source_status_id_str": "263105329468936192", "source_user_id": 596259174, "source_user_id_str": "596259174"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115279323148, "id_str": "910976115279323148", "text": "@MdinzzHammer \u0645\u0627 \u062f\u0644\u064a\u0643 \u0627\u0646\u062a \u0627\u0646 \u0647\u0630\u0627 \u0644\u0646 \u064a\u062d\u0635\u0644", "display_text_range": [14, 40], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975753562591234, "in_reply_to_status_id_str": "910975753562591234", "in_reply_to_user_id": 778603320252440576, "in_reply_to_user_id_str": "778603320252440576", "in_reply_to_screen_name": "MdinzzHammer", "user": {"id": 893649853556961280, "id_str": "893649853556961280", "name": "\u0640\u0623\u0646\u0640\u0640\u0640\u0648\u0631 \u0627\u0644\u0640\u0640 \u0635\u0640\u0627\u0626\u0640\u063a", "screen_name": "SaiqhAl", "location": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", "url": null, "description": "\u0623\u062b\u0642\u0644 \u0645\u0648\u0627\u0632\u064a\u0646 \u2696 \u0627\u0644\u0639\u0631\u0628 \u062d\u0643\u0645\u0629 ,\u0627\u0644\u0635\u0645\u062a", "translator_type": "none", "protected": false, "verified": false, "followers_count": 65, "friends_count": 188, "listed_count": 0, "favourites_count": 936, "statuses_count": 1137, "created_at": "Sat Aug 05 01:48:23 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907341365792661505/H1wlmsB3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907341365792661505/H1wlmsB3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/893649853556961280/1503441852", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "MdinzzHammer", "name": "\u0627\u0644\u062d\u064a\u0627\u0629 \u062a\u0641\u0627\u0624\u0644", "id": 778603320252440576, "id_str": "778603320252440576", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028605657"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115296161799, "id_str": "910976115296161799", "text": "Bunda da camila \ud83d\ude08", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4882988475, "id_str": "4882988475", "name": "+Paula soares pessan", "screen_name": "pauletebenjamim", "location": "Maca\u00e9, Brasil", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 662, "friends_count": 778, "listed_count": 4, "favourites_count": 55738, "statuses_count": 57180, "created_at": "Sat Feb 06 21:13:46 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/899475893101506560/p5IXypra_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/899475893101506560/p5IXypra_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4882988475/1500483068", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028605661"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115316989954, "id_str": "910976115316989954", "text": "\u30d4\u30a2\u30b9\u8907\u6570\u3042\u3051\u3066\u304b\u3089\u3044\u304d\u306a\u308a\u8033\u3092\u660e\u3089\u304b\u306b\u610f\u56f3\u3057\u3066\u3046\u3064\u3057\u3060\u3059\u81ea\u79f0\u534d\u304cTL\u306b\u73fe\u308c\u305f\u304b", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 886549510909943808, "id_str": "886549510909943808", "name": "\ud83c\udf05", "screen_name": "AsaHi_hINan", "location": "\u3053\u3053\u306b\u5f7c\u5973\u306e\u540d\u524d\u66f8\u304f\u3093\u3060\u308d\uff1f\u6c0f\u306d", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 44, "friends_count": 19, "listed_count": 1, "favourites_count": 9142, "statuses_count": 2028, "created_at": "Sun Jul 16 11:34:09 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907672449314992128/A5CaGJfC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907672449314992128/A5CaGJfC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/886549510909943808/1502166688", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028605666"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115317100545, "id_str": "910976115317100545", "text": "I liked a @YouTube video https://t.co/ypftvWnPkL Dear YouTube, you're killing me (wasn't going to post this..)", "source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1902317840, "id_str": "1902317840", "name": "Larry Holiday", "screen_name": "AwesomePanda223", "location": "Houston, TX", "url": null, "description": "Living in a single life. Play Video Games, Going to concerts and Ride longboard. love to Watch YouTube every single day \ud83d\udc80\ud83d\ude0e", "translator_type": "none", "protected": false, "verified": false, "followers_count": 600, "friends_count": 2052, "listed_count": 1, "favourites_count": 2288, "statuses_count": 2615, "created_at": "Wed Sep 25 00:45:26 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/845898813776769026/wjYQrMZL_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/845898813776769026/wjYQrMZL_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1902317840/1468561555", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/ypftvWnPkL", "expanded_url": "http://youtu.be/54zHdmArtPA?a", "display_url": "youtu.be/54zHdmArtPA?a", "indices": [25, 48]}], "user_mentions": [{"screen_name": "YouTube", "name": "YouTube", "id": 10228272, "id_str": "10228272", "indices": [10, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605666"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283578880, "id_str": "910976115283578880", "text": "RT @MamieSarko: Arrestation d'un gang de cambrioleurs roumains qui \u00e9cumait la France enti\u00e8re https://t.co/mUlffvicCC", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 493425739, "id_str": "493425739", "name": "Natalie", "screen_name": "nathchouchou", "location": null, "url": null, "description": "#MerciNS                                                                     Si au d\u00e9but tu ne r\u00e9ussis pas, ris jusqu'\u00e0 ce que tu le fasses.......", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2062, "friends_count": 2654, "listed_count": 59, "favourites_count": 1033, "statuses_count": 27894, "created_at": "Wed Feb 15 19:52:19 +0000 2012", "utc_offset": 7200, "time_zone": "Paris", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/3564455930/0247de8f26d6057babac49f58c686946_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3564455930/0247de8f26d6057babac49f58c686946_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/493425739/1362346023", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 17:18:02 +0000 2017", "id": 910916041315946496, "id_str": "910916041315946496", "text": "Arrestation d'un gang de cambrioleurs roumains qui \u00e9cumait la France enti\u00e8re https://t.co/mUlffvicCC", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2185059702, "id_str": "2185059702", "name": "Mamie Droite LR \u2721", "screen_name": "MamieSarko", "location": null, "url": null, "description": "R\u00e9solument de Droite d\u00e9complex\u00e9e,j'ai soutenu Sarko puis Fillon  mais suis d\u00e9\u00e7ue par leur appel en faveur de Macron. Lib\u00e9rale, ath\u00e9e. Je combats l'antis\u00e9mitisme", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2349, "friends_count": 1136, "listed_count": 85, "favourites_count": 13109, "statuses_count": 37669, "created_at": "Sat Nov 09 21:17:24 +0000 2013", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": false, "lang": "fr", "contributors_enabled": false, "is_translator": 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_link_color": "1B95E0", "profile_sidebar_border_color": "5ED4DC", "profile_sidebar_fill_color": "95E8EC", "profile_text_color": "3C3940", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000717804150/d7a73fb0f8ebc38d163de0f37a444fa1_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000717804150/d7a73fb0f8ebc38d163de0f37a444fa1_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2185059702/1493737041", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 2, "favorite_count": 1, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/mUlffvicCC", "expanded_url": "http://www.midilibre.fr//2017/09/21/arrestation-d-un-gang-de-cambrioleurs-roumains-qui-ecumait-la-france-entiere,1564231.php", "display_url": "midilibre.fr//2017/09/21/ar\u2026", "indices": [77, 100]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/mUlffvicCC", "expanded_url": "http://www.midilibre.fr//2017/09/21/arrestation-d-un-gang-de-cambrioleurs-roumains-qui-ecumait-la-france-entiere,1564231.php", "display_url": "midilibre.fr//2017/09/21/ar\u2026", "indices": [93, 116]}], "user_mentions": [{"screen_name": "MamieSarko", "name": "Mamie Droite LR \u2721", "id": 2185059702, "id_str": "2185059702", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312877568, "id_str": "910976115312877568", "text": "RT @cartolafc: Grohe; Ed\u00edlson/L.Moura, Bressan/Geromel, Kannemann e Cortez; Michel, Cristian/Arthur, Ramiro/Arroyo -&gt; ataque no pr\u00f3ximo twe\u2026", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 774320841454682113, "id_str": "774320841454682113", "name": "Jonah White", "screen_name": "JonahWhite30", "location": "Brasil", "url": null, "description": "Escritor, Cartoleiro e torcedor do maior time do sul, o @Gremio! \n\ud83d\ude0e\ud83c\udfa9\ud83d\udc4c", "translator_type": "none", "protected": false, "verified": false, "followers_count": 50, "friends_count": 20, "listed_count": 2, "favourites_count": 9988, "statuses_count": 11469, "created_at": "Fri Sep 09 18:57:29 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "000000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/811114327788949504/UuuaqLBv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/811114327788949504/UuuaqLBv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/774320841454682113/1482220854", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:02:44 +0000 2017", "id": 910972585931939840, "id_str": "910972585931939840", "text": "Grohe; Ed\u00edlson/L.Moura, Bressan/Geromel, Kannemann e Cortez; Michel, Cristian/Arthur, Ramiro/Arroyo -&gt; ataque no pr\u00f3ximo tweet", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 10075202, "id_str": "10075202", "name": "Cartola FC", "screen_name": "cartolafc", "location": "Brazil", "url": "http://www.cartolafc.com.br", "description": "Twitter do Fantasy Game Oficial do Campeonato Brasileiro", "translator_type": "none", "protected": false, "verified": true, "followers_count": 415061, "friends_count": 261, "listed_count": 1413, "favourites_count": 387, "statuses_count": 8981, "created_at": "Thu Nov 08 19:00:48 +0000 2007", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451754467235336192/yKSlZch1.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451754467235336192/yKSlZch1.jpeg", "profile_background_tile": false, "profile_link_color": "FA743E", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "8C8C8C", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/863871091885973506/hZPSBFPy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/863871091885973506/hZPSBFPy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/10075202/1494797690", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 3, "retweet_count": 3, "favorite_count": 41, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "cartolafc", "name": "Cartola FC", "id": 10075202, "id_str": "10075202", "indices": [3, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312857088, "id_str": "910976115312857088", "text": "\u0418\u0434\u0438\u043e\u0442\u0438\u0442\u0435 \u043d\u0430 \u0421\u0438\u0442\u0435\u043b \u0441\u0435\u043a\u043e\u0458 \u0434\u0435\u043d \u0441\u0435 \u0437\u0430\u043a\u0430\u043d\u0443\u0432\u0430\u0430\u0442 \u0441\u043e \u0431\u043e\u043b\u0435\u0441\u0442\u0438 \u0432\u043e \u0432\u0435\u0441\u0442\u0438\u0442\u0435", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 176713401, "id_str": "176713401", "name": "\u0421\u043b\u0430\u0442\u043a\u0430\u0440 \u0411\u0430\u0432\u0447\u043e\u0432", "screen_name": "ABavcov", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 3096, "friends_count": 975, "listed_count": 37, "favourites_count": 25001, "statuses_count": 58084, "created_at": "Tue Aug 10 06:58:41 +0000 2010", "utc_offset": 7200, "time_zone": "Skopje", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/874258830/3f4db122fd8f3cfe6be2c1003aa30d41.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/874258830/3f4db122fd8f3cfe6be2c1003aa30d41.jpeg", "profile_background_tile": false, "profile_link_color": "2544C2", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "060A00", "profile_text_color": "618238", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/889232574110982144/W3cTv1-z_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/889232574110982144/W3cTv1-z_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/176713401/1394104131", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "bg", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115300356096, "id_str": "910976115300356096", "text": "RT @DPresidencia: #EnDesarrollo|| @NestorRevero: Las armas destruidas pasan a ser material de construcci\u00f3n en la #GMV\u2026 ", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 138117720, "id_str": "138117720", "name": "Jose D \u262d PSUV", "screen_name": "ElChe1985Psuv", "location": "Venezuela", "url": "http://CHAVISTARADICAL.COM", "description": "MI PRIMER PARTIDO MVR200 REVOLUCIONARIO CHAVISTA CON MADURO FFM MI VIDA POR LA PATRIA Y LA REVOLUCIONA Y LA NECESIDAD DE DEFENDER CUIDAR LA PATRIA LA REVOLUCI\u00d3N", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2232, "friends_count": 4295, "listed_count": 6, "favourites_count": 3058, "statuses_count": 199965, "created_at": "Wed Apr 28 17:29:55 +0000 2010", "utc_offset": -14400, "time_zone": "Caracas", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F50A0A", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/601902948/quktih3et0hmg1e0iivz.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/601902948/quktih3et0hmg1e0iivz.jpeg", "profile_background_tile": true, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/893856370126147584/QggtYUmF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/893856370126147584/QggtYUmF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/138117720/1501944460", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:59:29 +0000 2017", "id": 910941570077257734, "id_str": "910941570077257734", "text": "#EnDesarrollo|| @NestorRevero: Las armas destruidas pasan a ser material de construcci\u00f3n en la #GMV\u2026 https://t.co/JPccpxthAr", "display_text_range": [0, 140], "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Lite</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2344032998, "id_str": "2344032998", "name": "Despacho Presidencia", "screen_name": "DPresidencia", "location": "Caracas-Venezuela", "url": "http://www.presidencia.gob.ve", "description": "Ministerio del Poder Popular del Despacho de la Presidencia y Seguimiento de la Gesti\u00f3n de Gobierno. Palacio de Miraflores. Ministro: MG.Carlos Osorio", "translator_type": "none", "protected": false, "verified": false, "followers_count": 228014, "friends_count": 564, "listed_count": 466, "favourites_count": 4370, "statuses_count": 68152, "created_at": "Fri Feb 14 19:44:43 +0000 2014", "utc_offset": -10800, "time_zone": "Santiago", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/598547151052898305/Eosf9iKQ.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/598547151052898305/Eosf9iKQ.png", "profile_background_tile": true, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/756286863535706113/nAWOCIIW_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/756286863535706113/nAWOCIIW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2344032998/1484855926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "#EnDesarrollo|| @NestorRevero: Las armas destruidas pasan a ser material de construcci\u00f3n en la #GMV #VenezuelaDefiendeLaPaz https://t.co/yITppoRHkV", "display_text_range": [0, 123], "entities": {"hashtags": [{"text": "EnDesarrollo", "indices": [0, 13]}, {"text": "GMV", "indices": [95, 99]}, {"text": "VenezuelaDefiendeLaPaz", "indices": [100, 123]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910941563815112705, "id_str": "910941563815112705", "indices": [124, 147], "media_url": "http://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "url": "https://t.co/yITppoRHkV", "display_url": "pic.twitter.com/yITppoRHkV", "expanded_url": "https://twitter.com/DPresidencia/status/910941570077257734/photo/1", "type": "photo", "sizes": {"medium": {"w": 680, "h": 408, "resize": "fit"}, "small": {"w": 680, "h": 408, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 680, "h": 408, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910941563815112705, "id_str": "910941563815112705", "indices": [124, 147], "media_url": "http://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "url": "https://t.co/yITppoRHkV", "display_url": "pic.twitter.com/yITppoRHkV", "expanded_url": "https://twitter.com/DPresidencia/status/910941570077257734/photo/1", "type": "photo", "sizes": {"medium": {"w": 680, "h": 408, "resize": "fit"}, "small": {"w": 680, "h": 408, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 680, "h": 408, "resize": "fit"}}}]}}, "quote_count": 1, "reply_count": 0, "retweet_count": 16, "favorite_count": 7, "entities": {"hashtags": [{"text": "EnDesarrollo", "indices": [0, 13]}, {"text": "GMV", "indices": [95, 99]}], "urls": [{"url": "https://t.co/JPccpxthAr", "expanded_url": "https://twitter.com/i/web/status/910941570077257734", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [101, 124]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "EnDesarrollo", "indices": [18, 31]}], "urls": [], "user_mentions": [{"screen_name": "DPresidencia", "name": "Despacho Presidencia", "id": 2344032998, "id_str": "2344032998", "indices": [3, 16]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028605662"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115287699457, "id_str": "910976115287699457", "text": "S\u00f3 q t\u00f4 pensando em voltar dnv . Aqui eu fico muito sozinha", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3234365634, "id_str": "3234365634", "name": "Magrinha \u2764 #STVP04", "screen_name": "maaiiaraLooca", "location": "na puta que pariu", "url": null, "description": "PROMOTER \u2764\ud83c\udf7b\n   Lara \ud83d\udc96 Eduardo Eterno \ud83d\udc7c Rafael Eterno \ud83d\udc7c Phelipe \ud83d\udc96 Maria Victoria minha Anja \ud83d\udc7c  \u2764\ufe0f Ana Caroline \u2764", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2471, "friends_count": 1934, "listed_count": 6, "favourites_count": 24773, "statuses_count": 49529, "created_at": "Wed Jun 03 00:22:31 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/908593594788966400/ylovhubv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908593594788966400/ylovhubv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3234365634/1503522198", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028605659"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115287707648, "id_str": "910976115287707648", "text": "To vendo que vou me dar super mal nessa prova amanh\u00e3 \ud83d\ude25", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4878419775, "id_str": "4878419775", "name": "Karen Ketley", "screen_name": "KarenKetley2", "location": "Brasil", "url": null, "description": "' Por onde for, flores\u00e7a \ud83c\udf38\u2764\ud83d\udcad '", "translator_type": "none", "protected": false, "verified": false, "followers_count": 91, "friends_count": 366, "listed_count": 0, "favourites_count": 1424, "statuses_count": 141, "created_at": "Fri Feb 05 19:01:25 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/902630314383515648/ero5rdMq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/902630314383515648/ero5rdMq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4878419775/1500728923", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028605659"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115308679168, "id_str": "910976115308679168", "text": "RT @jason_howerton: US Amb. to UN Nikki Haley claims world leaders appreciated how blunt and straightforward he was in that fiery UN sp\u2026 ", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 52441523, "id_str": "52441523", "name": "Renee Thornton", "screen_name": "rendcc", "location": "Missouri", "url": null, "description": "Wife, mother, christian & conservative: SPN, Jensen&Danneel, Dominion, mma fan,books, movies, music of all genres. Reagan fav president; \u2661 vets!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1832, "friends_count": 2489, "listed_count": 160, "favourites_count": 83404, "statuses_count": 109294, "created_at": "Tue Jun 30 16:30:30 +0000 2009", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": 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_link_color": "043547", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/749005140858925056/Ny1OyaVg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/749005140858925056/Ny1OyaVg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/52441523/1457544689", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:39:34 +0000 2017", "id": 910966757917102080, "id_str": "910966757917102080", "text": "US Amb. to UN Nikki Haley claims world leaders appreciated how blunt and straightforward he was in that fiery UN sp\u2026 https://t.co/0JBtkKhQXk", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 152145921, "id_str": "152145921", "name": "Jason Howerton", "screen_name": "jason_howerton", "location": "Dallas, TX", "url": "http://ijr.com/", "description": "Senior editor creating content to take over the internet at @TheIJR. Please be offended. Texas 'till I die. Send me tips: jason@ijr.com", "translator_type": "none", "protected": false, "verified": true, "followers_count": 16192, "friends_count": 3791, "listed_count": 425, "favourites_count": 9166, "statuses_count": 57278, "created_at": "Sat Jun 05 05:36:24 +0000 2010", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "709397", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/715607764/8a4bffc45a8e045957fea50d23a4cf9f.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/715607764/8a4bffc45a8e045957fea50d23a4cf9f.jpeg", "profile_background_tile": false, "profile_link_color": "FF3300", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "A0C5C7", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908445554203611142/CYSTlAzs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908445554203611142/CYSTlAzs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/152145921/1460826250", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "US Amb. to UN Nikki Haley claims world leaders appreciated how blunt and straightforward he was in that fiery UN speech https://t.co/xN0UbSrFFk", "display_text_range": [0, 119], "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910966628614938624, "id_str": "910966628614938624", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "url": "https://t.co/xN0UbSrFFk", "display_url": "pic.twitter.com/xN0UbSrFFk", "expanded_url": "https://twitter.com/jason_howerton/status/910966757917102080/photo/1", "type": "photo", "sizes": {"medium": {"w": 1092, "h": 580, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1092, "h": 580, "resize": "fit"}, "small": {"w": 680, "h": 361, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910966628614938624, "id_str": "910966628614938624", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "url": "https://t.co/xN0UbSrFFk", "display_url": "pic.twitter.com/xN0UbSrFFk", "expanded_url": "https://twitter.com/jason_howerton/status/910966757917102080/photo/1", "type": "photo", "sizes": {"medium": {"w": 1092, "h": 580, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1092, "h": 580, "resize": "fit"}, "small": {"w": 680, "h": 361, "resize": "fit"}}}]}}, "quote_count": 1, "reply_count": 0, "retweet_count": 5, "favorite_count": 6, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/0JBtkKhQXk", "expanded_url": "https://twitter.com/i/web/status/910966757917102080", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "jason_howerton", "name": "Jason Howerton", "id": 152145921, "id_str": "152145921", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605664"}
{"hangup": true, "heartbeat_timeout": true}

In [28]:
# We use the file saved from last step as example
tweets_filename = 'twitter_100.txt'
tweets_file = open(tweets_filename, "r")

for line in tweets_file:
    try:
        # Read in one line of the file, convert it into a json object 
        tweet = json.loads(line.strip())
        if 'text' in tweet: # only messages contains 'text' field is a tweet
            print(tweet['id']) # This is the tweet's id
            print(tweet['created_at'])# when the tweet posted
            print(tweet['text']) # content of the tweet
                        
            print(tweet['user']['id']) # id of the user who posted the tweet
            print(tweet['user']['name']) # name of the user, e.g. "Wei Xu"
            print(tweet['user']['screen_name']) # name of the user account, e.g. "cocoweixu"

            hashtags = []
            for hashtag in tweet['entities']['hashtags']:
                hashtags.append(hashtag['text'])
            print(hashtags)

    except:
        # read in a line is not in JSON format (sometimes error occured)
        continue


  File "<ipython-input-28-7ceaead33cb1>", line 10
    print tweet['id'] # This is the tweet's id
              ^
SyntaxError: Missing parentheses in call to 'print'

In [ ]: