diff --git a/Positive Tweets.png b/Positive Tweets.png
new file mode 100644
index 0000000..aaf6069
Binary files /dev/null and b/Positive Tweets.png differ
diff --git a/all tweets.png b/all tweets.png
new file mode 100644
index 0000000..0f2d257
Binary files /dev/null and b/all tweets.png differ
diff --git a/io_geojson.py b/io_geojson.py
new file mode 100644
index 0000000..3203a16
--- /dev/null
+++ b/io_geojson.py
@@ -0,0 +1,127 @@
+import json
+import random
+
+def read_tweet_json(input_file):
+ """
+ Read a tweet json file
+
+ Parameters
+ ----------
+ input_file : str
+ The PATH to the data to be read
+
+ Returns
+ -------
+ gj : dict
+ An in memory version of the geojson
+ """
+ with open(input_file, 'r') as fp:
+ tweets = json.loads(fp.read())
+ return tweets
+
+
+def ingest_twitter_data(twitter_data):
+ """
+ Ingest a tweet data and return the dict of needed data.
+
+ Parameters
+ ----------
+ twitter_data : str
+ The tweet data to be ingest
+
+ Returns
+ -------
+ need_data : dict
+
+ """
+
+ if twitter_data['geo']==None:
+
+ x_list=[value[1] for value in (twitter_data["place"]["bounding_box"]["coordinates"][0])]
+
+ y_list=[value[0] for value in (twitter_data["place"]["bounding_box"]["coordinates"][0])]
+ x=random.uniform(min(x_list),max(x_list))
+ y=random.uniform(min(y_list),max(y_list))
+ else:
+ x=twitter_data['geo']['coordinates'][0]
+ y=twitter_data['geo']['coordinates'][1]
+
+ need_data={"point":(x,y),"text":twitter_data["text"],"id_str":twitter_data["id_str"],"lang":twitter_data["lang"],"source":twitter_data["source"],"created_time":twitter_data["created_at"]}
+ return need_data
+
+def read_geojson(input_file):
+ """
+ Read a geojson file
+
+ Parameters
+ ----------
+ input_file : str
+ The PATH to the data to be read
+
+ Returns
+ -------
+ gj : dict
+ An in memory version of the geojson
+ """
+ # Please use the python json module (imported above)
+ # to solve this one.
+ gj = None
+ fp = open(input_file, 'r')
+ gj = json.loads(fp.read())
+ fp.close()
+ return gj
+
+def find_largest_city(gj):
+ """
+ Iterate through a geojson feature collection and
+ find the largest city. Assume that the key
+ to access the maximum population is 'pop_max'.
+
+ Parameters
+ ----------
+ gj : dict
+ A GeoJSON file read in as a Python dictionary
+
+ Returns
+ -------
+ city : str
+ The largest city
+
+ population : int
+ The population of the largest city
+ """
+ city = None
+ max_population = 0
+ for feature in gj["features"]:
+ if feature["properties"]["pop_max"]>max_population:
+ max_population=feature["properties"]["pop_max"]
+ city=feature["properties"]["nameascii"]
+
+ return city, max_population
+
+
+def write_your_own(gj):
+ """
+ Here you will write your own code to find
+ some attribute in the supplied geojson file.
+
+ Take a look at the attributes available and pick
+ something interesting that you might like to find
+ or summarize. This is totally up to you.
+
+ Do not forget to write the accompanying test in
+ tests.py!
+
+ To find the average of pop_max and pop_min.
+
+ """
+
+ sum_pop_max=0
+ sum_pop_min=0
+ num=0
+ for feature in gj["features"]:
+ sum_pop_max+=feature["properties"]["pop_max"]
+ sum_pop_min+=feature["properties"]["pop_min"]
+ num+=1
+
+ return float(sum_pop_max/num),float(sum_pop_min/num)
diff --git a/point.py b/point.py
new file mode 100644
index 0000000..ee6d743
--- /dev/null
+++ b/point.py
@@ -0,0 +1,29 @@
+
+
+
+class Point():
+
+ def __init__(self,x,y,mark=None):
+ self.x=x
+ self.y=y
+ self.mark=mark
+
+
+ def check_coincident(self, peer_p):
+
+ return (self.x == peer_p.x and self.y == peer_p.y and self.mark == peer_p.mark)
+
+ def shift_point(self, x_shift, y_shift):
+
+ self.x += x_shift
+ self.y += y_shift
+
+ def __eq__(self, other):
+ return self.x == other.x and self.y == other.y and self.mark == other.mark
+
+ def __str__(self):
+ return "x=%f,y=%f,mark=%s"%(self.x,self.y,self.mark)
+
+ def __add__(self, other):
+ return Point(self.x+other.x,self.y+other.y,self.mark)
+
diff --git a/point_pattern.py b/point_pattern.py
new file mode 100644
index 0000000..8221771
--- /dev/null
+++ b/point_pattern.py
@@ -0,0 +1,193 @@
+from point import Point
+import math
+import random
+import numpy as np
+
+
+class PointPattern():
+
+ def __init__(self,points):
+ self.points = points[:]
+
+
+ def average_nearest_neighbor_distance(self,mark=None):
+
+ """
+ Given a set of points, compute the average nearest neighbor.
+
+ Parameters
+ ----------
+ points : list
+ A list of points
+ mark : str
+
+ Returns
+ -------
+ mean_d : float
+ Average nearest neighbor distance
+
+ References
+ ----------
+ Clark and Evan (1954 Distance to Nearest Neighbor as a
+ Measure of Spatial Relationships in Populations. Ecology. 35(4)
+ p. 445-453.
+ """
+ mean_d = 0
+ if mark==None:
+ points_tmp=self.points
+ else:
+ points_tmp=[ point for point in self.points if point.mark==mark]
+
+ length=len(points_tmp)
+
+ #print(self.points)
+ nearest_distances=[]
+ for i in range(length):
+ distance=[]
+ for j in range(length):
+ if i==j:
+ continue
+ else:
+ distance.append(self.euclidean_distance((points_tmp[i].x,points_tmp[i].y),(points_tmp[j].x,points_tmp[j].y)))
+ nearest_distances.append(min(distance))
+
+ mean_d=float(sum(nearest_distances)/len(nearest_distances))
+ return mean_d
+
+ def number_of_coincident_points(self):
+
+ length=len(self.points)
+ number_of_coincident_points=0
+ for i in range(length):
+ for j in range(length):
+ if i==j:
+ continue
+ else:
+ if self.check_coincident((self.points[i].x,self.points[i].y),(self.points[j].x,self.points[j].y)):
+ number_of_coincident_points+=1
+ return number_of_coincident_points
+
+ def list_marks(self):
+
+ points_marks=set()
+ for point in self.points:
+ if point.mark!=None:
+ points_marks.add(point.mark)
+
+ return list(points_marks)
+
+ def list_subset_of_points(self,mark):
+
+ return [point for point in self.points if point.mark==mark]
+
+ def create_random_marked_points(self, n=None,domain_min=0,domain_max=1,marks=[]):
+
+ if n == None:
+ n=len(self.points)
+
+ randoms_list=np.random.uniform(domain_min, domain_max, (n,2))
+ points_list=[]
+ for i in range(n):
+ if len(marks)!=0:
+ points_list.append(Point(randoms_list[i][0], randoms_list[i][1],random.choice(marks)))
+ else:
+ points_list.append(Point(randoms_list[i][0], randoms_list[i][1]))
+ return points_list
+
+ def create_realizations(self, k):
+
+ return self.permutations(k)
+
+ def permutations(self,p=99, n=100):
+ """
+ Return the mean nearest neighbor distance of p permutations.
+
+ Parameters
+ ----------
+ p : integer
+ n : integer
+
+ Returns
+ -------
+ permutations : list
+ the mean nearest neighbor distance list.
+
+ """
+ permutation_list=[]
+ for i in range(p):
+ permutation_list.append(self.average_nearest_neighbor_distance())
+ return permutation_list
+
+ def critical_points(self,permutations):
+ """
+ Return the mean nearest neighbor distance of p permutations.
+
+ Parameters
+ ----------
+ permutations : list
+ the mean nearest neighbor distance list.
+ Returns
+ -------
+ smallest : float
+ largest : float
+
+ """
+
+ return min(permutations),max(permutations)
+
+ def compute_g(self,nsteps):
+
+ ds = np.linspace(0, 1, nsteps)
+ min_list=[]
+ for i_index,di in enumerate(ds):
+ tmp_list=[]
+ for j_index,dj in enumerate(ds):
+ if i_index != j_index:
+ tmp_list.append(np.abs(di-dj))
+
+ min_list.append(np.min(tmp_list))
+
+ return np.mean(min_list)
+
+
+
+ def check_coincident(self,a, b):
+ """
+ Check whether two points are coincident
+ Parameters
+ ----------
+ a : tuple
+ A point in the form (x,y)
+
+ b : tuple
+ A point in the form (x,y)
+
+ Returns
+ -------
+ equal : bool
+ Whether the points are equal
+ """
+ return a == b
+
+ def euclidean_distance(self,a, b):
+ """
+ Compute the Euclidean distance between two points
+
+ Parameters
+ ----------
+ a : tuple
+ A point in the form (x,y)
+
+ b : tuple
+ A point in the form (x,y)
+
+ Returns
+ -------
+
+ distance : float
+ The Euclidean distance between the two points
+ """
+ distance = math.sqrt((a[0] - b[0])**2 + (a[1] - b[1])**2)
+ return distance
+
+
diff --git a/the dialog containing the G-Function plot..jpg b/the dialog containing the G-Function plot..jpg
new file mode 100644
index 0000000..865b4b1
Binary files /dev/null and b/the dialog containing the G-Function plot..jpg differ
diff --git a/tweet.py b/tweet.py
new file mode 100644
index 0000000..33f9103
--- /dev/null
+++ b/tweet.py
@@ -0,0 +1,52 @@
+import point
+from nltk.corpus import opinion_lexicon
+from nltk.tokenize import treebank
+
+#Tweet class be created that contains (composition) a Point object.
+class Tweet():
+
+ def __init__(self,point,text,source,id_str,lang,created_time):
+
+ self.point=point #The tweet spatial information
+ self.text=text #The text
+ self.point.mark=self.classifier_fun(text)
+ self.source=source #the source
+ self.id_str=id_str #the id_str
+ self.lang=lang #the language
+ self.created_time=created_time #the create time
+
+ def get_spatial_information(self):
+ """
+ Return the tweet spatial information.
+ :return:(lat,lon)
+ """
+ return (self.point.x,self.point.y)
+
+ def classifier_fun(self,sentence):
+
+ tokenizer = treebank.TreebankWordTokenizer()
+ pos_words = 0
+ neg_words = 0
+ tokenized_sent = [word.lower() for word in tokenizer.tokenize(sentence)]
+
+ x = list(range(len(tokenized_sent))) # x axis for the plot
+ y = []
+
+ for word in tokenized_sent:
+ if word in opinion_lexicon.positive():
+ pos_words += 1
+ y.append(1) # positive
+ elif word in opinion_lexicon.negative():
+ neg_words += 1
+ y.append(-1) # negative
+ else:
+ y.append(0) # neutral
+
+ if pos_words > neg_words:
+ return 'Positive'
+ elif pos_words < neg_words:
+ return 'Negative'
+ elif pos_words == neg_words:
+ return 'Neutral'
+
+
diff --git a/tweets.json b/tweets.json
new file mode 100644
index 0000000..38b900b
--- /dev/null
+++ b/tweets.json
@@ -0,0 +1 @@
+[{"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2460431288/1458623389", "description": "donda design", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 193, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714999151319191552/xIedpILU_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 151, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "2460431288", "protected": false, "id": 2460431288, "favourites_count": 790, "profile_sidebar_fill_color": "000000", "screen_name": "drewcockstroke", "profile_image_url": "http://pbs.twimg.com/profile_images/714999151319191552/xIedpILU_normal.jpg", "lang": "en", "created_at": "Wed Apr 23 22:50:04 +0000 2014", "profile_use_background_image": false, "name": "ANDREW CASTRO", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 2496, "is_translator": false}, "text": "it's pass 8 and I still haven't eaten dinner yet.... AGAIN\u2049\ufe0f\u203c\ufe0f", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470349609603072", "id": 716470349609603072, "timestamp_ms": "1459654817379", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:17 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/583357741/1459313646", "description": "son of a jag // one squat wonder -Ryleigh Collins", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Mesa, AZ", "follow_request_sent": null, "followers_count": 864, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713186809505669120/VYguxm-L_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 688, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "583357741", "protected": false, "id": 583357741, "favourites_count": 55635, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Patricia_B16", "profile_image_url": "http://pbs.twimg.com/profile_images/713186809505669120/VYguxm-L_normal.jpg", "lang": "en", "created_at": "Fri May 18 01:46:22 +0000 2012", "profile_use_background_image": true, "name": "Patricia", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 5430, "is_translator": false}, "text": "the only good thing about today is this Sex on the Beach Dutch", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470350465212416", "id": 716470350465212416, "timestamp_ms": "1459654817583", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:17 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716467051347443712", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3307576553", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3188402798/1432183343", "description": "I'm a 35 yr old cancer survivor, addiction survivor, survived being molested a raped as a child i write to help with all of this its my release with dancing", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 1248, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/656568540351217664/C0xOKAIW_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 4678, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3188402798", "protected": false, "id": 3188402798, "favourites_count": 104, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "NateNzosplace", "profile_image_url": "http://pbs.twimg.com/profile_images/656568540351217664/C0xOKAIW_normal.jpg", "lang": "en", "created_at": "Fri May 08 05:31:19 +0000 2015", "profile_use_background_image": true, "name": "Nate Olson", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 119, "is_translator": false}, "text": "@MrsC_toBe @EricaKatherin10 I feel y'all I totally didn't help someone cheat & got screwed but I would do it again in an instant", "retweeted": false, "in_reply_to_screen_name": "MrsC_toBe", "id_str": "716470350767194112", "id": 716470350767194112, "timestamp_ms": "1459654817655", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Teaching Fianc\u00e9e", "indices": [0, 10], "id": 3307576553, "screen_name": "MrsC_toBe", "id_str": "3307576553"}, {"name": "Armani Kat", "indices": [11, 27], "id": 713913145652158464, "screen_name": "EricaKatherin10", "id_str": "713913145652158464"}], "hashtags": []}, "in_reply_to_user_id": 3307576553, "favorite_count": 0, "in_reply_to_status_id": 716467051347443712, "lang": "en", "created_at": "Sun Apr 03 03:40:17 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716414761135509505", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "199431990", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/326515252/1444459675", "description": "i'm Joy | cosplayer | 22 | AZ | small egg | mrs bansheebeat | next con: fanime", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "0099B9", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 223, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716382701859708928/C_JnNAW7_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833245890/0af6696ad71146ba89e47e99ddf4eb39.png", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 309, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833245890/0af6696ad71146ba89e47e99ddf4eb39.png", "time_zone": null, "profile_text_color": "333333", "id_str": "326515252", "protected": false, "id": 326515252, "favourites_count": 5713, "profile_sidebar_fill_color": "F6FFD1", "screen_name": "JoyoLantern", "profile_image_url": "http://pbs.twimg.com/profile_images/716382701859708928/C_JnNAW7_normal.jpg", "lang": "en", "created_at": "Thu Jun 30 01:35:41 +0000 2011", "profile_use_background_image": true, "name": "puchim@tsu", "url": "http://meatsuru.tumblr.com/", "following": null, "profile_link_color": "DD2E44", "statuses_count": 14713, "is_translator": false}, "text": "@identivity they would def sell! The mochi ones would too! You could maybe style it like the neko atsume mochi cushion?", "retweeted": false, "in_reply_to_screen_name": "identivity", "id_str": "716470365912834048", "id": 716470365912834048, "timestamp_ms": "1459654821266", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Katy", "indices": [0, 11], "id": 199431990, "screen_name": "identivity", "id_str": "199431990"}], "hashtags": []}, "in_reply_to_user_id": 199431990, "favorite_count": 0, "in_reply_to_status_id": 716414761135509505, "lang": "en", "created_at": "Sun Apr 03 03:40:21 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/45405970/1450467990", "description": "\u2026.When you think about STYLE, think always \u2026http://www.whatwouldoscardo.com\u2026", "profile_sidebar_border_color": "181A1E", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": "the world", "follow_request_sent": null, "followers_count": 329, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/417819471458234368/0Mw9V_mW_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 301, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "666666", "id_str": "45405970", "protected": false, "id": 45405970, "favourites_count": 238, "profile_sidebar_fill_color": "252429", "screen_name": "oscardelassalas", "profile_image_url": "http://pbs.twimg.com/profile_images/417819471458234368/0Mw9V_mW_normal.jpeg", "lang": "en", "created_at": "Sun Jun 07 19:36:36 +0000 2009", "profile_use_background_image": true, "name": "Oscar De las salas", "url": "http://www.whatwouldoscardo.com", "following": null, "profile_link_color": "2FC2EF", "statuses_count": 1664, "is_translator": false}, "text": "ODE TO THE TURKS....\n- So, to celebrate the azcostume fiftieth anniversary my dear Beth from\u2026 https://t.co/hveKJsZbaG", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470366881841153", "id": 716470366881841153, "timestamp_ms": "1459654821497", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuS3LcNdY7/", "indices": [94, 117], "display_url": "instagram.com/p/BDuS3LcNdY7/", "url": "https://t.co/hveKJsZbaG"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:21 +0000 2016", "coordinates": {"coordinates": [-112.073, 33.46719916], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.46719916, -112.073], "type": "Point"}}, {"in_reply_to_status_id_str": "716469489668374528", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "554049467", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/244334005/1411182302", "description": null, "profile_sidebar_border_color": "4D4A33", "profile_background_tile": false, "profile_background_color": "091304", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 47, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697203993508913152/f6_7nbUF_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/200346758/x1cb7c597e245b1b3589af1af9e49276.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 109, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/200346758/x1cb7c597e245b1b3589af1af9e49276.jpg", "time_zone": "Arizona", "profile_text_color": "7D7D7D", "id_str": "244334005", "protected": false, "id": 244334005, "favourites_count": 1059, "profile_sidebar_fill_color": "262626", "screen_name": "Kristina_Scott", "profile_image_url": "http://pbs.twimg.com/profile_images/697203993508913152/f6_7nbUF_normal.jpg", "lang": "en", "created_at": "Sat Jan 29 02:31:39 +0000 2011", "profile_use_background_image": true, "name": "krispez", "url": null, "following": null, "profile_link_color": "696545", "statuses_count": 330, "is_translator": false}, "text": "@TheCaliAllStars great family to be a part of! \ud83d\ude4c\ud83c\udffd Congrats to our Cali Teams today! #allgloryup", "retweeted": false, "in_reply_to_screen_name": "TheCaliAllStars", "id_str": "716470377854013440", "id": 716470377854013440, "timestamp_ms": "1459654824113", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "California All Stars", "indices": [0, 16], "id": 554049467, "screen_name": "TheCaliAllStars", "id_str": "554049467"}], "hashtags": [{"indices": [85, 96], "text": "allgloryup"}]}, "in_reply_to_user_id": 554049467, "favorite_count": 0, "in_reply_to_status_id": 716469489668374528, "lang": "en", "created_at": "Sun Apr 03 03:40:24 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/215437976/1457925338", "description": "Have courage and be kind. #totravelistolive\u2600\ufe0f", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 251, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714109788238520321/vGMvhUNU_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 193, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "215437976", "protected": false, "id": 215437976, "favourites_count": 6229, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Gabby_rosas6", "profile_image_url": "http://pbs.twimg.com/profile_images/714109788238520321/vGMvhUNU_normal.jpg", "lang": "en", "created_at": "Sat Nov 13 23:10:07 +0000 2010", "profile_use_background_image": true, "name": "Gabriela Rosas", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 8085, "is_translator": false}, "text": "So sad that I lost my COOP SWEATER! That one was my favorite too\ud83d\ude2d\ud83d\udc94\ud83d\udc94", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470381482090496", "id": 716470381482090496, "timestamp_ms": "1459654824978", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:24 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "26266094", "truncated": false, "source": "Twitter for iPad", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/CgrDruAxW3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 453}, "large": {"w": 960, "resize": "fit", "h": 1280}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/TitoFigueroa3/status/716470388364947456/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqA5QVIAABydG.jpg", "indices": [60, 83], "id": 716470379330478080, "id_str": "716470379330478080", "display_url": "pic.twitter.com/CgrDruAxW3", "media_url": "http://pbs.twimg.com/media/CfFqA5QVIAABydG.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/602471804/1432428868", "description": "Tall fun outgoing hardworking American who likes to laugh a lot..when it's funny.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix AZ", "follow_request_sent": null, "followers_count": 112, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/567880773550620672/Yg_vrAyo_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 376, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "602471804", "protected": false, "id": 602471804, "favourites_count": 3875, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "TitoFigueroa3", "profile_image_url": "http://pbs.twimg.com/profile_images/567880773550620672/Yg_vrAyo_normal.jpeg", "lang": "en", "created_at": "Fri Jun 08 04:56:44 +0000 2012", "profile_use_background_image": true, "name": "Tito Figueroa", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4181, "is_translator": false}, "text": "@MacandGaydos No tweeting you while having this..promise \ud83d\ude02\ud83d\ude02 https://t.co/CgrDruAxW3", "retweeted": false, "in_reply_to_screen_name": "MacandGaydos", "id_str": "716470388364947456", "id": 716470388364947456, "timestamp_ms": "1459654826619", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Mac and Gaydos\u2122", "indices": [0, 13], "id": 26266094, "screen_name": "MacandGaydos", "id_str": "26266094"}], "hashtags": [], "media": [{"url": "https://t.co/CgrDruAxW3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 453}, "large": {"w": 960, "resize": "fit", "h": 1280}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/TitoFigueroa3/status/716470388364947456/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqA5QVIAABydG.jpg", "indices": [60, 83], "id": 716470379330478080, "id_str": "716470379330478080", "display_url": "pic.twitter.com/CgrDruAxW3", "media_url": "http://pbs.twimg.com/media/CfFqA5QVIAABydG.jpg"}]}, "in_reply_to_user_id": 26266094, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/46993092/1433529378", "description": null, "profile_sidebar_border_color": "46A9EC", "profile_background_tile": true, "profile_background_color": "160F24", "verified": false, "location": "Mesa, AZ", "follow_request_sent": null, "followers_count": 270, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/606892311830609920/SjDs2rW6_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/401467233/xb0e3a24f664cf3d66d0c0e260926cdf.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 391, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/401467233/xb0e3a24f664cf3d66d0c0e260926cdf.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "4E4B31", "id_str": "46993092", "protected": false, "id": 46993092, "favourites_count": 3, "profile_sidebar_fill_color": "4B9670", "screen_name": "peachesekdahl", "profile_image_url": "http://pbs.twimg.com/profile_images/606892311830609920/SjDs2rW6_normal.jpg", "lang": "en", "created_at": "Sun Jun 14 00:12:14 +0000 2009", "profile_use_background_image": true, "name": "Joel Ekdahl", "url": null, "following": null, "profile_link_color": "597046", "statuses_count": 227, "is_translator": false}, "text": "Sara Robinson & Gal @ Pho Cao @ Pho Cao https://t.co/kErRPerfe3", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470391712034816", "id": 716470391712034816, "timestamp_ms": "1459654827417", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuS3knlVTB/", "indices": [44, 67], "display_url": "instagram.com/p/BDuS3knlVTB/", "url": "https://t.co/kErRPerfe3"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "it", "created_at": "Sun Apr 03 03:40:27 +0000 2016", "coordinates": {"coordinates": [-111.9203415, 33.4661789], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4661789, -111.9203415], "type": "Point"}}, {"in_reply_to_status_id_str": "716470214309711873", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2208464983", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3269322319/1457764371", "description": "just your average girl", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 149, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708541242636828672/nYiLv-lo_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 289, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3269322319", "protected": false, "id": 3269322319, "favourites_count": 4787, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "SUZYYYYYYYYYY", "profile_image_url": "http://pbs.twimg.com/profile_images/708541242636828672/nYiLv-lo_normal.jpg", "lang": "en", "created_at": "Sun Jul 05 17:57:26 +0000 2015", "profile_use_background_image": true, "name": "Suzy", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 745, "is_translator": false}, "text": "@dopinator thanks bud\ud83d\udc96\ud83d\udc4c\ud83c\udffc", "retweeted": false, "in_reply_to_screen_name": "dopinator", "id_str": "716470401283428352", "id": 716470401283428352, "timestamp_ms": "1459654829699", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Hope Brecto", "indices": [0, 10], "id": 2208464983, "screen_name": "dopinator", "id_str": "2208464983"}], "hashtags": []}, "in_reply_to_user_id": 2208464983, "favorite_count": 0, "in_reply_to_status_id": 716470214309711873, "lang": "en", "created_at": "Sun Apr 03 03:40:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/197253567/1453876128", "description": "My story hasn't been written...", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "ACDED6", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 703, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715966174123536384/Icx6tvpQ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000118242821/a617f9bba63d2d5316ab5f6a35565fec.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 566, "utc_offset": -28800, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000118242821/a617f9bba63d2d5316ab5f6a35565fec.jpeg", "time_zone": "Alaska", "profile_text_color": "333333", "id_str": "197253567", "protected": false, "id": 197253567, "favourites_count": 1782, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "Nadroj_Nicole", "profile_image_url": "http://pbs.twimg.com/profile_images/715966174123536384/Icx6tvpQ_normal.jpg", "lang": "en", "created_at": "Fri Oct 01 01:00:29 +0000 2010", "profile_use_background_image": true, "name": "RoseGold", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 89489, "is_translator": false}, "text": "Good movie on Netflix ?", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470411291013120", "id": 716470411291013120, "timestamp_ms": "1459654832085", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "San Tan Valley, AZ", "place_type": "city", "attributes": {}, "name": "San Tan Valley", "country": "United States", "id": "002b06ee2655168a", "bounding_box": {"coordinates": [[[-111.63454, 33.08929], [-111.63454, 33.307181], [-111.486497, 33.307181], [-111.486497, 33.08929]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/002b06ee2655168a.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/855865387/1459209051", "description": "what's up with the what's up what's up?\nSC:gabrielrey32", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Az", "follow_request_sent": null, "followers_count": 549, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714600679998951427/N8CfsBQu_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000094253545/b32ff12588894a6e774688e487811151.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 361, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000094253545/b32ff12588894a6e774688e487811151.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "855865387", "protected": false, "id": 855865387, "favourites_count": 20565, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Rey_Day14", "profile_image_url": "http://pbs.twimg.com/profile_images/714600679998951427/N8CfsBQu_normal.jpg", "lang": "en", "created_at": "Mon Oct 01 05:02:54 +0000 2012", "profile_use_background_image": true, "name": "\u2667\u25c7\u2661\u2664", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 33710, "is_translator": false}, "text": "Shit can't wait till I'm 21!", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470415690862593", "id": 716470415690862593, "timestamp_ms": "1459654833134", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/237630556/1419331082", "description": "24. I do hair. #prop215. My heart is like a stallion, they love it more when it's broken. RIP Tara \u2764", "profile_sidebar_border_color": "2600FF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "East Bay, California ", "follow_request_sent": null, "followers_count": 342, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708186592238698496/PVg9m_6J_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/271040145/20765_1214566610519_1419420104_30505218_4309618_n.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 299, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/271040145/20765_1214566610519_1419420104_30505218_4309618_n.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "237630556", "protected": false, "id": 237630556, "favourites_count": 3298, "profile_sidebar_fill_color": "A6FFF3", "screen_name": "JQuiiin", "profile_image_url": "http://pbs.twimg.com/profile_images/708186592238698496/PVg9m_6J_normal.jpg", "lang": "xx-lc", "created_at": "Thu Jan 13 07:54:28 +0000 2011", "profile_use_background_image": true, "name": "Jazz", "url": "http://jquiiin.tumblr.com", "following": null, "profile_link_color": "AD00A1", "statuses_count": 23173, "is_translator": false}, "text": "My sister's dad told me I look like my mom. \ud83d\ude11", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470418232594433", "id": 716470418232594433, "timestamp_ms": "1459654833740", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/7NdFMx7koe", "sizes": {"small": {"w": 340, "resize": "fit", "h": 241}, "large": {"w": 998, "resize": "fit", "h": 708}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 426}}, "type": "photo", "expanded_url": "http://twitter.com/driver461/status/716470418664611840/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqC4KUAAAdHIE.jpg", "indices": [6, 29], "id": 716470413396541440, "id_str": "716470413396541440", "display_url": "pic.twitter.com/7NdFMx7koe", "media_url": "http://pbs.twimg.com/media/CfFqC4KUAAAdHIE.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/804720368/1423113347", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ ", "follow_request_sent": null, "followers_count": 121, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697602974126731265/xlOnqaoP_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 110, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "804720368", "protected": false, "id": 804720368, "favourites_count": 2173, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "driver461", "profile_image_url": "http://pbs.twimg.com/profile_images/697602974126731265/xlOnqaoP_normal.jpg", "lang": "en", "created_at": "Wed Sep 05 14:34:34 +0000 2012", "profile_use_background_image": true, "name": "Matt", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2359, "is_translator": false}, "text": "#Lyfe https://t.co/7NdFMx7koe", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470418664611840", "id": 716470418664611840, "timestamp_ms": "1459654833843", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [0, 5], "text": "Lyfe"}], "media": [{"url": "https://t.co/7NdFMx7koe", "sizes": {"small": {"w": 340, "resize": "fit", "h": 241}, "large": {"w": 998, "resize": "fit", "h": 708}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 426}}, "type": "photo", "expanded_url": "http://twitter.com/driver461/status/716470418664611840/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqC4KUAAAdHIE.jpg", "indices": [6, 29], "id": 716470413396541440, "id_str": "716470413396541440", "display_url": "pic.twitter.com/7NdFMx7koe", "media_url": "http://pbs.twimg.com/media/CfFqC4KUAAAdHIE.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:40:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716469996151439361", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "254479766", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/21146647/1439871597", "description": "@kurtpellegrino stalker. MMA, animal, & nature lover. Vegetarian. @AaronSimpson's biggest fan. Cheerleader for #AZMMA & @PowerMMAFitness. Instagram: @SuziDodt", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 1096, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/664613115867172868/yLRpnBmw_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/594485169/9ipa1uz4h43ppx2i7rj5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 44, "friends_count": 1925, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/594485169/9ipa1uz4h43ppx2i7rj5.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "21146647", "protected": false, "id": 21146647, "favourites_count": 37461, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "SuziDodt", "profile_image_url": "http://pbs.twimg.com/profile_images/664613115867172868/yLRpnBmw_normal.jpg", "lang": "en", "created_at": "Tue Feb 17 23:38:04 +0000 2009", "profile_use_background_image": true, "name": "suzi dodt", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 43171, "is_translator": false}, "text": "@lbrench101 I'm sure that was good for him. Drunk people are too obnoxious for me to be around, especially when you can't get away lol.", "retweeted": false, "in_reply_to_screen_name": "lbrench101", "id_str": "716470421084901376", "id": 716470421084901376, "timestamp_ms": "1459654834420", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "lynden brench", "indices": [0, 11], "id": 254479766, "screen_name": "lbrench101", "id_str": "254479766"}], "hashtags": []}, "in_reply_to_user_id": 254479766, "favorite_count": 0, "in_reply_to_status_id": 716469996151439361, "lang": "en", "created_at": "Sun Apr 03 03:40:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "19037003", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/15468577/1349290759", "description": "Husband. Father. JavaScript troll.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "BFBFBF", "verified": false, "location": "Phoenix", "follow_request_sent": null, "followers_count": 647, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/457645577296429057/aZlyRAl__normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/139900998/jeff-bridges-as-the-big-lebowski.jpg", "default_profile_image": false, "notifications": null, "listed_count": 54, "friends_count": 948, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/139900998/jeff-bridges-as-the-big-lebowski.jpg", "time_zone": "Quito", "profile_text_color": "666666", "id_str": "15468577", "protected": false, "id": 15468577, "favourites_count": 2031, "profile_sidebar_fill_color": "F5F5F5", "screen_name": "dmackerman", "profile_image_url": "http://pbs.twimg.com/profile_images/457645577296429057/aZlyRAl__normal.jpeg", "lang": "en", "created_at": "Thu Jul 17 14:54:22 +0000 2008", "profile_use_background_image": false, "name": "Dave Ackerman", "url": null, "following": null, "profile_link_color": "6931E0", "statuses_count": 11443, "is_translator": false}, "text": "@krystynheide hold off if you can. Hopefully new MBPs are coming. The current gen has a 3 year old processor.", "retweeted": false, "in_reply_to_screen_name": "krystynheide", "id_str": "716470426654744576", "id": 716470426654744576, "timestamp_ms": "1459654835748", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Krystyn Heide", "indices": [0, 13], "id": 19037003, "screen_name": "krystynheide", "id_str": "19037003"}], "hashtags": []}, "in_reply_to_user_id": 19037003, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1589707580/1449687528", "description": "You are now about to witness the strength of street knowledge.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Golden State", "follow_request_sent": null, "followers_count": 252, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715952958869868544/KQGDaF_b_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 231, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "1589707580", "protected": false, "id": 1589707580, "favourites_count": 2690, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "LikeMance_", "profile_image_url": "http://pbs.twimg.com/profile_images/715952958869868544/KQGDaF_b_normal.jpg", "lang": "en", "created_at": "Fri Jul 12 23:55:08 +0000 2013", "profile_use_background_image": true, "name": "#LikeMance2016", "url": "http://bangbros.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 11672, "is_translator": false}, "text": "Arizona is a fucking banger", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470456870641665", "id": 716470456870641665, "timestamp_ms": "1459654842952", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4801580772/1459485680", "description": "head inside a dream", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 371, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716143177841770496/lvZnNVuA_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/692936073815658496/Sl9wdXtP.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 259, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/692936073815658496/Sl9wdXtP.jpg", "time_zone": null, "profile_text_color": "000000", "id_str": "4801580772", "protected": false, "id": 4801580772, "favourites_count": 3093, "profile_sidebar_fill_color": "000000", "screen_name": "laurenkgalloway", "profile_image_url": "http://pbs.twimg.com/profile_images/716143177841770496/lvZnNVuA_normal.jpg", "lang": "en", "created_at": "Sat Jan 23 06:34:07 +0000 2016", "profile_use_background_image": true, "name": "LAUR", "url": "http://goonzzzzz.tumblr.com", "following": null, "profile_link_color": "F58EA8", "statuses_count": 2364, "is_translator": false}, "text": "no one is down for me", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470460502769664", "id": 716470460502769664, "timestamp_ms": "1459654843818", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/37110236/1414563448", "description": "Awake and Unafraid.", "profile_sidebar_border_color": "FFF0F5", "profile_background_tile": false, "profile_background_color": "FFE1FF", "verified": false, "location": "Live From Phoenix ", "follow_request_sent": null, "followers_count": 178, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716417699279056896/OnntE1ZO_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/277423584/ps_i_love_you.JPG", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 625, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/277423584/ps_i_love_you.JPG", "time_zone": "Arizona", "profile_text_color": "8B7E66", "id_str": "37110236", "protected": false, "id": 37110236, "favourites_count": 2564, "profile_sidebar_fill_color": "FFFFF0", "screen_name": "keepingitspooky", "profile_image_url": "http://pbs.twimg.com/profile_images/716417699279056896/OnntE1ZO_normal.jpg", "lang": "en", "created_at": "Sat May 02 02:02:23 +0000 2009", "profile_use_background_image": true, "name": "Marisa Rael", "url": null, "following": null, "profile_link_color": "8A664D", "statuses_count": 9438, "is_translator": false}, "text": "Did the same thing at the next intersection and then he sped off into the night", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470466093813760", "id": 716470466093813760, "timestamp_ms": "1459654845151", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:45 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716461224016363520", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2770306139", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2235293858/1458686024", "description": "class of '17", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1529, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712406763924885506/yA2qdF9P_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 525, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2235293858", "protected": false, "id": 2235293858, "favourites_count": 4937, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jakkebb", "profile_image_url": "http://pbs.twimg.com/profile_images/712406763924885506/yA2qdF9P_normal.jpg", "lang": "en", "created_at": "Sun Dec 08 01:30:41 +0000 2013", "profile_use_background_image": true, "name": "Jake Blacketor", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4530, "is_translator": false}, "text": "@BradenRogersss dude how \ud83d\ude2d\ud83d\ude2d", "retweeted": false, "in_reply_to_screen_name": "BradenRogersss", "id_str": "716470472297226241", "id": 716470472297226241, "timestamp_ms": "1459654846630", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Braden Rogers", "indices": [0, 15], "id": 2770306139, "screen_name": "BradenRogersss", "id_str": "2770306139"}], "hashtags": []}, "in_reply_to_user_id": 2770306139, "favorite_count": 0, "in_reply_to_status_id": 716461224016363520, "lang": "en", "created_at": "Sun Apr 03 03:40:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/217607294/1450047879", "description": "100m/200m sprinter - Altis #CarryTheShield.", "profile_sidebar_border_color": "F00000", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "Toronto | Phoenix, AZ", "follow_request_sent": null, "followers_count": 518, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716436851720998913/5ssk5iBI_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/330965524/Snapshot_20110418.jpg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 501, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/330965524/Snapshot_20110418.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "E01616", "id_str": "217607294", "protected": false, "id": 217607294, "favourites_count": 783, "profile_sidebar_fill_color": "000000", "screen_name": "WBSprintz_", "profile_image_url": "http://pbs.twimg.com/profile_images/716436851720998913/5ssk5iBI_normal.jpg", "lang": "en", "created_at": "Sat Nov 20 00:22:14 +0000 2010", "profile_use_background_image": false, "name": "Wayndale Bennett", "url": null, "following": null, "profile_link_color": "F50E0E", "statuses_count": 37107, "is_translator": false}, "text": "Summer 6teen is my ANTHEM.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470474771795968", "id": 716470474771795968, "timestamp_ms": "1459654847220", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3003703089/1458679025", "description": "The official LIVE event twitter handle of Chip Ganassi Racing INDYCAR teams.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Indianapolis, IN", "follow_request_sent": null, "followers_count": 3180, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/576454648107651072/Yu_7SO-b_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 116, "friends_count": 101, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "3003703089", "protected": false, "id": 3003703089, "favourites_count": 843, "profile_sidebar_fill_color": "000000", "screen_name": "CGRindycar", "profile_image_url": "http://pbs.twimg.com/profile_images/576454648107651072/Yu_7SO-b_normal.png", "lang": "en", "created_at": "Wed Jan 28 19:21:42 +0000 2015", "profile_use_background_image": false, "name": "CGR IndyCar", "url": "http://chipganassiracing.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 2573, "is_translator": false}, "text": "Race results from @PhoenixRaceway:\nP1 @scottdixon9 \nP4 @TonyKanaan \nP7 @maxchilton \nP12 @racewithinsulin \n#DDCPhoenixGrandPrix", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470477712019456", "id": 716470477712019456, "timestamp_ms": "1459654847921", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Phoenix Raceway", "indices": [18, 33], "id": 19554713, "screen_name": "PhoenixRaceway", "id_str": "19554713"}, {"name": "Scott Dixon", "indices": [38, 50], "id": 36783122, "screen_name": "scottdixon9", "id_str": "36783122"}, {"name": "Tony Kanaan", "indices": [55, 66], "id": 34394666, "screen_name": "TonyKanaan", "id_str": "34394666"}, {"name": "M A X Chilton", "indices": [71, 82], "id": 21044208, "screen_name": "maxchilton", "id_str": "21044208"}, {"name": "Charlie Kimball", "indices": [88, 104], "id": 37014098, "screen_name": "racewithinsulin", "id_str": "37014098"}], "hashtags": [{"indices": [106, 126], "text": "DDCPhoenixGrandPrix"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "65740907", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/VUuBpeP16M", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/UnivisionAZ/status/716470485836386304/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqGeFUsAAL9SA.jpg", "indices": [115, 138], "id": 716470475115769856, "id_str": "716470475115769856", "display_url": "pic.twitter.com/VUuBpeP16M", "media_url": "http://pbs.twimg.com/media/CfFqGeFUsAAL9SA.jpg"}, {"url": "https://t.co/VUuBpeP16M", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/UnivisionAZ/status/716470485836386304/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqGrVUIAAd2rA.jpg", "indices": [115, 138], "id": 716470478672502784, "id_str": "716470478672502784", "display_url": "pic.twitter.com/VUuBpeP16M", "media_url": "http://pbs.twimg.com/media/CfFqGrVUIAAd2rA.jpg"}, {"url": "https://t.co/VUuBpeP16M", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/UnivisionAZ/status/716470485836386304/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqGtcUAAAKA_X.jpg", "indices": [115, 138], "id": 716470479238725632, "id_str": "716470479238725632", "display_url": "pic.twitter.com/VUuBpeP16M", "media_url": "http://pbs.twimg.com/media/CfFqGtcUAAAKA_X.jpg"}, {"url": "https://t.co/VUuBpeP16M", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/UnivisionAZ/status/716470485836386304/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqGwVVIAA3Upf.jpg", "indices": [115, 138], "id": 716470480014745600, "id_str": "716470480014745600", "display_url": "pic.twitter.com/VUuBpeP16M", "media_url": "http://pbs.twimg.com/media/CfFqGwVVIAA3Upf.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/184562575/1456244552", "description": "En @UnivisionAZ queremos contar tus historias. Tienes una? M\u00e1ndanosla a KTVWassignment@univision.net. PHX ch33 & TUC ch46/38", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "131516", "verified": true, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 9484, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/444670182254858240/xWpHjsrk_normal.png", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492120728037113856/l7o7ZSkc.png", "default_profile_image": false, "notifications": null, "listed_count": 130, "friends_count": 1660, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492120728037113856/l7o7ZSkc.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "184562575", "protected": false, "id": 184562575, "favourites_count": 824, "profile_sidebar_fill_color": "C0DFEC", "screen_name": "UnivisionAZ", "profile_image_url": "http://pbs.twimg.com/profile_images/444670182254858240/xWpHjsrk_normal.png", "lang": "en", "created_at": "Sun Aug 29 22:17:24 +0000 2010", "profile_use_background_image": true, "name": "Univision Arizona", "url": "http://www.univisionarizona.com", "following": null, "profile_link_color": "009999", "statuses_count": 41188, "is_translator": false}, "text": "@HOROSCOPOSDEDGO at @PhoenixPrideAZ Festival - Los Horoscopos de Durango en el Festival Phoenix Pride Orgullo@UCI https://t.co/VUuBpeP16M", "retweeted": false, "in_reply_to_screen_name": "HOROSCOPOSDEDGO", "id_str": "716470485836386304", "id": 716470485836386304, "timestamp_ms": "1459654849858", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "HOROSCOPOS D DURANGO", "indices": [0, 16], "id": 65740907, "screen_name": "HOROSCOPOSDEDGO", "id_str": "65740907"}, {"name": "Phoenix Pride", "indices": [20, 35], "id": 43412331, "screen_name": "PhoenixPrideAZ", "id_str": "43412331"}], "hashtags": [], "media": [{"url": "https://t.co/VUuBpeP16M", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/UnivisionAZ/status/716470485836386304/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqGeFUsAAL9SA.jpg", "indices": [115, 138], "id": 716470475115769856, "id_str": "716470475115769856", "display_url": "pic.twitter.com/VUuBpeP16M", "media_url": "http://pbs.twimg.com/media/CfFqGeFUsAAL9SA.jpg"}]}, "in_reply_to_user_id": 65740907, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "es", "created_at": "Sun Apr 03 03:40:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CfFqDycUIAAyRQg.mp4"}], "aspect_ratio": [1, 1]}, "url": "https://t.co/1T8cPWeFJG", "sizes": {"small": {"w": 250, "resize": "fit", "h": 250}, "large": {"w": 250, "resize": "fit", "h": 250}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 250, "resize": "fit", "h": 250}}, "type": "animated_gif", "expanded_url": "http://twitter.com/BrandonZagar/status/716470488877244416/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFqDycUIAAyRQg.jpg", "indices": [29, 52], "id": 716470429041303552, "id_str": "716470429041303552", "display_url": "pic.twitter.com/1T8cPWeFJG", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFqDycUIAAyRQg.jpg"}]}, "place": {"full_name": "Apache Junction, AZ", "place_type": "city", "attributes": {}, "name": "Apache Junction", "country": "United States", "id": "bf09d4c99c2d845c", "bounding_box": {"coordinates": [[[-111.587098, 33.378739], [-111.587098, 33.465988], [-111.469058, 33.465988], [-111.469058, 33.378739]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/bf09d4c99c2d845c.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 13, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/641055782893522944/m0-_cqgU_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 34, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "3486068485", "protected": false, "id": 3486068485, "favourites_count": 111, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "BrandonZagar", "profile_image_url": "http://pbs.twimg.com/profile_images/641055782893522944/m0-_cqgU_normal.jpg", "lang": "en", "created_at": "Mon Sep 07 21:43:26 +0000 2015", "profile_use_background_image": true, "name": "Brandon Zagar", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 357, "is_translator": false}, "text": "#WWEHOF John Cena showed up! https://t.co/1T8cPWeFJG", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470488877244416", "id": 716470488877244416, "timestamp_ms": "1459654850583", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [0, 7], "text": "WWEHOF"}], "media": [{"url": "https://t.co/1T8cPWeFJG", "sizes": {"small": {"w": 250, "resize": "fit", "h": 250}, "large": {"w": 250, "resize": "fit", "h": 250}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 250, "resize": "fit", "h": 250}}, "type": "photo", "expanded_url": "http://twitter.com/BrandonZagar/status/716470488877244416/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFqDycUIAAyRQg.jpg", "indices": [29, 52], "id": 716470429041303552, "id_str": "716470429041303552", "display_url": "pic.twitter.com/1T8cPWeFJG", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFqDycUIAAyRQg.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:50 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"description": "when temperatures get too high, the elderly will start to die! @ryanevanss13", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "ACDED6", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 461, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705581532895793153/GbF9dzdd_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/794306066/4a8ccd88b15003d01ae050ef76cd12e5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 355, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/794306066/4a8ccd88b15003d01ae050ef76cd12e5.jpeg", "time_zone": null, "profile_text_color": "0C3E53", "id_str": "711512724", "protected": false, "id": 711512724, "favourites_count": 4468, "profile_sidebar_fill_color": "FFF7CC", "screen_name": "haleighplewe", "profile_image_url": "http://pbs.twimg.com/profile_images/705581532895793153/GbF9dzdd_normal.jpg", "lang": "en", "created_at": "Mon Jul 23 00:35:28 +0000 2012", "profile_use_background_image": false, "name": "hay layy", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 5991, "is_translator": false}, "text": "What movie should me and Ryan watch \ud83d\udc7d\ud83d\udc7d\ud83d\udc7d", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470492887027712", "id": 716470492887027712, "timestamp_ms": "1459654851539", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:51 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/ZeqrSLOdYn", "sizes": {"small": {"w": 273, "resize": "fit", "h": 612}, "large": {"w": 273, "resize": "fit", "h": 612}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 273, "resize": "fit", "h": 612}}, "type": "photo", "expanded_url": "http://twitter.com/PulseRadioAZ/status/716470495118434305/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqHbJUYAURdsf.jpg", "indices": [111, 134], "id": 716470491507089413, "id_str": "716470491507089413", "display_url": "pic.twitter.com/ZeqrSLOdYn", "media_url": "http://pbs.twimg.com/media/CfFqHbJUYAURdsf.jpg"}]}, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1887304945/1459031852", "description": "Phoenix, AZ's most listened to Adult Top-40 station -- 88.7 The Pulse! Call or text us at (480)-655-8870", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Mesa, Arizona", "follow_request_sent": null, "followers_count": 9084, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713858359909285888/r5CS1kjW_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 44, "friends_count": 2215, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1887304945", "protected": false, "id": 1887304945, "favourites_count": 12901, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "PulseRadioAZ", "profile_image_url": "http://pbs.twimg.com/profile_images/713858359909285888/r5CS1kjW_normal.jpg", "lang": "en", "created_at": "Fri Sep 20 17:43:30 +0000 2013", "profile_use_background_image": true, "name": "88.7 The Pulse", "url": "http://pulseradio.fm", "following": null, "profile_link_color": "3B94D9", "statuses_count": 6314, "is_translator": false}, "text": "Anyone else dip their French fries in their shakes / ice cream? \ud83c\udf5f\ud83c\udf66 \n\nRT if you do or quote someone who does! \ud83d\udc4d https://t.co/ZeqrSLOdYn", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470495118434305", "id": 716470495118434305, "timestamp_ms": "1459654852071", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/ZeqrSLOdYn", "sizes": {"small": {"w": 273, "resize": "fit", "h": 612}, "large": {"w": 273, "resize": "fit", "h": 612}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 273, "resize": "fit", "h": 612}}, "type": "photo", "expanded_url": "http://twitter.com/PulseRadioAZ/status/716470495118434305/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqHbJUYAURdsf.jpg", "indices": [111, 134], "id": 716470491507089413, "id_str": "716470491507089413", "display_url": "pic.twitter.com/ZeqrSLOdYn", "media_url": "http://pbs.twimg.com/media/CfFqHbJUYAURdsf.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:52 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3163115966/1457378385", "description": "(uh-rae-uh)\n Leo \u264c\nSC : araya.santoro\ndv cheer", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "probably @ cheer", "follow_request_sent": null, "followers_count": 127, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 352, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3163115966", "protected": false, "id": 3163115966, "favourites_count": 2150, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "agsan095", "profile_image_url": "http://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "lang": "en", "created_at": "Sun Apr 19 00:40:18 +0000 2015", "profile_use_background_image": true, "name": "snooks", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1180, "is_translator": false}, "text": "You should let me love you let me be the one to give you everything you want and need", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470497404268545", "id": 716470497404268545, "timestamp_ms": "1459654852616", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:52 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "San Tan Valley, AZ", "place_type": "city", "attributes": {}, "name": "San Tan Valley", "country": "United States", "id": "002b06ee2655168a", "bounding_box": {"coordinates": [[[-111.63454, 33.08929], [-111.63454, 33.307181], [-111.486497, 33.307181], [-111.486497, 33.08929]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/002b06ee2655168a.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/855865387/1459209051", "description": "what's up with the what's up what's up?\nSC:gabrielrey32", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Az", "follow_request_sent": null, "followers_count": 549, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714600679998951427/N8CfsBQu_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000094253545/b32ff12588894a6e774688e487811151.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 361, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000094253545/b32ff12588894a6e774688e487811151.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "855865387", "protected": false, "id": 855865387, "favourites_count": 20565, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Rey_Day14", "profile_image_url": "http://pbs.twimg.com/profile_images/714600679998951427/N8CfsBQu_normal.jpg", "lang": "en", "created_at": "Mon Oct 01 05:02:54 +0000 2012", "profile_use_background_image": true, "name": "\u2667\u25c7\u2661\u2664", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 33711, "is_translator": false}, "text": "Clubbin errrnight", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470500621299713", "id": 716470500621299713, "timestamp_ms": "1459654853383", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2752235597/1456279894", "description": "do more than just exist", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "anywhwere with puppies", "follow_request_sent": null, "followers_count": 495, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711940955046289408/l9AedRuq_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 672, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2752235597", "protected": false, "id": 2752235597, "favourites_count": 1154, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "hkaty44", "profile_image_url": "http://pbs.twimg.com/profile_images/711940955046289408/l9AedRuq_normal.jpg", "lang": "en", "created_at": "Wed Aug 27 02:54:03 +0000 2014", "profile_use_background_image": true, "name": "Katy Hamilton", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 911, "is_translator": false}, "text": "Never would've thought I would like fall out boy but Wow I in love", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470506115837952", "id": 716470506115837952, "timestamp_ms": "1459654854693", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2712573173/1459212660", "description": "18 years young living right.. grand blanc high '16", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 739, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716323366886453248/si3Sc0Ov_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 670, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "2712573173", "protected": false, "id": 2712573173, "favourites_count": 1437, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JBanks210", "profile_image_url": "http://pbs.twimg.com/profile_images/716323366886453248/si3Sc0Ov_normal.jpg", "lang": "en", "created_at": "Tue Jul 15 12:08:16 +0000 2014", "profile_use_background_image": true, "name": "($$$($$)$$$)", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 19974, "is_translator": false}, "text": "when i look into her eyes i make her panties leak", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470513367789568", "id": 716470513367789568, "timestamp_ms": "1459654856422", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:56 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1027262569/1458443217", "description": "lowell, mi", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 445, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711388832390713344/4Zd6bMg2_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 298, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1027262569", "protected": false, "id": 1027262569, "favourites_count": 1214, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "nikki_nugent", "profile_image_url": "http://pbs.twimg.com/profile_images/711388832390713344/4Zd6bMg2_normal.jpg", "lang": "en", "created_at": "Fri Dec 21 22:12:20 +0000 2012", "profile_use_background_image": true, "name": "nikki nugent", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2291, "is_translator": false}, "text": "Sounds like my brother \ud83d\ude02\ud83e\udd14 https://t.co/Mxa0mgg1bJ", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470515922145280", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/407349893/1456755657", "description": "God is within her, she will not fail \u2020 Sparty on LGRW", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Michigan State University", "follow_request_sent": null, "followers_count": 526, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704394825655787520/G9Xfvzv9_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/582362328/716j7gn1ofknnt9236k0.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 435, "utc_offset": -10800, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/582362328/716j7gn1ofknnt9236k0.jpeg", "time_zone": "Atlantic Time (Canada)", "profile_text_color": "333333", "id_str": "407349893", "protected": false, "id": 407349893, "favourites_count": 11819, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ashhsumm", "profile_image_url": "http://pbs.twimg.com/profile_images/704394825655787520/G9Xfvzv9_normal.jpg", "lang": "en", "created_at": "Mon Nov 07 23:45:19 +0000 2011", "profile_use_background_image": true, "name": "Ashley Summerton", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 16085, "is_translator": false}, "text": "people that think they're better than everyone else are my least favorite kind of people", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716457563634712576", "id": 716457563634712576, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 02:49:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470515922145280, "timestamp_ms": "1459654857031", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/ashhsumm/status/716457563634712576", "indices": [26, 49], "display_url": "twitter.com/ashhsumm/statu\u2026", "url": "https://t.co/Mxa0mgg1bJ"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716457563634712576, "created_at": "Sun Apr 03 03:40:57 +0000 2016", "coordinates": null, "quoted_status_id_str": "716457563634712576", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/46943236/1455930393", "description": "Arizona born, Oregon raised. \nOn a mission to provide for what's mine. \n\n#BEEN", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "F5ABB5", "verified": false, "location": "541\u2708\ufe0f602", "follow_request_sent": null, "followers_count": 809, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/686824944710230016/PZY-ix_s_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576887097262354432/1OEzqPZv.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 1387, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576887097262354432/1OEzqPZv.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "46943236", "protected": false, "id": 46943236, "favourites_count": 5830, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "thuggathugga22", "profile_image_url": "http://pbs.twimg.com/profile_images/686824944710230016/PZY-ix_s_normal.jpg", "lang": "en", "created_at": "Sat Jun 13 19:06:52 +0000 2009", "profile_use_background_image": true, "name": "A.", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 1981, "is_translator": false}, "text": "Ask yourself if youre doing it 4 you or doing it 4 the world. If you say 4 you, you wouldnt give a damn if it wasnt 4 the worlds judgement.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470519969619968", "id": 716470519969619968, "timestamp_ms": "1459654857996", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/386942509/1458546176", "description": null, "profile_sidebar_border_color": "054F36", "profile_background_tile": true, "profile_background_color": "FAA8FA", "verified": false, "location": "East Oakland", "follow_request_sent": null, "followers_count": 586, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701243735204433922/sC8l2gzi_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/658168295/l63uaqz5aake6mdunvw9.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 389, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/658168295/l63uaqz5aake6mdunvw9.jpeg", "time_zone": "Arizona", "profile_text_color": "050505", "id_str": "386942509", "protected": false, "id": 386942509, "favourites_count": 9976, "profile_sidebar_fill_color": "78F0AC", "screen_name": "AKbangaa", "profile_image_url": "http://pbs.twimg.com/profile_images/701243735204433922/sC8l2gzi_normal.jpg", "lang": "en", "created_at": "Sat Oct 08 05:48:34 +0000 2011", "profile_use_background_image": true, "name": "AK", "url": "http://wrongbitch.com", "following": null, "profile_link_color": "2ECCE8", "statuses_count": 41374, "is_translator": false}, "text": "HER NAME IS JULIE AND SHE WORKS AT CASTLE CASINO IN CAMP BERDE https://t.co/fkSNlZVXQG", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470527045476352", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/337955667/1459563908", "description": "NAU.humanitarian/future broadcaster. GOD.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "66D6FF", "verified": false, "location": "CA-Flagstaff AZ", "follow_request_sent": null, "followers_count": 954, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716085156935778304/BwnUE26-_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/381092283/my_tongue_is_bigger_than_yours_.jpg", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 510, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/381092283/my_tongue_is_bigger_than_yours_.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "0EB3E6", "id_str": "337955667", "protected": false, "id": 337955667, "favourites_count": 15797, "profile_sidebar_fill_color": "E5507E", "screen_name": "Jflo16", "profile_image_url": "http://pbs.twimg.com/profile_images/716085156935778304/BwnUE26-_normal.jpg", "lang": "en", "created_at": "Mon Jul 18 21:08:53 +0000 2011", "profile_use_background_image": false, "name": "Jflowin", "url": null, "following": null, "profile_link_color": "B40B43", "statuses_count": 28163, "is_translator": false}, "text": "If anything happens this old white lady with a newer truck picked us up to take us to the gas station", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716469989889298432", "id": 716469989889298432, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:38:51 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470527045476352, "timestamp_ms": "1459654859683", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/jflo16/status/716469989889298432", "indices": [64, 87], "display_url": "twitter.com/jflo16/status/\u2026", "url": "https://t.co/fkSNlZVXQG"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716469989889298432, "created_at": "Sun Apr 03 03:40:59 +0000 2016", "coordinates": null, "quoted_status_id_str": "716469989889298432", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Maricopa, AZ", "place_type": "city", "attributes": {}, "name": "Maricopa", "country": "United States", "id": "001b67fd5761210e", "bounding_box": {"coordinates": [[[-112.079946, 33.029009], [-112.079946, 33.087983], [-111.944584, 33.087983], [-111.944584, 33.029009]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/001b67fd5761210e.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/132322616/1456359719", "description": null, "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "FF6699", "verified": false, "location": "Stay Humble. Stay Blessed.", "follow_request_sent": null, "followers_count": 730, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710013152784678912/R-Cm2sLG_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/665855678/88cb0bb12eddc437a2525653701b264b.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 525, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/665855678/88cb0bb12eddc437a2525653701b264b.jpeg", "time_zone": null, "profile_text_color": "362720", "id_str": "132322616", "protected": false, "id": 132322616, "favourites_count": 4027, "profile_sidebar_fill_color": "E5507E", "screen_name": "Blythiee10", "profile_image_url": "http://pbs.twimg.com/profile_images/710013152784678912/R-Cm2sLG_normal.jpg", "lang": "en", "created_at": "Mon Apr 12 22:56:06 +0000 2010", "profile_use_background_image": true, "name": "blythemichelle", "url": null, "following": null, "profile_link_color": "B40B43", "statuses_count": 30625, "is_translator": false}, "text": "My mom comes in my room & hands me $100 cause she won at the casino \ud83d\ude06\nShe's nice!!", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470529113231360", "id": 716470529113231360, "timestamp_ms": "1459654860176", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716469995358662656", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "4775419994", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4775419994/1459045863", "description": "Phillipians 4:13|#2|Mhs|co' 2019|", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 122, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/703828374792187905/WT3zzkL4_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 114, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4775419994", "protected": false, "id": 4775419994, "favourites_count": 524, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "king_louis02", "profile_image_url": "http://pbs.twimg.com/profile_images/703828374792187905/WT3zzkL4_normal.jpg", "lang": "en", "created_at": "Sun Jan 17 22:08:18 +0000 2016", "profile_use_background_image": true, "name": "Fish", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 229, "is_translator": false}, "text": "@king_louis02 peep the bench \ud83d\udc40\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": "king_louis02", "id_str": "716470534955933696", "id": 716470534955933696, "timestamp_ms": "1459654861569", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Fish", "indices": [0, 13], "id": 4775419994, "screen_name": "king_louis02", "id_str": "4775419994"}], "hashtags": []}, "in_reply_to_user_id": 4775419994, "favorite_count": 0, "in_reply_to_status_id": 716469995358662656, "lang": "en", "created_at": "Sun Apr 03 03:41:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tolleson, AZ", "place_type": "city", "attributes": {}, "name": "Tolleson", "country": "United States", "id": "5fcfe687ac867562", "bounding_box": {"coordinates": [[[-112.289817, 33.435462], [-112.289817, 33.465328], [-112.238243, 33.465328], [-112.238243, 33.435462]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5fcfe687ac867562.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2208053197/1459356582", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 481, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715463428635123713/ha2sqj48_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 329, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2208053197", "protected": false, "id": 2208053197, "favourites_count": 1551, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "aridizzzzle", "profile_image_url": "http://pbs.twimg.com/profile_images/715463428635123713/ha2sqj48_normal.jpg", "lang": "en", "created_at": "Fri Nov 22 00:33:12 +0000 2013", "profile_use_background_image": true, "name": "R E", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 23005, "is_translator": false}, "text": "Dennise played me", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470555998703616", "id": 716470555998703616, "timestamp_ms": "1459654866586", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:06 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4801580772/1459485680", "description": "head inside a dream", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 371, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716143177841770496/lvZnNVuA_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/692936073815658496/Sl9wdXtP.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 259, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/692936073815658496/Sl9wdXtP.jpg", "time_zone": null, "profile_text_color": "000000", "id_str": "4801580772", "protected": false, "id": 4801580772, "favourites_count": 3093, "profile_sidebar_fill_color": "000000", "screen_name": "laurenkgalloway", "profile_image_url": "http://pbs.twimg.com/profile_images/716143177841770496/lvZnNVuA_normal.jpg", "lang": "en", "created_at": "Sat Jan 23 06:34:07 +0000 2016", "profile_use_background_image": true, "name": "LAUR", "url": "http://goonzzzzz.tumblr.com", "following": null, "profile_link_color": "F58EA8", "statuses_count": 2365, "is_translator": false}, "text": "no one is ever down for me", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470559115124737", "id": 716470559115124737, "timestamp_ms": "1459654867329", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2850764084/1459432984", "description": "suh dude", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 143, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713581681253462017/x5FC0RPh_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 129, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2850764084", "protected": false, "id": 2850764084, "favourites_count": 3140, "profile_sidebar_fill_color": "000000", "screen_name": "taylor_mulcahy1", "profile_image_url": "http://pbs.twimg.com/profile_images/713581681253462017/x5FC0RPh_normal.jpg", "lang": "en", "created_at": "Fri Oct 10 17:30:28 +0000 2014", "profile_use_background_image": false, "name": "LIL T", "url": "http://taylormulcahyphotography.weebly.com", "following": null, "profile_link_color": "9266CC", "statuses_count": 3759, "is_translator": false}, "text": "Come roll up to dutch & hang w/ @MaddiHopeeee @colerodriguez14 and I \ud83d\ude0e", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470564114862080", "id": 716470564114862080, "timestamp_ms": "1459654868521", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Mattie\u2764\ufe0f", "indices": [36, 49], "id": 3334285514, "screen_name": "MaddiHopeeee", "id_str": "3334285514"}, {"name": "cole\u203c\ufe0f\u203c\ufe0f", "indices": [50, 66], "id": 2733969239, "screen_name": "colerodriguez14", "id_str": "2733969239"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"description": "Jon is a online marketing consultant on the Internet for work from home businesses. Jon's website...\r\nhttp://jon-ewall.hubpages.com/_ph9ejsxunalx/", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": "us", "follow_request_sent": null, "followers_count": 146, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859604627/CHICAGO_CONSULTANT_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 30, "friends_count": 94, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "time_zone": null, "profile_text_color": "3D1957", "id_str": "67238855", "protected": false, "id": 67238855, "favourites_count": 61, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "jeazman", "profile_image_url": "http://pbs.twimg.com/profile_images/1859604627/CHICAGO_CONSULTANT_normal.jpg", "lang": "en", "created_at": "Thu Aug 20 05:33:00 +0000 2009", "profile_use_background_image": true, "name": "jon ewall", "url": "http://www.chicagoconsultant.com", "following": null, "profile_link_color": "FF0000", "statuses_count": 144708, "is_translator": false}, "text": "11/7/14 World\u2019s largest solar plant applying for federal grant to\nPay Off Fed Loan https://t.co/2hUB698YdZ\nGoogle NRG Ivanpah plant $1.6B", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470577779712000", "id": 716470577779712000, "timestamp_ms": "1459654871779", "entities": {"symbols": [], "urls": [{"expanded_url": "http://www.foxnews.com/politics/2014/11/07/world-largest-solar-plant-applying-for-federal-grant-to-pay-off-its-federal/", "indices": [83, 106], "display_url": "foxnews.com/politics/2014/\u2026", "url": "https://t.co/2hUB698YdZ"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716470413610487808/pu/vid/240x240/ydJfISVhptt32uas.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716470413610487808/pu/pl/EKeqzKlMXrNrYIYy.m3u8"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716470413610487808/pu/pl/EKeqzKlMXrNrYIYy.mpd"}], "aspect_ratio": [1, 1], "duration_millis": 17633}, "url": "https://t.co/b8jSh5iaRe", "sizes": {"small": {"w": 320, "resize": "fit", "h": 320}, "large": {"w": 320, "resize": "fit", "h": 320}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 320, "resize": "fit", "h": 320}}, "type": "video", "expanded_url": "http://twitter.com/almada_stella/status/716470578299801600/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716470413610487808/pu/img/71pvSBA_pqxn8RsJ.jpg", "indices": [68, 91], "id": 716470413610487808, "id_str": "716470413610487808", "display_url": "pic.twitter.com/b8jSh5iaRe", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716470413610487808/pu/img/71pvSBA_pqxn8RsJ.jpg"}]}, "place": {"full_name": "Castles N' Coasters", "place_type": "poi", "attributes": {}, "name": "Castles N' Coasters", "country": "United States", "id": "07d9db0ab4480000", "bounding_box": {"coordinates": [[[-112.118762, 33.572616], [-112.118762, 33.572616], [-112.118762, 33.572616], [-112.118762, 33.572616]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/07d9db0ab4480000.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3322675482/1458190605", "description": "WCHS", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "with my nigga cewa ", "follow_request_sent": null, "followers_count": 88, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710244686737186816/6xMM9pRu_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 64, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "3322675482", "protected": false, "id": 3322675482, "favourites_count": 485, "profile_sidebar_fill_color": "000000", "screen_name": "almada_stella", "profile_image_url": "http://pbs.twimg.com/profile_images/710244686737186816/6xMM9pRu_normal.jpg", "lang": "en", "created_at": "Fri Aug 21 20:51:53 +0000 2015", "profile_use_background_image": false, "name": "Stella", "url": null, "following": null, "profile_link_color": "89C9FA", "statuses_count": 759, "is_translator": false}, "text": "I honestly love this kid so much , even tho he's a pain in my ass \ud83d\udc95 https://t.co/b8jSh5iaRe", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470578299801600", "id": 716470578299801600, "timestamp_ms": "1459654871903", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/b8jSh5iaRe", "sizes": {"small": {"w": 320, "resize": "fit", "h": 320}, "large": {"w": 320, "resize": "fit", "h": 320}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 320, "resize": "fit", "h": 320}}, "type": "photo", "expanded_url": "http://twitter.com/almada_stella/status/716470578299801600/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716470413610487808/pu/img/71pvSBA_pqxn8RsJ.jpg", "indices": [68, 91], "id": 716470413610487808, "id_str": "716470413610487808", "display_url": "pic.twitter.com/b8jSh5iaRe", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716470413610487808/pu/img/71pvSBA_pqxn8RsJ.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2208385982/1452306583", "description": "Growing Real Estate Mogul | Aspiring Philanthropist | Conservative | Slightly Eccentric & Tastefully Unique | Amway IBO | Mail - connor@lacamasholdings.com", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Camas, WA \u2708\ufe0f Margaritaville ", "follow_request_sent": null, "followers_count": 473, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/702218196099555328/-RQgHc3Y_normal.png", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 405, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2208385982", "protected": false, "id": 2208385982, "favourites_count": 4467, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ConnorZuvich", "profile_image_url": "http://pbs.twimg.com/profile_images/702218196099555328/-RQgHc3Y_normal.png", "lang": "en", "created_at": "Fri Nov 22 05:38:14 +0000 2013", "profile_use_background_image": true, "name": "Connor S. Zuvich", "url": "http://www.amway.com/ConnorZuvich", "following": null, "profile_link_color": "0084B4", "statuses_count": 1594, "is_translator": false}, "text": "Dear Zachary is by far the best documentary on Netflix, but it makes me so mad. I'll never get why the worst things happen to the best ppl \ud83d\ude21", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470580652802048", "id": 716470580652802048, "timestamp_ms": "1459654872464", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:12 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Anthem, AZ", "place_type": "city", "attributes": {}, "name": "Anthem", "country": "United States", "id": "01d5798f59d51d79", "bounding_box": {"coordinates": [[[-112.164272, 33.784511], [-112.164272, 33.885193], [-112.012981, 33.885193], [-112.012981, 33.784511]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/01d5798f59d51d79.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2773545337/1446563154", "description": "bchs 2017", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 291, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715553444279373824/YcT7ibqN_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 234, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "2773545337", "protected": false, "id": 2773545337, "favourites_count": 9971, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "sabribricole", "profile_image_url": "http://pbs.twimg.com/profile_images/715553444279373824/YcT7ibqN_normal.jpg", "lang": "en", "created_at": "Wed Aug 27 15:03:00 +0000 2014", "profile_use_background_image": true, "name": "bri", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3422, "is_translator": false}, "text": "i hateee waiting \ud83d\ude29\ud83d\ude44", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470582548832256", "id": 716470582548832256, "timestamp_ms": "1459654872916", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:12 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/74653768/1459316569", "description": "@vicczaac wants a donkey and Idk why", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "099E9E", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 1129, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711768566698090496/gJysrRiN_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685158766/c68c55765a4ef8aae69b87c113385c7d.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 2045, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685158766/c68c55765a4ef8aae69b87c113385c7d.jpeg", "time_zone": "Central Time (US & Canada)", "profile_text_color": "050505", "id_str": "74653768", "protected": false, "id": 74653768, "favourites_count": 19029, "profile_sidebar_fill_color": "632CDB", "screen_name": "Aj_Dreww", "profile_image_url": "http://pbs.twimg.com/profile_images/711768566698090496/gJysrRiN_normal.jpg", "lang": "en", "created_at": "Wed Sep 16 04:40:40 +0000 2009", "profile_use_background_image": true, "name": "King AJ", "url": null, "following": null, "profile_link_color": "030303", "statuses_count": 22461, "is_translator": false}, "text": "\u2764 https://t.co/sbSsPOfs8h", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470584859697152", "id": 716470584859697152, "timestamp_ms": "1459654873467", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/vicczaac/status/716466164923170816", "indices": [2, 25], "display_url": "twitter.com/vicczaac/statu\u2026", "url": "https://t.co/sbSsPOfs8h"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:41:13 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/37110236/1414563448", "description": "Awake and Unafraid.", "profile_sidebar_border_color": "FFF0F5", "profile_background_tile": false, "profile_background_color": "FFE1FF", "verified": false, "location": "Live From Phoenix ", "follow_request_sent": null, "followers_count": 178, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716417699279056896/OnntE1ZO_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/277423584/ps_i_love_you.JPG", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 625, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/277423584/ps_i_love_you.JPG", "time_zone": "Arizona", "profile_text_color": "8B7E66", "id_str": "37110236", "protected": false, "id": 37110236, "favourites_count": 2564, "profile_sidebar_fill_color": "FFFFF0", "screen_name": "keepingitspooky", "profile_image_url": "http://pbs.twimg.com/profile_images/716417699279056896/OnntE1ZO_normal.jpg", "lang": "en", "created_at": "Sat May 02 02:02:23 +0000 2009", "profile_use_background_image": true, "name": "Marisa Rael", "url": null, "following": null, "profile_link_color": "8A664D", "statuses_count": 9439, "is_translator": false}, "text": "This cop literally used his lights to get a shorter light.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470593000869888", "id": 716470593000869888, "timestamp_ms": "1459654875408", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:15 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/215437976/1457925338", "description": "Have courage and be kind. #totravelistolive\u2600\ufe0f", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 251, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714109788238520321/vGMvhUNU_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 193, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "215437976", "protected": false, "id": 215437976, "favourites_count": 6229, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Gabby_rosas6", "profile_image_url": "http://pbs.twimg.com/profile_images/714109788238520321/vGMvhUNU_normal.jpg", "lang": "en", "created_at": "Sat Nov 13 23:10:07 +0000 2010", "profile_use_background_image": true, "name": "Gabriela Rosas", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 8086, "is_translator": false}, "text": "In-N-Out?\ud83d\ude1b\ud83e\udd14", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470598134697985", "id": 716470598134697985, "timestamp_ms": "1459654876632", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/8zqDL8fwc4", "sizes": {"large": {"w": 636, "resize": "fit", "h": 403}, "small": {"w": 340, "resize": "fit", "h": 215}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 380}}, "type": "photo", "expanded_url": "http://twitter.com/BANU_ZENGANA/status/716470620641497088/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqJ5xUIAEk5HC.jpg", "indices": [54, 77], "id": 716470534087647233, "id_str": "716470534087647233", "display_url": "pic.twitter.com/8zqDL8fwc4", "media_url": "http://pbs.twimg.com/media/CfFqJ5xUIAEk5HC.jpg"}, {"url": "https://t.co/8zqDL8fwc4", "sizes": {"small": {"w": 340, "resize": "fit", "h": 208}, "large": {"w": 640, "resize": "fit", "h": 391}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 367}}, "type": "photo", "expanded_url": "http://twitter.com/BANU_ZENGANA/status/716470620641497088/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqJ5OUMAACII2.jpg", "indices": [54, 77], "id": 716470533940850688, "id_str": "716470533940850688", "display_url": "pic.twitter.com/8zqDL8fwc4", "media_url": "http://pbs.twimg.com/media/CfFqJ5OUMAACII2.jpg"}, {"url": "https://t.co/8zqDL8fwc4", "sizes": {"small": {"w": 340, "resize": "fit", "h": 167}, "large": {"w": 640, "resize": "fit", "h": 315}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 295}}, "type": "photo", "expanded_url": "http://twitter.com/BANU_ZENGANA/status/716470620641497088/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqJ5NUYAAr1us.jpg", "indices": [54, 77], "id": 716470533936668672, "id_str": "716470533936668672", "display_url": "pic.twitter.com/8zqDL8fwc4", "media_url": "http://pbs.twimg.com/media/CfFqJ5NUYAAr1us.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2308536140/1459109425", "description": "I know there's reason why everybody wants it so much . Love is the closest thing we have to magic.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "prob looking at stars with JB", "follow_request_sent": null, "followers_count": 221, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711387186147565569/skbc1AUd_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 106, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2308536140", "protected": false, "id": 2308536140, "favourites_count": 15809, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "BANU_ZENGANA", "profile_image_url": "http://pbs.twimg.com/profile_images/711387186147565569/skbc1AUd_normal.jpg", "lang": "en", "created_at": "Fri Jan 24 15:30:07 +0000 2014", "profile_use_background_image": true, "name": "J's Girl", "url": "http://youtu.be/9hAOXbiGF38", "following": null, "profile_link_color": "0084B4", "statuses_count": 8180, "is_translator": false}, "text": "I was actually really good at cod idk why I stopped \ud83d\ude02 https://t.co/8zqDL8fwc4", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470620641497088", "id": 716470620641497088, "timestamp_ms": "1459654881998", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/8zqDL8fwc4", "sizes": {"large": {"w": 636, "resize": "fit", "h": 403}, "small": {"w": 340, "resize": "fit", "h": 215}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 380}}, "type": "photo", "expanded_url": "http://twitter.com/BANU_ZENGANA/status/716470620641497088/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqJ5xUIAEk5HC.jpg", "indices": [54, 77], "id": 716470534087647233, "id_str": "716470534087647233", "display_url": "pic.twitter.com/8zqDL8fwc4", "media_url": "http://pbs.twimg.com/media/CfFqJ5xUIAEk5HC.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:21 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2857978582/1457589418", "description": "We just have a bad history with freaks dressed like clowns.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 1289, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716421234259460096/GY3x9Wak_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 40, "friends_count": 567, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2857978582", "protected": false, "id": 2857978582, "favourites_count": 17252, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "dcmarvel88", "profile_image_url": "http://pbs.twimg.com/profile_images/716421234259460096/GY3x9Wak_normal.jpg", "lang": "en", "created_at": "Mon Nov 03 00:18:32 +0000 2014", "profile_use_background_image": true, "name": "Flash Enterprises", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 19887, "is_translator": false}, "text": "\"Other Worlds.\" YEEEES! https://t.co/N7v6Wg4giF", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470625091465216", "quoted_status": {"in_reply_to_status_id_str": "716261722701631489", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "4882074838", "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CfFpfraWsAAwCtY.mp4"}], "aspect_ratio": [61, 36]}, "url": "https://t.co/IEMu5Tzejm", "sizes": {"large": {"w": 244, "resize": "fit", "h": 144}, "small": {"w": 244, "resize": "fit", "h": 144}, "thumb": {"w": 144, "resize": "crop", "h": 144}, "medium": {"w": 244, "resize": "fit", "h": 144}}, "type": "animated_gif", "expanded_url": "http://twitter.com/dceuladies/status/716469861501808640/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFpfraWsAAwCtY.jpg", "indices": [8, 31], "id": 716469808678744064, "id_str": "716469808678744064", "display_url": "pic.twitter.com/IEMu5Tzejm", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFpfraWsAAwCtY.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4882074838/1459381269", "description": "pics, edits, videos and gifs (not mine) of ladies from dceu universe", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 398, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716468954198372352/aAv5Cex6_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 46, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4882074838", "protected": false, "id": 4882074838, "favourites_count": 137, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "dceuladies", "profile_image_url": "http://pbs.twimg.com/profile_images/716468954198372352/aAv5Cex6_normal.jpg", "lang": "pt", "created_at": "Sat Feb 06 15:54:31 +0000 2016", "profile_use_background_image": true, "name": "\u2728 dceu ladies \u2728", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 193, "is_translator": false}, "text": "queen \u2728 https://t.co/IEMu5Tzejm", "retweeted": false, "in_reply_to_screen_name": "dceuladies", "id_str": "716469861501808640", "id": 716469861501808640, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/IEMu5Tzejm", "sizes": {"large": {"w": 244, "resize": "fit", "h": 144}, "small": {"w": 244, "resize": "fit", "h": 144}, "thumb": {"w": 144, "resize": "crop", "h": 144}, "medium": {"w": 244, "resize": "fit", "h": 144}}, "type": "photo", "expanded_url": "http://twitter.com/dceuladies/status/716469861501808640/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFpfraWsAAwCtY.jpg", "indices": [8, 31], "id": 716469808678744064, "id_str": "716469808678744064", "display_url": "pic.twitter.com/IEMu5Tzejm", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFpfraWsAAwCtY.jpg"}]}, "in_reply_to_user_id": 4882074838, "favorite_count": 0, "in_reply_to_status_id": 716261722701631489, "lang": "en", "created_at": "Sun Apr 03 03:38:21 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470625091465216, "timestamp_ms": "1459654883059", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/dceuladies/status/716469861501808640", "indices": [24, 47], "display_url": "twitter.com/dceuladies/sta\u2026", "url": "https://t.co/N7v6Wg4giF"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716469861501808640, "created_at": "Sun Apr 03 03:41:23 +0000 2016", "coordinates": null, "quoted_status_id_str": "716469861501808640", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/DRL56lrwXQ", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/roxrome/status/716470622734299137/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqMWKUkAAH1-3.jpg", "indices": [70, 93], "id": 716470576068464640, "id_str": "716470576068464640", "display_url": "pic.twitter.com/DRL56lrwXQ", "media_url": "http://pbs.twimg.com/media/CfFqMWKUkAAH1-3.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/482275506/1371382572", "description": "Sun Devil. Journalist. Sports Addict. Hockey Nerd. HTML Queen. Bay Area Native. @SFSU Alumna.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "131516", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 149, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/695769005378789376/zKto8Ldz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/416987264/DSC_0066_3.jpg", "default_profile_image": false, "notifications": null, "listed_count": 11, "friends_count": 552, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/416987264/DSC_0066_3.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "482275506", "protected": false, "id": 482275506, "favourites_count": 3055, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "roxrome", "profile_image_url": "http://pbs.twimg.com/profile_images/695769005378789376/zKto8Ldz_normal.jpg", "lang": "en", "created_at": "Fri Feb 03 18:33:16 +0000 2012", "profile_use_background_image": true, "name": "Rochelle Romero", "url": "https://rochelleromero.wordpress.com", "following": null, "profile_link_color": "009999", "statuses_count": 1793, "is_translator": false}, "text": "Matthews being interviewed by Fox Sports. #WSHvsARI #MCO540 #NHLDraft https://t.co/DRL56lrwXQ", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470622734299137", "id": 716470622734299137, "timestamp_ms": "1459654882497", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [42, 51], "text": "WSHvsARI"}, {"indices": [52, 59], "text": "MCO540"}, {"indices": [60, 69], "text": "NHLDraft"}], "media": [{"url": "https://t.co/DRL56lrwXQ", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/roxrome/status/716470622734299137/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqMWKUkAAH1-3.jpg", "indices": [70, 93], "id": 716470576068464640, "id_str": "716470576068464640", "display_url": "pic.twitter.com/DRL56lrwXQ", "media_url": "http://pbs.twimg.com/media/CfFqMWKUkAAH1-3.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:22 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2191093538/1454462733", "description": "#Bernie2016 #Gmos #FastTrack #NoTPP #HumanRights #NoTTIP #WeWantDebates #NoIranWar #DenverBroncos", "profile_sidebar_border_color": "FFF8AD", "profile_background_tile": false, "profile_background_color": "FFF04D", "verified": false, "location": "Sedona, AZ,USA", "follow_request_sent": null, "followers_count": 2042, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697197234148904960/ix4MUgqZ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 202, "friends_count": 2086, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "time_zone": null, "profile_text_color": "333333", "id_str": "2191093538", "protected": false, "id": 2191093538, "favourites_count": 130190, "profile_sidebar_fill_color": "F6FFD1", "screen_name": "nancysuzyq", "profile_image_url": "http://pbs.twimg.com/profile_images/697197234148904960/ix4MUgqZ_normal.jpg", "lang": "en", "created_at": "Tue Nov 12 21:39:35 +0000 2013", "profile_use_background_image": true, "name": "nancy r. strong", "url": null, "following": null, "profile_link_color": "0099CC", "statuses_count": 75646, "is_translator": false}, "text": "#BernieTakesNevada https://t.co/sM4bZAqoM4", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470626664382464", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "possibly_sensitive": false, "place": null, "is_quote_status": true, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Philadelphia, PA", "follow_request_sent": null, "followers_count": 169, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714753428346511361/c3ZAvmGR_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 15, "friends_count": 313, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "708661555798392832", "protected": false, "id": 708661555798392832, "favourites_count": 2351, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Barkley4Bernie", "profile_image_url": "http://pbs.twimg.com/profile_images/714753428346511361/c3ZAvmGR_normal.jpg", "lang": "en", "created_at": "Sat Mar 12 14:30:56 +0000 2016", "profile_use_background_image": true, "name": "Barkley4Bernie", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 957, "is_translator": false}, "text": "#BernieTakesNevada #FeeltheBern https://t.co/TE4QpP5H15", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716461778457255936", "id": 716461778457255936, "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/berniewins2016/status/716459536022786048", "indices": [33, 56], "display_url": "twitter.com/berniewins2016\u2026", "url": "https://t.co/TE4QpP5H15"}], "user_mentions": [], "hashtags": [{"indices": [0, 18], "text": "BernieTakesNevada"}, {"indices": [19, 31], "text": "FeeltheBern"}]}, "in_reply_to_user_id": null, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716459536022786048, "created_at": "Sun Apr 03 03:06:13 +0000 2016", "coordinates": null, "quoted_status_id_str": "716459536022786048", "retweet_count": 0, "geo": null}, "id": 716470626664382464, "timestamp_ms": "1459654883434", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/Barkley4Bernie/status/716461778457255936", "indices": [19, 42], "display_url": "twitter.com/Barkley4Bernie\u2026", "url": "https://t.co/sM4bZAqoM4"}], "user_mentions": [], "hashtags": [{"indices": [0, 18], "text": "BernieTakesNevada"}]}, "in_reply_to_user_id": null, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716461778457255936, "created_at": "Sun Apr 03 03:41:23 +0000 2016", "coordinates": null, "quoted_status_id_str": "716461778457255936", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2377962129/1459035320", "description": "Tell me why you hatin? Tell me why you really mad? #LongLiveChillll #UNMLobo", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 819, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714270651062874112/GmoiKlP6_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 535, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2377962129", "protected": false, "id": 2377962129, "favourites_count": 4205, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ItsSimplySteph_", "profile_image_url": "http://pbs.twimg.com/profile_images/714270651062874112/GmoiKlP6_normal.jpg", "lang": "en", "created_at": "Mon Mar 03 03:32:37 +0000 2014", "profile_use_background_image": true, "name": "Queen Stephh", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 32231, "is_translator": false}, "text": "I ask josh if he has addys and he goes \"you're in Arizona\" like biiiitch I have friends ok they like to party too \ud83d\ude02 I'm generous", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470628702769152", "id": 716470628702769152, "timestamp_ms": "1459654883920", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:23 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "passionate, conservative, innovative, free market enthusiast of financial independence through limited, constitutional government", "profile_sidebar_border_color": "829D5E", "profile_background_tile": false, "profile_background_color": "352726", "verified": false, "location": "Phoenix", "follow_request_sent": null, "followers_count": 14190, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/501159742836727808/6GeBWpkC_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 314, "friends_count": 13944, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3E4415", "id_str": "20826129", "protected": false, "id": 20826129, "favourites_count": 119, "profile_sidebar_fill_color": "99CC33", "screen_name": "tasteofaz", "profile_image_url": "http://pbs.twimg.com/profile_images/501159742836727808/6GeBWpkC_normal.png", "lang": "en", "created_at": "Sat Feb 14 02:22:28 +0000 2009", "profile_use_background_image": true, "name": "AZ Dreamer", "url": null, "following": null, "profile_link_color": "D02B55", "statuses_count": 218270, "is_translator": false}, "text": "Cruz My FAV 'Til I Did My Homework/ Do Urs B4 UVote https://t.co/D8AHiuQ1ZL #OnlyTRUMP in #WIPrimary #NYPrimary #1237ChokesGOPe #DitchMSM", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470643189878785", "id": 716470643189878785, "timestamp_ms": "1459654887374", "entities": {"symbols": [], "urls": [{"expanded_url": "http://tl.gd/n_1soh0dv", "indices": [52, 75], "display_url": "tl.gd/n_1soh0dv", "url": "https://t.co/D8AHiuQ1ZL"}], "user_mentions": [], "hashtags": [{"indices": [76, 86], "text": "OnlyTRUMP"}, {"indices": [90, 100], "text": "WIPrimary"}, {"indices": [101, 111], "text": "NYPrimary"}, {"indices": [112, 127], "text": "1237ChokesGOPe"}, {"indices": [128, 137], "text": "DitchMSM"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:27 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/215437976/1457925338", "description": "Have courage and be kind. #totravelistolive\u2600\ufe0f", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 251, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714109788238520321/vGMvhUNU_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 193, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "215437976", "protected": false, "id": 215437976, "favourites_count": 6229, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Gabby_rosas6", "profile_image_url": "http://pbs.twimg.com/profile_images/714109788238520321/vGMvhUNU_normal.jpg", "lang": "en", "created_at": "Sat Nov 13 23:10:07 +0000 2010", "profile_use_background_image": true, "name": "Gabriela Rosas", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 8087, "is_translator": false}, "text": "I'm almost going home \ud83d\ude4c\ud83c\udffd", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470648227254273", "id": 716470648227254273, "timestamp_ms": "1459654888575", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/79622681/1349374744", "description": "Native America's Fav #Navajo || DJ - Producer - Manager || #IndigenousKings #SkullControlRecords", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": false, "profile_background_color": "131516", "verified": false, "location": "The Southwest", "follow_request_sent": null, "followers_count": 2335, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/706517039674839040/lzelyOYr_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328374379/DJYNtwitter1920x1200.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 1172, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328374379/DJYNtwitter1920x1200.jpg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "333333", "id_str": "79622681", "protected": false, "id": 79622681, "favourites_count": 9798, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "YoungNative1491", "profile_image_url": "http://pbs.twimg.com/profile_images/706517039674839040/lzelyOYr_normal.jpg", "lang": "en", "created_at": "Sun Oct 04 02:15:03 +0000 2009", "profile_use_background_image": true, "name": "|| N\u039b\u03a4\u0399VE ||", "url": "http://m.SoundCloud.com/djyoungnative", "following": null, "profile_link_color": "009999", "statuses_count": 29416, "is_translator": false}, "text": "Tonight - The #PreSeasonTour is at lastexitlive in Down Town #PHX #AZ @ Last Exit Live https://t.co/QDAZptvQTS", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470653340225536", "id": 716470653340225536, "timestamp_ms": "1459654889794", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuS_jGkNDj/", "indices": [87, 110], "display_url": "instagram.com/p/BDuS_jGkNDj/", "url": "https://t.co/QDAZptvQTS"}], "user_mentions": [], "hashtags": [{"indices": [14, 28], "text": "PreSeasonTour"}, {"indices": [61, 65], "text": "PHX"}, {"indices": [66, 69], "text": "AZ"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:29 +0000 2016", "coordinates": {"coordinates": [-112.0734329, 33.4404106], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4404106, -112.0734329], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"description": "Jon is a online marketing consultant on the Internet for work from home businesses. Jon's website...\r\nhttp://jon-ewall.hubpages.com/_ph9ejsxunalx/", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": "us", "follow_request_sent": null, "followers_count": 146, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859604627/CHICAGO_CONSULTANT_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 30, "friends_count": 94, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "time_zone": null, "profile_text_color": "3D1957", "id_str": "67238855", "protected": false, "id": 67238855, "favourites_count": 61, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "jeazman", "profile_image_url": "http://pbs.twimg.com/profile_images/1859604627/CHICAGO_CONSULTANT_normal.jpg", "lang": "en", "created_at": "Thu Aug 20 05:33:00 +0000 2009", "profile_use_background_image": true, "name": "jon ewall", "url": "http://www.chicagoconsultant.com", "following": null, "profile_link_color": "FF0000", "statuses_count": 144709, "is_translator": false}, "text": "10/29/15 Taxpayer-backed solar plant actually a carbon polluter https://t.co/ZKnmCWDSo0", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470655072350208", "id": 716470655072350208, "timestamp_ms": "1459654890207", "entities": {"symbols": [], "urls": [{"expanded_url": "http://www.foxnews.com/politics/2015/10/29/taxpayer-backed-solar-plant-actually-carbon-polluter/", "indices": [64, 87], "display_url": "foxnews.com/politics/2015/\u2026", "url": "https://t.co/ZKnmCWDSo0"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/220815041/1459281923", "description": "look him in the eye aim no higher summon all the courage you require then count", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 360, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/284383189/images.jpg", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 1125, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/284383189/images.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3D1957", "id_str": "220815041", "protected": false, "id": 220815041, "favourites_count": 6851, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "Megsmatagges", "profile_image_url": "http://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "lang": "en", "created_at": "Sun Nov 28 22:32:52 +0000 2010", "profile_use_background_image": true, "name": "\u24c2 e g s", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 26674, "is_translator": false}, "text": "CONGRATS TO THE CAST OF MILLIE", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470661019860993", "id": 716470661019860993, "timestamp_ms": "1459654891625", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:31 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/126080608/1453786896", "description": "#marriedbroker", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Dallas, TX", "follow_request_sent": null, "followers_count": 105, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/605223643207958528/peezLWqt_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 317, "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Central Time (US & Canada)", "profile_text_color": "333333", "id_str": "126080608", "protected": false, "id": 126080608, "favourites_count": 1820, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JasonB03", "profile_image_url": "http://pbs.twimg.com/profile_images/605223643207958528/peezLWqt_normal.jpg", "lang": "en", "created_at": "Wed Mar 24 19:42:50 +0000 2010", "profile_use_background_image": true, "name": "Jason Berry", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2500, "is_translator": false}, "text": "Some #pizza , #drinks , and #livemusic to cap off a wonderful day with my little love @knicole\u2026 https://t.co/d1RETMtoIQ", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470660659326977", "id": 716470660659326977, "timestamp_ms": "1459654891539", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuS_66wjoe/", "indices": [96, 119], "display_url": "instagram.com/p/BDuS_66wjoe/", "url": "https://t.co/d1RETMtoIQ"}], "user_mentions": [{"name": "Kelsey Berry", "indices": [86, 94], "id": 18079309, "screen_name": "knicole", "id_str": "18079309"}], "hashtags": [{"indices": [5, 11], "text": "pizza"}, {"indices": [14, 21], "text": "drinks"}, {"indices": [28, 38], "text": "livemusic"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:31 +0000 2016", "coordinates": {"coordinates": [-112.0798264, 33.4549484], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4549484, -112.0798264], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1164769538", "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1954954058/1459179514", "description": "Barista\u2615 Love God. Love Life.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "{MCC\u27a1ASU} Mesa, AZ", "follow_request_sent": null, "followers_count": 313, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714476937394126849/JPR8A8Tt_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 238, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1954954058", "protected": false, "id": 1954954058, "favourites_count": 6649, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tvodika81", "profile_image_url": "http://pbs.twimg.com/profile_images/714476937394126849/JPR8A8Tt_normal.jpg", "lang": "en", "created_at": "Fri Oct 11 19:51:15 +0000 2013", "profile_use_background_image": true, "name": "Tommy\u2122", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 6072, "is_translator": false}, "text": "@maddyresmith https://t.co/ugSfbJsqP4", "retweeted": false, "in_reply_to_screen_name": "maddyresmith", "id_str": "716470661938458626", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Buffer", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/TM5JcrItjl", "sizes": {"small": {"w": 340, "resize": "fit", "h": 347}, "large": {"w": 1024, "resize": "fit", "h": 1046}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 613}}, "type": "photo", "expanded_url": "http://twitter.com/EmergencyPugs/status/716397596009447425/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfEn0UQWIAAPd7Q.jpg", "indices": [35, 58], "id": 716397595472568320, "id_str": "716397595472568320", "display_url": "pic.twitter.com/TM5JcrItjl", "media_url": "http://pbs.twimg.com/media/CfEn0UQWIAAPd7Q.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2269130208/1435168179", "description": "We didn't choose the pug life. *We claim no ownership to the pictures we use.* Email your pictures to EmergencyPugs@yahoo.com! or DM them to us!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 302110, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/558039977209393155/xs_V7i0K_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 302, "friends_count": 16, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2269130208", "protected": false, "id": 2269130208, "favourites_count": 86, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "EmergencyPugs", "profile_image_url": "http://pbs.twimg.com/profile_images/558039977209393155/xs_V7i0K_normal.jpeg", "lang": "en", "created_at": "Mon Dec 30 16:54:37 +0000 2013", "profile_use_background_image": true, "name": "Emergency Pugs", "url": "http://instagram.com/pugemergency", "following": null, "profile_link_color": "0084B4", "statuses_count": 3174, "is_translator": false}, "text": "literally my favorite picture ever https://t.co/TM5JcrItjl", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716397596009447425", "id": 716397596009447425, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/TM5JcrItjl", "sizes": {"small": {"w": 340, "resize": "fit", "h": 347}, "large": {"w": 1024, "resize": "fit", "h": 1046}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 613}}, "type": "photo", "expanded_url": "http://twitter.com/EmergencyPugs/status/716397596009447425/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfEn0UQWIAAPd7Q.jpg", "indices": [35, 58], "id": 716397595472568320, "id_str": "716397595472568320", "display_url": "pic.twitter.com/TM5JcrItjl", "media_url": "http://pbs.twimg.com/media/CfEn0UQWIAAPd7Q.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sat Apr 02 22:51:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470661938458626, "timestamp_ms": "1459654891844", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/EmergencyPugs/status/716397596009447425", "indices": [14, 37], "display_url": "twitter.com/EmergencyPugs/\u2026", "url": "https://t.co/ugSfbJsqP4"}], "user_mentions": [{"name": "madiddy", "indices": [0, 13], "id": 1164769538, "screen_name": "maddyresmith", "id_str": "1164769538"}], "hashtags": []}, "in_reply_to_user_id": 1164769538, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716397596009447425, "created_at": "Sun Apr 03 03:41:31 +0000 2016", "coordinates": null, "quoted_status_id_str": "716397596009447425", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/XFgBYvNqM0", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 1024, "resize": "fit", "h": 768}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 450}}, "type": "photo", "expanded_url": "http://twitter.com/marbs50/status/716470660055207936/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqQnrUEAAa6tW.jpg", "indices": [41, 64], "id": 716470649489723392, "id_str": "716470649489723392", "display_url": "pic.twitter.com/XFgBYvNqM0", "media_url": "http://pbs.twimg.com/media/CfFqQnrUEAAa6tW.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/34046041/1451943189", "description": "Proud papa of 3 great kids. Vandal fan for life and just peddling a few apples around the world everyday", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Wenatchee, WA", "follow_request_sent": null, "followers_count": 93, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697248384000745472/N8QYh6MP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 195, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "34046041", "protected": false, "id": 34046041, "favourites_count": 1679, "profile_sidebar_fill_color": "000000", "screen_name": "marbs50", "profile_image_url": "http://pbs.twimg.com/profile_images/697248384000745472/N8QYh6MP_normal.jpg", "lang": "en", "created_at": "Tue Apr 21 21:18:57 +0000 2009", "profile_use_background_image": false, "name": "Leelard", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 3719, "is_translator": false}, "text": "These guys. Brothers for life #GoVandals https://t.co/XFgBYvNqM0", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470660055207936", "id": 716470660055207936, "timestamp_ms": "1459654891395", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [30, 40], "text": "GoVandals"}], "media": [{"url": "https://t.co/XFgBYvNqM0", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 1024, "resize": "fit", "h": 768}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 450}}, "type": "photo", "expanded_url": "http://twitter.com/marbs50/status/716470660055207936/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqQnrUEAAa6tW.jpg", "indices": [41, 64], "id": 716470649489723392, "id_str": "716470649489723392", "display_url": "pic.twitter.com/XFgBYvNqM0", "media_url": "http://pbs.twimg.com/media/CfFqQnrUEAAa6tW.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:31 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2719979400/1459580989", "description": "something cool", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Coachella, CA/Fullerton, CA", "follow_request_sent": null, "followers_count": 713, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716336542998892544/I2AnjCPL_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 8, "friends_count": 316, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2719979400", "protected": false, "id": 2719979400, "favourites_count": 7857, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "paaowow_", "profile_image_url": "http://pbs.twimg.com/profile_images/716336542998892544/I2AnjCPL_normal.jpg", "lang": "en", "created_at": "Sat Aug 09 19:33:56 +0000 2014", "profile_use_background_image": true, "name": "paola salcedo", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 28732, "is_translator": false}, "text": "\ud83d\ude02\ud83d\ude02 https://t.co/bLySCI1GJL", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470668821278720", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1127099168/1450044983", "description": "DM me for music promotion. \u2800\u2800\u2800\u2800\u2800\u2800\u2800 \u2800\u2800 snapchat: KingMiller15", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "020608", "verified": false, "location": "Los Angeles, CA", "follow_request_sent": null, "followers_count": 75831, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/700930899316084736/Eut2znVj_normal.png", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865974173/5b19562648bdae24fccb8a5a513558ae.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 177, "friends_count": 895, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865974173/5b19562648bdae24fccb8a5a513558ae.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "1127099168", "protected": false, "id": 1127099168, "favourites_count": 952, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "KingMiller_", "profile_image_url": "http://pbs.twimg.com/profile_images/700930899316084736/Eut2znVj_normal.png", "lang": "en", "created_at": "Mon Jan 28 05:34:13 +0000 2013", "profile_use_background_image": true, "name": "Leonardo", "url": "http://soundcloud.com/taymasterchef", "following": null, "profile_link_color": "000088", "statuses_count": 41398, "is_translator": false}, "text": "Just cause someone finds you attractive doesn't mean they like you nor does it mean they want to date you.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "545057958028001280", "id": 545057958028001280, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Wed Dec 17 03:28:38 +0000 2014", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470668821278720, "timestamp_ms": "1459654893485", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/kingmiller_/status/545057958028001280", "indices": [3, 26], "display_url": "twitter.com/kingmiller_/st\u2026", "url": "https://t.co/bLySCI1GJL"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 545057958028001280, "created_at": "Sun Apr 03 03:41:33 +0000 2016", "coordinates": null, "quoted_status_id_str": "545057958028001280", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/479968640/1448352188", "description": null, "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "141111", "verified": false, "location": "United States", "follow_request_sent": null, "followers_count": 419, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 356, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "479968640", "protected": false, "id": 479968640, "favourites_count": 7137, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "charliboyy_963", "profile_image_url": "http://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "lang": "en", "created_at": "Wed Feb 01 00:00:53 +0000 2012", "profile_use_background_image": true, "name": "\u267f\u2122M3_963", "url": null, "following": null, "profile_link_color": "990000", "statuses_count": 18121, "is_translator": false}, "text": "If you want to go to country thunder get your 4 day pass and you can camp with us I have a extra vehicle pass that I need to put to use", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470681781665792", "id": 716470681781665792, "timestamp_ms": "1459654896575", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:36 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716469400291778560", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2934282132", "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/574169014/1458783792", "description": "I'm Alexandra! Cartoonist and illustrator. 16 yrs old. @PandaGlobalPG's art girl. Chase your dreams, you'll win~ Commissions closed! wolfiisaur.art@gmail.com", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "DD2E44", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 3307, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710702031137144832/EzRjJi1z_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 15, "friends_count": 568, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "574169014", "protected": false, "id": 574169014, "favourites_count": 22500, "profile_sidebar_fill_color": "000000", "screen_name": "PG_Wolfiisaur", "profile_image_url": "http://pbs.twimg.com/profile_images/710702031137144832/EzRjJi1z_normal.jpg", "lang": "en", "created_at": "Tue May 08 03:26:34 +0000 2012", "profile_use_background_image": false, "name": "Wolfii~ Panda Global", "url": "http://www.panda.gg", "following": null, "profile_link_color": "DD2E44", "statuses_count": 10202, "is_translator": false}, "text": "@SAKGamingLLC oh seriously? hmm i gotchu i'll resize", "retweeted": false, "in_reply_to_screen_name": "SAKGamingLLC", "id_str": "716470683291688962", "id": 716470683291688962, "timestamp_ms": "1459654896935", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "SAK Gaming", "indices": [0, 13], "id": 2934282132, "screen_name": "SAKGamingLLC", "id_str": "2934282132"}], "hashtags": []}, "in_reply_to_user_id": 2934282132, "favorite_count": 0, "in_reply_to_status_id": 716469400291778560, "lang": "en", "created_at": "Sun Apr 03 03:41:36 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2589899760/1458112078", "description": "I just want to go on adventures & find who I am. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ninstagram @britt.jane", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "FCFEFF", "verified": false, "location": "arizona ", "follow_request_sent": null, "followers_count": 171, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715819175869067266/g_6qg3PE_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/482615287917735936/aHAYOhwE.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 355, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/482615287917735936/aHAYOhwE.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "2589899760", "protected": false, "id": 2589899760, "favourites_count": 1281, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "brittnayyjanee", "profile_image_url": "http://pbs.twimg.com/profile_images/715819175869067266/g_6qg3PE_normal.jpg", "lang": "en", "created_at": "Thu Jun 26 16:56:59 +0000 2014", "profile_use_background_image": true, "name": "B \u2661", "url": null, "following": null, "profile_link_color": "C476BB", "statuses_count": 5133, "is_translator": false}, "text": "Me: *walks in the room eating garlic bread*\n\"SO are we gonna workout or what?\"", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470692124884993", "id": 716470692124884993, "timestamp_ms": "1459654899041", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/718962253/1459466286", "description": "Salmo 91, SJT. | Forever young | King | No Fly Zone sc:daniel_araujo07 Tyrann Mathieu", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "#SAVAGESZN", "follow_request_sent": null, "followers_count": 700, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714533878338347009/vpVinN4A_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/616895759267442688/9lgzZKih.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 237, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/616895759267442688/9lgzZKih.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "000000", "id_str": "718962253", "protected": false, "id": 718962253, "favourites_count": 3506, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Daniel_araujo47", "profile_image_url": "http://pbs.twimg.com/profile_images/714533878338347009/vpVinN4A_normal.jpg", "lang": "es", "created_at": "Thu Jul 26 23:10:55 +0000 2012", "profile_use_background_image": true, "name": "Daniel AV", "url": "http://Instagram.com/araujor.7/", "following": null, "profile_link_color": "DD2E44", "statuses_count": 29759, "is_translator": false}, "text": "Just posted a photo @ University of Phoenix Stadium https://t.co/R9oEW2r5TN", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470691894312960", "id": 716470691894312960, "timestamp_ms": "1459654898986", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTA1zjt_M3_HLnruD9TnzTH9v43VNrPHiIHM0/", "indices": [52, 75], "display_url": "instagram.com/p/BDuTA1zjt_M3\u2026", "url": "https://t.co/R9oEW2r5TN"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:38 +0000 2016", "coordinates": {"coordinates": [-112.26247636, 33.5280587], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.5280587, -112.26247636], "type": "Point"}}, {"in_reply_to_status_id_str": "716470477875576832", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "590213902", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2762599198/1459629842", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 303, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716368381939572736/GJuFtng1_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 288, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2762599198", "protected": false, "id": 2762599198, "favourites_count": 9560, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "amber_keeling23", "profile_image_url": "http://pbs.twimg.com/profile_images/716368381939572736/GJuFtng1_normal.jpg", "lang": "en", "created_at": "Sat Sep 06 04:09:02 +0000 2014", "profile_use_background_image": true, "name": "amber", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3209, "is_translator": false}, "text": "@bjoyna HEY", "retweeted": false, "in_reply_to_screen_name": "bjoyna", "id_str": "716470698978385921", "id": 716470698978385921, "timestamp_ms": "1459654900675", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Bailey", "indices": [0, 7], "id": 590213902, "screen_name": "bjoyna", "id_str": "590213902"}], "hashtags": []}, "in_reply_to_user_id": 590213902, "favorite_count": 0, "in_reply_to_status_id": 716470477875576832, "lang": "und", "created_at": "Sun Apr 03 03:41:40 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716433760732839936", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1048609406", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1048609406/1459555634", "description": "3-12-15 @_AlyssaG_", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Lakeside, CA", "follow_request_sent": null, "followers_count": 517, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716054514357248001/bqP5D05Q_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 514, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1048609406", "protected": false, "id": 1048609406, "favourites_count": 6639, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "cindypellegrino", "profile_image_url": "http://pbs.twimg.com/profile_images/716054514357248001/bqP5D05Q_normal.jpg", "lang": "en", "created_at": "Sun Dec 30 19:10:50 +0000 2012", "profile_use_background_image": true, "name": "Cindy", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3596, "is_translator": false}, "text": "@cindypellegrino Btw she doesn't let me drive anyway so that's why it's ironic", "retweeted": false, "in_reply_to_screen_name": "cindypellegrino", "id_str": "716470710009344000", "id": 716470710009344000, "timestamp_ms": "1459654903305", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Cindy", "indices": [0, 16], "id": 1048609406, "screen_name": "cindypellegrino", "id_str": "1048609406"}], "hashtags": []}, "in_reply_to_user_id": 1048609406, "favorite_count": 0, "in_reply_to_status_id": 716433760732839936, "lang": "en", "created_at": "Sun Apr 03 03:41:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "El Mirage, AZ", "place_type": "city", "attributes": {}, "name": "El Mirage", "country": "United States", "id": "0de4c71dbfcd2c32", "bounding_box": {"coordinates": [[[-112.342111, 33.579997], [-112.342111, 33.630786], [-112.302246, 33.630786], [-112.302246, 33.579997]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0de4c71dbfcd2c32.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1859643996/1458618365", "description": null, "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 228, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715380544041668608/gLmyYNFw_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 199, "utc_offset": -21600, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "000000", "id_str": "1859643996", "protected": false, "id": 1859643996, "favourites_count": 1242, "profile_sidebar_fill_color": "000000", "screen_name": "_josephiinee_", "profile_image_url": "http://pbs.twimg.com/profile_images/715380544041668608/gLmyYNFw_normal.jpg", "lang": "en", "created_at": "Fri Sep 13 06:23:21 +0000 2013", "profile_use_background_image": false, "name": "Jos", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 3573, "is_translator": false}, "text": "Made little churros from scratch and brownies with @jaacqueelinee__ @Lilaaay_raya \ud83d\ude0b\u2764\ufe0f", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470724202921984", "id": 716470724202921984, "timestamp_ms": "1459654906689", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Jacqueline", "indices": [51, 67], "id": 465171743, "screen_name": "jaacqueelinee__", "id_str": "465171743"}, {"name": "Lily Raya", "indices": [68, 81], "id": 309983910, "screen_name": "Lilaaay_raya", "id_str": "309983910"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470591327309825", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3026453484", "truncated": false, "source": "Twitter for iPad", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/227134580/1442968830", "description": "Massage therapist~ social media groupie~ country music enthusiast~ one of the cool chicks~", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Scottsdale", "follow_request_sent": null, "followers_count": 115, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/664580707365183489/CN_oB7wE_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 240, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "227134580", "protected": false, "id": 227134580, "favourites_count": 1823, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "fendigurl31", "profile_image_url": "http://pbs.twimg.com/profile_images/664580707365183489/CN_oB7wE_normal.jpg", "lang": "en", "created_at": "Thu Dec 16 00:57:52 +0000 2010", "profile_use_background_image": true, "name": "kate", "url": "http://www.massage-by-kate.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 2564, "is_translator": false}, "text": "@megab127 where to? we're in! I work Saturday but that's it", "retweeted": false, "in_reply_to_screen_name": "megab127", "id_str": "716470724974682112", "id": 716470724974682112, "timestamp_ms": "1459654906873", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "ANNA", "indices": [0, 9], "id": 3026453484, "screen_name": "megab127", "id_str": "3026453484"}], "hashtags": []}, "in_reply_to_user_id": 3026453484, "favorite_count": 0, "in_reply_to_status_id": 716470591327309825, "lang": "en", "created_at": "Sun Apr 03 03:41:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/46943236/1455930393", "description": "Arizona born, Oregon raised. \nOn a mission to provide for what's mine. \n\n#BEEN", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "F5ABB5", "verified": false, "location": "541\u2708\ufe0f602", "follow_request_sent": null, "followers_count": 809, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/686824944710230016/PZY-ix_s_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576887097262354432/1OEzqPZv.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 1387, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576887097262354432/1OEzqPZv.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "46943236", "protected": false, "id": 46943236, "favourites_count": 5830, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "thuggathugga22", "profile_image_url": "http://pbs.twimg.com/profile_images/686824944710230016/PZY-ix_s_normal.jpg", "lang": "en", "created_at": "Sat Jun 13 19:06:52 +0000 2009", "profile_use_background_image": true, "name": "A.", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 1982, "is_translator": false}, "text": "Sometimes Twitter needs more characters lol \ud83d\ude44 hate looking illiterate when I'm trying to be smart", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470736739667969", "id": 716470736739667969, "timestamp_ms": "1459654909678", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/220815041/1459281923", "description": "look him in the eye aim no higher summon all the courage you require then count", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 360, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/284383189/images.jpg", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 1125, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/284383189/images.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3D1957", "id_str": "220815041", "protected": false, "id": 220815041, "favourites_count": 6851, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "Megsmatagges", "profile_image_url": "http://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "lang": "en", "created_at": "Sun Nov 28 22:32:52 +0000 2010", "profile_use_background_image": true, "name": "\u24c2 e g s", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 26675, "is_translator": false}, "text": "ALSO CONGRATS TO @GoldenCo_11 WHO HAS NO IDEA SHE GOT MILLIE", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470742901100546", "id": 716470742901100546, "timestamp_ms": "1459654911147", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Vanessa Orozco", "indices": [17, 29], "id": 1053566605, "screen_name": "GoldenCo_11", "id_str": "1053566605"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:51 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/163884087/1458243111", "description": "don't tweet if you don't want a reaction....", "profile_sidebar_border_color": "BABAB2", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 373, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711342974441893889/BgPM-Aes_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/371789707/nicki-minaj-booty-naked-mixtape-tagged-copy.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 420, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/371789707/nicki-minaj-booty-naked-mixtape-tagged-copy.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "120F12", "id_str": "163884087", "protected": false, "id": 163884087, "favourites_count": 4718, "profile_sidebar_fill_color": "BABAB2", "screen_name": "ELtrue11", "profile_image_url": "http://pbs.twimg.com/profile_images/711342974441893889/BgPM-Aes_normal.jpg", "lang": "en", "created_at": "Wed Jul 07 14:26:52 +0000 2010", "profile_use_background_image": true, "name": "Bruh...", "url": "http://readabook.com", "following": null, "profile_link_color": "2891E2", "statuses_count": 9132, "is_translator": false}, "text": "Shut yo ass up https://t.co/CG4kOONvvj", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470746030080002", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/63073288/1399403800", "description": "Take this good advice, cuz they gon judge you fa life.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "EDF2F5", "verified": false, "location": "ASU SUN DEVIL", "follow_request_sent": null, "followers_count": 401, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/568198652082913281/1agX562X_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534472344740188160/nrv5lHKW.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 573, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534472344740188160/nrv5lHKW.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "63073288", "protected": false, "id": 63073288, "favourites_count": 475, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "JabbzNoTyson", "profile_image_url": "http://pbs.twimg.com/profile_images/568198652082913281/1agX562X_normal.jpeg", "lang": "en", "created_at": "Wed Aug 05 08:23:13 +0000 2009", "profile_use_background_image": true, "name": "Khalil", "url": null, "following": null, "profile_link_color": "11507A", "statuses_count": 7212, "is_translator": false}, "text": "I'm tryna go to London mate.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716465876707356672", "id": 716465876707356672, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:22:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470746030080002, "timestamp_ms": "1459654911893", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/jabbznotyson/status/716465876707356672", "indices": [15, 38], "display_url": "twitter.com/jabbznotyson/s\u2026", "url": "https://t.co/CG4kOONvvj"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716465876707356672, "created_at": "Sun Apr 03 03:41:51 +0000 2016", "coordinates": null, "quoted_status_id_str": "716465876707356672", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716469014126526464", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "411259340", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/43603566/1389840761", "description": "Young Trump, Descendant of Uncle Ruckus. Savage Inc. One HELL of a gentleman.", "profile_sidebar_border_color": "323231", "profile_background_tile": false, "profile_background_color": "9A958E", "verified": false, "location": "The Valley ", "follow_request_sent": null, "followers_count": 816, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 46, "friends_count": 342, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "020202", "id_str": "43603566", "protected": false, "id": 43603566, "favourites_count": 161, "profile_sidebar_fill_color": "9A3B25", "screen_name": "blizzardwolf00", "profile_image_url": "http://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "lang": "en", "created_at": "Sat May 30 22:10:06 +0000 2009", "profile_use_background_image": true, "name": "R. Von Hades", "url": "http://AbbasSTRONG.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 205114, "is_translator": false}, "text": "Lmao RT @p1z4T: LMAOOOOOOOOOO REAL https://t.co/Z2YhBlREpP", "retweeted": false, "in_reply_to_screen_name": "p1z4T", "id_str": "716470772638691329", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": true, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/78354754/1412087845", "description": "quidquid latine dictum, sit altum videtur", "profile_sidebar_border_color": "181A1E", "profile_background_tile": true, "profile_background_color": "1A1B1F", "verified": false, "location": "dyking in dc", "follow_request_sent": null, "followers_count": 1963, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/703626703717974016/vvCodzfp_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/198307806/rush.jpg", "default_profile_image": false, "notifications": null, "listed_count": 42, "friends_count": 562, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/198307806/rush.jpg", "time_zone": "Quito", "profile_text_color": "666666", "id_str": "78354754", "protected": false, "id": 78354754, "favourites_count": 14421, "profile_sidebar_fill_color": "252429", "screen_name": "elaxation", "profile_image_url": "http://pbs.twimg.com/profile_images/703626703717974016/vvCodzfp_normal.jpg", "lang": "en", "created_at": "Tue Sep 29 16:35:22 +0000 2009", "profile_use_background_image": true, "name": "chakra flocka flame", "url": "http://nochillcrissy.army.mil", "following": null, "profile_link_color": "2FC2EF", "statuses_count": 126093, "is_translator": false}, "text": "5 Ways Black People Will Benefit From a Trump Presidency - The Root https://t.co/F6vq3CBHHL", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716467364339064833", "id": 716467364339064833, "entities": {"symbols": [], "urls": [{"expanded_url": "http://www.theroot.com/articles/politics/2016/03/_5_ways_black_people_will_benefit_from_a_trump_presidency.html?wpisrc=obinsite", "indices": [68, 91], "display_url": "theroot.com/articles/polit\u2026", "url": "https://t.co/F6vq3CBHHL"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:28:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470772638691329, "timestamp_ms": "1459654918237", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/elaxation/status/716467364339064833", "indices": [36, 59], "display_url": "twitter.com/elaxation/stat\u2026", "url": "https://t.co/Z2YhBlREpP"}], "user_mentions": [{"name": "#Fresh", "indices": [9, 15], "id": 411259340, "screen_name": "p1z4T", "id_str": "411259340"}], "hashtags": []}, "in_reply_to_user_id": 411259340, "lang": "ht", "favorite_count": 0, "in_reply_to_status_id": 716469014126526464, "quoted_status_id": 716467364339064833, "created_at": "Sun Apr 03 03:41:58 +0000 2016", "coordinates": null, "quoted_status_id_str": "716467364339064833", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/585138185/1459125285", "description": "sagittarius", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "040505", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 558, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713975503187742720/J-gUb3SY_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034262070/a223d8d687a851afcf89468b4650e227.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 326, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034262070/a223d8d687a851afcf89468b4650e227.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "585138185", "protected": false, "id": 585138185, "favourites_count": 17071, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "natalyavizzy", "profile_image_url": "http://pbs.twimg.com/profile_images/713975503187742720/J-gUb3SY_normal.jpg", "lang": "en", "created_at": "Sat May 19 22:21:03 +0000 2012", "profile_use_background_image": true, "name": "natalya vizzerra", "url": null, "following": null, "profile_link_color": "0FFACB", "statuses_count": 11059, "is_translator": false}, "text": "can't see em cause tha money in the way real nigga wassup", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470779810951169", "id": 716470779810951169, "timestamp_ms": "1459654919947", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470437924835330", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2419670011", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1240229910/1459029420", "description": "mark\u2764\ufe0f / I'm so 3000 and 8", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Surprise, AZ", "follow_request_sent": null, "followers_count": 579, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711928831423066114/Ca_uN6tC_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 630, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1240229910", "protected": false, "id": 1240229910, "favourites_count": 7819, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jenaaaa13", "profile_image_url": "http://pbs.twimg.com/profile_images/711928831423066114/Ca_uN6tC_normal.jpg", "lang": "en", "created_at": "Mon Mar 04 01:35:10 +0000 2013", "profile_use_background_image": true, "name": "KENDALL JENNER", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 15637, "is_translator": false}, "text": "@D_Cypher97 @Healingofharms love you too \u2764\ufe0f", "retweeted": false, "in_reply_to_screen_name": "D_Cypher97", "id_str": "716470778988863489", "id": 716470778988863489, "timestamp_ms": "1459654919751", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "MasterP", "indices": [0, 11], "id": 2419670011, "screen_name": "D_Cypher97", "id_str": "2419670011"}, {"name": "Jayde", "indices": [12, 27], "id": 385803565, "screen_name": "Healingofharms", "id_str": "385803565"}], "hashtags": []}, "in_reply_to_user_id": 2419670011, "favorite_count": 0, "in_reply_to_status_id": 716470437924835330, "lang": "en", "created_at": "Sun Apr 03 03:41:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1483217982/1458517296", "description": "don't be mad cause I'm doin me better than u doin u snapchat: crew13", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 457, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714666992964382720/-rLlFFnq_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/448648269577474048/foV1PwIE.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 188, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/448648269577474048/foV1PwIE.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1483217982", "protected": false, "id": 1483217982, "favourites_count": 27591, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "croosuxx", "profile_image_url": "http://pbs.twimg.com/profile_images/714666992964382720/-rLlFFnq_normal.jpg", "lang": "en", "created_at": "Tue Jun 04 20:47:59 +0000 2013", "profile_use_background_image": true, "name": "ur favorite savage", "url": "http://soundcloud.com/crew13", "following": null, "profile_link_color": "0084B4", "statuses_count": 8304, "is_translator": false}, "text": "I keep forgetting that everybody is busy with their own life", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470782495338496", "id": 716470782495338496, "timestamp_ms": "1459654920587", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470274892247042", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2877660528", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 47, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/526219276353802240/LQBi6B2B_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 123, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2877660528", "protected": false, "id": 2877660528, "favourites_count": 30, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jherzner14", "profile_image_url": "http://pbs.twimg.com/profile_images/526219276353802240/LQBi6B2B_normal.jpeg", "lang": "en", "created_at": "Sun Oct 26 03:12:43 +0000 2014", "profile_use_background_image": true, "name": "Jon", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 65, "is_translator": false}, "text": "@johnmcp it's not as easy as people think to be a professional athlete.", "retweeted": false, "in_reply_to_screen_name": "jherzner14", "id_str": "716470785313902592", "id": 716470785313902592, "timestamp_ms": "1459654921259", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "John McPherson", "indices": [0, 8], "id": 15693348, "screen_name": "johnmcp", "id_str": "15693348"}], "hashtags": []}, "in_reply_to_user_id": 2877660528, "favorite_count": 0, "in_reply_to_status_id": 716470274892247042, "lang": "en", "created_at": "Sun Apr 03 03:42:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2435677070/1459575563", "description": "Senior | Club One Volleyball | Colossians 3:23", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "State fourty-eight", "follow_request_sent": null, "followers_count": 161, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715239637342531585/6ISTAa2C_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 121, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2435677070", "protected": false, "id": 2435677070, "favourites_count": 4172, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "madsrahn", "profile_image_url": "http://pbs.twimg.com/profile_images/715239637342531585/6ISTAa2C_normal.jpg", "lang": "en", "created_at": "Wed Apr 09 16:23:35 +0000 2014", "profile_use_background_image": true, "name": "\u2022Mads\u2022", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3063, "is_translator": false}, "text": "I'm so stressed out w this college thing it's eating me alive", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470828750143488", "id": 716470828750143488, "timestamp_ms": "1459654931615", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470768926793728", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "590213902", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2762599198/1459629842", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 303, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716368381939572736/GJuFtng1_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 288, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2762599198", "protected": false, "id": 2762599198, "favourites_count": 9561, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "amber_keeling23", "profile_image_url": "http://pbs.twimg.com/profile_images/716368381939572736/GJuFtng1_normal.jpg", "lang": "en", "created_at": "Sat Sep 06 04:09:02 +0000 2014", "profile_use_background_image": true, "name": "amber", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3210, "is_translator": false}, "text": "@bjoyna I MISS YOU TOO", "retweeted": false, "in_reply_to_screen_name": "bjoyna", "id_str": "716470840716472321", "id": 716470840716472321, "timestamp_ms": "1459654934468", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Bailey", "indices": [0, 7], "id": 590213902, "screen_name": "bjoyna", "id_str": "590213902"}], "hashtags": []}, "in_reply_to_user_id": 590213902, "favorite_count": 0, "in_reply_to_status_id": 716470768926793728, "lang": "en", "created_at": "Sun Apr 03 03:42:14 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470481239474176", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "419161809", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2752272622/1459047925", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Connecticut \u2708\ufe0f Arizona", "follow_request_sent": null, "followers_count": 314, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697825659662368768/GuZswlpc_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 196, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2752272622", "protected": false, "id": 2752272622, "favourites_count": 10455, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "CaptainZach2", "profile_image_url": "http://pbs.twimg.com/profile_images/697825659662368768/GuZswlpc_normal.jpg", "lang": "en", "created_at": "Wed Aug 27 03:20:10 +0000 2014", "profile_use_background_image": true, "name": "zach", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4088, "is_translator": false}, "text": "@marley_sweeney last home game against ovi and the caps too\ud83d\ude05", "retweeted": false, "in_reply_to_screen_name": "marley_sweeney", "id_str": "716470853198675968", "id": 716470853198675968, "timestamp_ms": "1459654937444", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Cavity back Jack", "indices": [0, 15], "id": 419161809, "screen_name": "marley_sweeney", "id_str": "419161809"}], "hashtags": []}, "in_reply_to_user_id": 419161809, "favorite_count": 0, "in_reply_to_status_id": 716470481239474176, "lang": "en", "created_at": "Sun Apr 03 03:42:17 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/g5DPgPY4J3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/jimmyrbrown43/status/716470855383945218/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqcRlUMAAvnOA.jpg", "indices": [0, 23], "id": 716470849717415936, "id_str": "716470849717415936", "display_url": "pic.twitter.com/g5DPgPY4J3", "media_url": "http://pbs.twimg.com/media/CfFqcRlUMAAvnOA.jpg"}]}, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2242953938/1451265537", "description": "did you get better today? // highland 2017", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 261, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711783326315450369/o6JR8g91_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 196, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2242953938", "protected": false, "id": 2242953938, "favourites_count": 2642, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jimmyrbrown43", "profile_image_url": "http://pbs.twimg.com/profile_images/711783326315450369/o6JR8g91_normal.jpg", "lang": "en", "created_at": "Thu Dec 12 21:43:28 +0000 2013", "profile_use_background_image": true, "name": "Jim", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1865, "is_translator": false}, "text": "https://t.co/g5DPgPY4J3", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470855383945218", "id": 716470855383945218, "timestamp_ms": "1459654937965", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/g5DPgPY4J3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/jimmyrbrown43/status/716470855383945218/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqcRlUMAAvnOA.jpg", "indices": [0, 23], "id": 716470849717415936, "id_str": "716470849717415936", "display_url": "pic.twitter.com/g5DPgPY4J3", "media_url": "http://pbs.twimg.com/media/CfFqcRlUMAAvnOA.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:42:17 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/441465143/1459135759", "description": "EHS 14 \u2022 U.S ARMY 12B \u2022 Nashville, TN \u2708\ufe0f Fort Bliss, TX", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Murfreesboro, TN / El Paso, Tx", "follow_request_sent": null, "followers_count": 184, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714293104027762688/3m6MOvM5_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/385420492/102_10531.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 318, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/385420492/102_10531.jpg", "time_zone": null, "profile_text_color": "333333", "id_str": "441465143", "protected": false, "id": 441465143, "favourites_count": 1918, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "PB_Curtis", "profile_image_url": "http://pbs.twimg.com/profile_images/714293104027762688/3m6MOvM5_normal.jpg", "lang": "en", "created_at": "Tue Dec 20 03:44:59 +0000 2011", "profile_use_background_image": true, "name": "Curtis Roberts", "url": "http://middletennesseepaintball.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 3078, "is_translator": false}, "text": "\"Your freedoms stop where someone else's opinions start\"", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470870516994048", "id": 716470870516994048, "timestamp_ms": "1459654941573", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:21 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/27372554/1380184639", "description": "Comedy's Best Kept Secret Tour. Hoboken Comedy Festival. Make Me Laugh: Albany NY NYC Comedian. Writer. Producer. Dog Lover.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "45B14B", "verified": false, "location": "Hoboken NJ", "follow_request_sent": null, "followers_count": 1489, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/690009531854749699/u5pYCAo1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/509210408545030146/wBCYE_Gw.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 51, "friends_count": 2340, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/509210408545030146/wBCYE_Gw.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "3C3940", "id_str": "27372554", "protected": false, "id": 27372554, "favourites_count": 1204, "profile_sidebar_fill_color": "95E8EC", "screen_name": "DanFrigolette", "profile_image_url": "http://pbs.twimg.com/profile_images/690009531854749699/u5pYCAo1_normal.jpg", "lang": "en", "created_at": "Sun Mar 29 03:35:29 +0000 2009", "profile_use_background_image": true, "name": "Dan Frigolette", "url": "http://www.DanFrigolette.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 6714, "is_translator": false}, "text": "Its about to go down. #phoenix #comedysbestkeptsecret @ Arizona Event Center, LLC. https://t.co/AvT3Tz34ua", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470880906428416", "id": 716470880906428416, "timestamp_ms": "1459654944050", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTGRtGuGJ/", "indices": [83, 106], "display_url": "instagram.com/p/BDuTGRtGuGJ/", "url": "https://t.co/AvT3Tz34ua"}], "user_mentions": [], "hashtags": [{"indices": [22, 30], "text": "phoenix"}, {"indices": [31, 53], "text": "comedysbestkeptsecret"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:24 +0000 2016", "coordinates": {"coordinates": [-111.84203945, 33.39175365], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.39175365, -111.84203945], "type": "Point"}}, {"in_reply_to_status_id_str": "716462535788998656", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1460955799", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3095954293/1432114809", "description": "Kevin 'Quicksand' Natividad [INC] [86BJJ] [AZ Combat Sports] [Nova Uni\u00e3o Hawaii] [Team Hawaii] [Lanakila Brand] [BreakPointFC]", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 47, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/660139261891514368/ejLLwOsV_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 32, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3095954293", "protected": false, "id": 3095954293, "favourites_count": 419, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "natividad_kevin", "profile_image_url": "http://pbs.twimg.com/profile_images/660139261891514368/ejLLwOsV_normal.jpg", "lang": "en", "created_at": "Wed Mar 18 09:24:45 +0000 2015", "profile_use_background_image": true, "name": "Kevin Natividad", "url": "http://www.breakpointfc.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 575, "is_translator": false}, "text": "@USAMMAF thanks for the opportunity! See you guys on day 3", "retweeted": false, "in_reply_to_screen_name": "USAMMAF", "id_str": "716470882844028928", "id": 716470882844028928, "timestamp_ms": "1459654944512", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "UMMAF", "indices": [0, 8], "id": 1460955799, "screen_name": "USAMMAF", "id_str": "1460955799"}], "hashtags": []}, "in_reply_to_user_id": 1460955799, "favorite_count": 0, "in_reply_to_status_id": 716462535788998656, "lang": "en", "created_at": "Sun Apr 03 03:42:24 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470527045476352", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "386942509", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/386942509/1458546176", "description": null, "profile_sidebar_border_color": "054F36", "profile_background_tile": true, "profile_background_color": "FAA8FA", "verified": false, "location": "East Oakland", "follow_request_sent": null, "followers_count": 586, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701243735204433922/sC8l2gzi_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/658168295/l63uaqz5aake6mdunvw9.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 389, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/658168295/l63uaqz5aake6mdunvw9.jpeg", "time_zone": "Arizona", "profile_text_color": "050505", "id_str": "386942509", "protected": false, "id": 386942509, "favourites_count": 9976, "profile_sidebar_fill_color": "78F0AC", "screen_name": "AKbangaa", "profile_image_url": "http://pbs.twimg.com/profile_images/701243735204433922/sC8l2gzi_normal.jpg", "lang": "en", "created_at": "Sat Oct 08 05:48:34 +0000 2011", "profile_use_background_image": true, "name": "AK", "url": "http://wrongbitch.com", "following": null, "profile_link_color": "2ECCE8", "statuses_count": 41375, "is_translator": false}, "text": "@Jflo16 verde*", "retweeted": false, "in_reply_to_screen_name": "AKbangaa", "id_str": "716470887050940416", "id": 716470887050940416, "timestamp_ms": "1459654945515", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Jflowin", "indices": [0, 7], "id": 337955667, "screen_name": "Jflo16", "id_str": "337955667"}], "hashtags": []}, "in_reply_to_user_id": 386942509, "favorite_count": 0, "in_reply_to_status_id": 716470527045476352, "lang": "pt", "created_at": "Sun Apr 03 03:42:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2737838416/1459186271", "description": "Sin., J.O.\u2763", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 119, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714690226376065025/m17OEfrC_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 112, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2737838416", "protected": false, "id": 2737838416, "favourites_count": 419, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "kinaarauhl", "profile_image_url": "http://pbs.twimg.com/profile_images/714690226376065025/m17OEfrC_normal.jpg", "lang": "en", "created_at": "Sat Aug 09 04:00:49 +0000 2014", "profile_use_background_image": true, "name": "mawia\u263b", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2225, "is_translator": false}, "text": "Bih but if you have a problem with me just tell me n stop subtweeting me\u263a", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470900619542528", "id": 716470900619542528, "timestamp_ms": "1459654948750", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2608548636/1459477779", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1915, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716380465221873664/FK86qNC7_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 829, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2608548636", "protected": false, "id": 2608548636, "favourites_count": 24233, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "zayyy_xo", "profile_image_url": "http://pbs.twimg.com/profile_images/716380465221873664/FK86qNC7_normal.jpg", "lang": "en", "created_at": "Mon Jul 07 00:00:41 +0000 2014", "profile_use_background_image": true, "name": "alahzay", "url": "http://zayrossi.vsco.co", "following": null, "profile_link_color": "0084B4", "statuses_count": 8814, "is_translator": false}, "text": "Anyone wanna take me w them tonight", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470903681327105", "id": 716470903681327105, "timestamp_ms": "1459654949480", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/220815041/1459281923", "description": "look him in the eye aim no higher summon all the courage you require then count", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 360, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/284383189/images.jpg", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 1125, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/284383189/images.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3D1957", "id_str": "220815041", "protected": false, "id": 220815041, "favourites_count": 6851, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "Megsmatagges", "profile_image_url": "http://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "lang": "en", "created_at": "Sun Nov 28 22:32:52 +0000 2010", "profile_use_background_image": true, "name": "\u24c2 e g s", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 26676, "is_translator": false}, "text": "YOU ALL ARE GONNA KILL IT IN YOUR LAST CYT SHOW", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470906554437633", "id": 716470906554437633, "timestamp_ms": "1459654950165", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/296572158/1458126025", "description": "the moral of the story is the glory \u2728Gary IN \u2708\ufe0fPhoenix AZ", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "6BF7D4", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 1034, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716366355503534080/6BJaCyV5_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/487708409450348545/20aYNHZ0.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 512, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/487708409450348545/20aYNHZ0.jpeg", "time_zone": "Central Time (US & Canada)", "profile_text_color": "FA0505", "id_str": "296572158", "protected": false, "id": 296572158, "favourites_count": 801, "profile_sidebar_fill_color": "050005", "screen_name": "_LikeMik3_", "profile_image_url": "http://pbs.twimg.com/profile_images/716366355503534080/6BJaCyV5_normal.jpg", "lang": "en", "created_at": "Wed May 11 01:06:13 +0000 2011", "profile_use_background_image": true, "name": "MikeCheck", "url": "http://finnessall.com", "following": null, "profile_link_color": "FA7878", "statuses_count": 19557, "is_translator": false}, "text": "Spotify be lying like a mf \"These next 30 minutes are add free\"", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470920177553408", "id": 716470920177553408, "timestamp_ms": "1459654953413", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Litchfield Park, AZ", "place_type": "city", "attributes": {}, "name": "Litchfield Park", "country": "United States", "id": "e5d470249e23cd45", "bounding_box": {"coordinates": [[[-112.3794, 33.485544], [-112.3794, 33.508273], [-112.32374, 33.508273], [-112.32374, 33.485544]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/e5d470249e23cd45.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/593250150/1458368054", "description": "Life can only be understood backwards, but it must be lived forward| Baseball Player|#StayHumble #BrewCrew", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "410", "follow_request_sent": null, "followers_count": 1309, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713938595334250496/1eVYfknZ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/587300303382286336/uTSNTGHy.jpg", "default_profile_image": false, "notifications": null, "listed_count": 20, "friends_count": 859, "utc_offset": -10800, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/587300303382286336/uTSNTGHy.jpg", "time_zone": "Atlantic Time (Canada)", "profile_text_color": "333333", "id_str": "593250150", "protected": false, "id": 593250150, "favourites_count": 8979, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Troy_Stokes15", "profile_image_url": "http://pbs.twimg.com/profile_images/713938595334250496/1eVYfknZ_normal.jpg", "lang": "en", "created_at": "Mon May 28 23:43:07 +0000 2012", "profile_use_background_image": true, "name": "Playboy Troy", "url": "http://Swing4More.org", "following": null, "profile_link_color": "080808", "statuses_count": 16630, "is_translator": false}, "text": "I dislike tongue piercings", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470925080666112", "id": 716470925080666112, "timestamp_ms": "1459654954582", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2242953938/1451265537", "description": "did you get better today? // highland 2017", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 261, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711783326315450369/o6JR8g91_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 196, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2242953938", "protected": false, "id": 2242953938, "favourites_count": 2642, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jimmyrbrown43", "profile_image_url": "http://pbs.twimg.com/profile_images/711783326315450369/o6JR8g91_normal.jpg", "lang": "en", "created_at": "Thu Dec 12 21:43:28 +0000 2013", "profile_use_background_image": true, "name": "Jim", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1866, "is_translator": false}, "text": "We all have off days man....", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470925932101632", "id": 716470925932101632, "timestamp_ms": "1459654954785", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/163606869/1434088464", "description": "| I.IX.XII | \u264b\ufe0f | Moonchild |", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "82EDC9", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 359, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/678108577710530561/8UaH9plw_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/207236388/floral_wallpaper_by_insurrectionx.jpg", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 518, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/207236388/floral_wallpaper_by_insurrectionx.jpg", "time_zone": "Arizona", "profile_text_color": "4C89D4", "id_str": "163606869", "protected": false, "id": 163606869, "favourites_count": 6819, "profile_sidebar_fill_color": "CFCFCF", "screen_name": "Brianaaaaa", "profile_image_url": "http://pbs.twimg.com/profile_images/678108577710530561/8UaH9plw_normal.jpg", "lang": "en", "created_at": "Tue Jul 06 21:13:57 +0000 2010", "profile_use_background_image": false, "name": "\u263d \u6797\u96c5\u860b \u263e", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 24148, "is_translator": false}, "text": "This vine is literally my life. https://t.co/i8WKlf1Spw", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470927567892481", "id": 716470927567892481, "timestamp_ms": "1459654955175", "entities": {"symbols": [], "urls": [{"expanded_url": "https://vine.co/v/inVtemLt9tE", "indices": [32, 55], "display_url": "vine.co/v/inVtemLt9tE", "url": "https://t.co/i8WKlf1Spw"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/332425051/1458152082", "description": "Dont Fake FWM.", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "B3B3B3", "verified": false, "location": "Chiraq,AZ", "follow_request_sent": null, "followers_count": 605, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715989651685818368/EuCTDTKW_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/439536220402507776/IUilLHkd.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 279, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/439536220402507776/IUilLHkd.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "AD3274", "id_str": "332425051", "protected": false, "id": 332425051, "favourites_count": 9612, "profile_sidebar_fill_color": "000000", "screen_name": "ShesDiamondK", "profile_image_url": "http://pbs.twimg.com/profile_images/715989651685818368/EuCTDTKW_normal.jpg", "lang": "en", "created_at": "Sat Jul 09 19:46:49 +0000 2011", "profile_use_background_image": true, "name": "Diamond", "url": null, "following": null, "profile_link_color": "232526", "statuses_count": 34009, "is_translator": false}, "text": "Get it how you live", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470930239676417", "id": 716470930239676417, "timestamp_ms": "1459654955812", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "passionate, conservative, innovative, free market enthusiast of financial independence through limited, constitutional government", "profile_sidebar_border_color": "829D5E", "profile_background_tile": false, "profile_background_color": "352726", "verified": false, "location": "Phoenix", "follow_request_sent": null, "followers_count": 14190, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/501159742836727808/6GeBWpkC_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 314, "friends_count": 13944, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3E4415", "id_str": "20826129", "protected": false, "id": 20826129, "favourites_count": 119, "profile_sidebar_fill_color": "99CC33", "screen_name": "tasteofaz", "profile_image_url": "http://pbs.twimg.com/profile_images/501159742836727808/6GeBWpkC_normal.png", "lang": "en", "created_at": "Sat Feb 14 02:22:28 +0000 2009", "profile_use_background_image": true, "name": "AZ Dreamer", "url": null, "following": null, "profile_link_color": "D02B55", "statuses_count": 218271, "is_translator": false}, "text": "Cruz MY CHOICE 'Til I Did My Homework-Do Urs B4U Vote\nhttps://t.co/D8AHiuQ1ZL #OnlyTRUMP #WIPrimary #NYPrimary #1237ChokesGOPe #DitchMSM", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470930780753920", "id": 716470930780753920, "timestamp_ms": "1459654955941", "entities": {"symbols": [], "urls": [{"expanded_url": "http://tl.gd/n_1soh0dv", "indices": [54, 77], "display_url": "tl.gd/n_1soh0dv", "url": "https://t.co/D8AHiuQ1ZL"}], "user_mentions": [], "hashtags": [{"indices": [79, 89], "text": "OnlyTRUMP"}, {"indices": [90, 100], "text": "WIPrimary"}, {"indices": [101, 111], "text": "NYPrimary"}, {"indices": [112, 127], "text": "1237ChokesGOPe"}, {"indices": [128, 137], "text": "DitchMSM"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716457998994964480", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "26266094", "truncated": false, "source": "Twitter for iPad", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/602471804/1432428868", "description": "Tall fun outgoing hardworking American who likes to laugh a lot..when it's funny.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix AZ", "follow_request_sent": null, "followers_count": 112, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/567880773550620672/Yg_vrAyo_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 376, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "602471804", "protected": false, "id": 602471804, "favourites_count": 3876, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "TitoFigueroa3", "profile_image_url": "http://pbs.twimg.com/profile_images/567880773550620672/Yg_vrAyo_normal.jpeg", "lang": "en", "created_at": "Fri Jun 08 04:56:44 +0000 2012", "profile_use_background_image": true, "name": "Tito Figueroa", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4182, "is_translator": false}, "text": "@MacandGaydos Yikes #SnakesinTheStudio!", "retweeted": false, "in_reply_to_screen_name": "MacandGaydos", "id_str": "716470941262282753", "id": 716470941262282753, "timestamp_ms": "1459654958440", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Mac and Gaydos\u2122", "indices": [0, 13], "id": 26266094, "screen_name": "MacandGaydos", "id_str": "26266094"}], "hashtags": [{"indices": [20, 38], "text": "SnakesinTheStudio"}]}, "in_reply_to_user_id": 26266094, "favorite_count": 0, "in_reply_to_status_id": 716457998994964480, "lang": "en", "created_at": "Sun Apr 03 03:42:38 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2434125236/1458699284", "description": "I tweet to entertain myself.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Los Angeles, CA", "follow_request_sent": null, "followers_count": 892, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/707221149071986689/j8pnnyx2_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 18, "friends_count": 442, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2434125236", "protected": false, "id": 2434125236, "favourites_count": 18982, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "COVINGTON__", "profile_image_url": "http://pbs.twimg.com/profile_images/707221149071986689/j8pnnyx2_normal.jpg", "lang": "en", "created_at": "Tue Apr 08 19:42:48 +0000 2014", "profile_use_background_image": true, "name": "\u2022Tommy", "url": "http://covington3.tumblr.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 101886, "is_translator": false}, "text": "Okay, so I'm still drinking.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470952607899648", "id": 716470952607899648, "timestamp_ms": "1459654961145", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "702247159618469888", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"description": "Local boy, made it big, lost it all, trying to make it big again...again!!! Huge fan of our cowboys", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Valley of the sun", "follow_request_sent": null, "followers_count": 249, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/576221640188567552/BVKVCihn_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 763, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3073489844", "protected": false, "id": 3073489844, "favourites_count": 484, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Tongoeatnow", "profile_image_url": "http://pbs.twimg.com/profile_images/576221640188567552/BVKVCihn_normal.jpeg", "lang": "en", "created_at": "Wed Mar 11 18:50:00 +0000 2015", "profile_use_background_image": true, "name": "ted gonzol", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 488, "is_translator": false}, "text": "@Zeek2theCowboys huge boys fan, know we are missing some parts,this kid could take us to the top, Romo and Dez play with health this season", "retweeted": false, "in_reply_to_screen_name": "Zeek2theCowboys", "id_str": "716470959578853376", "id": 716470959578853376, "timestamp_ms": "1459654962807", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Zeek to the Cowboys", "indices": [0, 16], "id": 702247159618469888, "screen_name": "Zeek2theCowboys", "id_str": "702247159618469888"}], "hashtags": []}, "in_reply_to_user_id": 702247159618469888, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/74653768/1459316569", "description": "@vicczaac wants a donkey and Idk why", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "099E9E", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 1129, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711768566698090496/gJysrRiN_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685158766/c68c55765a4ef8aae69b87c113385c7d.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 2045, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685158766/c68c55765a4ef8aae69b87c113385c7d.jpeg", "time_zone": "Central Time (US & Canada)", "profile_text_color": "050505", "id_str": "74653768", "protected": false, "id": 74653768, "favourites_count": 19029, "profile_sidebar_fill_color": "632CDB", "screen_name": "Aj_Dreww", "profile_image_url": "http://pbs.twimg.com/profile_images/711768566698090496/gJysrRiN_normal.jpg", "lang": "en", "created_at": "Wed Sep 16 04:40:40 +0000 2009", "profile_use_background_image": true, "name": "King AJ", "url": null, "following": null, "profile_link_color": "030303", "statuses_count": 22462, "is_translator": false}, "text": "FML by Kanye \ud83d\udc4c", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470963970310144", "id": 716470963970310144, "timestamp_ms": "1459654963854", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPad", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/OzP5uusCq6", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1536}, "small": {"w": 340, "resize": "fit", "h": 510}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 900}}, "type": "photo", "expanded_url": "http://twitter.com/Enrico056/status/716470963597017088/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqiNSUsAEBzni.jpg", "indices": [112, 135], "id": 716470951643230209, "id_str": "716470951643230209", "display_url": "pic.twitter.com/OzP5uusCq6", "media_url": "http://pbs.twimg.com/media/CfFqiNSUsAEBzni.jpg"}]}, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/189496721/1446329858", "description": "Was lucky enough to see Angotti, Hull, Mikita,play as a young man. Following the Coyotes, Avalanche, Ducks, & CBJ. Huge Denver Bronco fan!!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Mesa, AZ. via Chicago,IL. ", "follow_request_sent": null, "followers_count": 1360, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711590234383720448/Od6ZfQTH_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 73, "friends_count": 2154, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "189496721", "protected": false, "id": 189496721, "favourites_count": 3182, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Enrico056", "profile_image_url": "http://pbs.twimg.com/profile_images/711590234383720448/Od6ZfQTH_normal.jpg", "lang": "en", "created_at": "Sat Sep 11 12:34:37 +0000 2010", "profile_use_background_image": true, "name": "Enrico A. Bertoletti", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 48431, "is_translator": false}, "text": "#ConnorMurphy has been very good thru 2 periods. He learned a TON from being a healthy scratch. @ArizonaCoyotes https://t.co/OzP5uusCq6", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470963597017088", "id": 716470963597017088, "timestamp_ms": "1459654963765", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "#PackPrideNight", "indices": [96, 111], "id": 20006987, "screen_name": "ArizonaCoyotes", "id_str": "20006987"}], "hashtags": [{"indices": [0, 13], "text": "ConnorMurphy"}], "media": [{"url": "https://t.co/OzP5uusCq6", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1536}, "small": {"w": 340, "resize": "fit", "h": 510}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 900}}, "type": "photo", "expanded_url": "http://twitter.com/Enrico056/status/716470963597017088/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqiNSUsAEBzni.jpg", "indices": [112, 135], "id": 716470951643230209, "id_str": "716470951643230209", "display_url": "pic.twitter.com/OzP5uusCq6", "media_url": "http://pbs.twimg.com/media/CfFqiNSUsAEBzni.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1891359270/1442381316", "description": null, "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Scottsdale", "follow_request_sent": null, "followers_count": 290, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716151998475710464/Vz_jzLVW_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 237, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "1891359270", "protected": false, "id": 1891359270, "favourites_count": 4320, "profile_sidebar_fill_color": "000000", "screen_name": "seanbarr_", "profile_image_url": "http://pbs.twimg.com/profile_images/716151998475710464/Vz_jzLVW_normal.jpg", "lang": "en", "created_at": "Sat Sep 21 20:35:58 +0000 2013", "profile_use_background_image": false, "name": "Sean", "url": "https://soundcloud.com/seanybofficial", "following": null, "profile_link_color": "89C9FA", "statuses_count": 1384, "is_translator": false}, "text": "How is the pavilions car show still a thing?", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470973524869120", "id": 716470973524869120, "timestamp_ms": "1459654966132", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3195978835/1456102451", "description": "my world isn't falling apart.. it's falling into place.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 362, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710509214876053504/_pP2mJno_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 504, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3195978835", "protected": false, "id": 3195978835, "favourites_count": 1619, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexandraanay17", "profile_image_url": "http://pbs.twimg.com/profile_images/710509214876053504/_pP2mJno_normal.jpg", "lang": "en", "created_at": "Fri May 15 04:42:55 +0000 2015", "profile_use_background_image": true, "name": "Alex", "url": "https://www.instagram.com/_alexanaya/", "following": null, "profile_link_color": "0084B4", "statuses_count": 7545, "is_translator": false}, "text": "My Tata just taught me something that I really took into consideration. You never have \"bad luck\" until you're 6ft under.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470979728248832", "id": 716470979728248832, "timestamp_ms": "1459654967611", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 2176000, "url": "https://video.twimg.com/ext_tw_video/716470879857876993/pu/vid/1280x720/2A7ff_nlvMcaCoOS.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716470879857876993/pu/pl/4JYWVggRhBECc_Ef.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716470879857876993/pu/pl/4JYWVggRhBECc_Ef.m3u8"}, {"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716470879857876993/pu/vid/320x180/ZzaW8tRNbPr64mBD.mp4"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716470879857876993/pu/vid/640x360/181CSQv1Z3Xublgz.mp4"}], "aspect_ratio": [16, 9], "duration_millis": 3702}, "url": "https://t.co/ZWSwolrnBs", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "video", "expanded_url": "http://twitter.com/princessmurda/status/716470979057295360/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716470879857876993/pu/img/Kx1gXqj5GBldAlIP.jpg", "indices": [35, 58], "id": 716470879857876993, "id_str": "716470879857876993", "display_url": "pic.twitter.com/ZWSwolrnBs", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716470879857876993/pu/img/Kx1gXqj5GBldAlIP.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1436097660/1459646258", "description": "Sof // JDRF Donation Link: http://www2.jdrf.org/site/TR?fr_id=6001&pg=team&team_id=204433", "profile_sidebar_border_color": "8BA7C4", "profile_background_tile": false, "profile_background_color": "F2EEEF", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 286, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711650848661614594/YYqOjB0Z_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/872508125/da3fab7196724d7e76cbf11ad5d56ad5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 291, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/872508125/da3fab7196724d7e76cbf11ad5d56ad5.jpeg", "time_zone": "Arizona", "profile_text_color": "8F2E2E", "id_str": "1436097660", "protected": false, "id": 1436097660, "favourites_count": 3176, "profile_sidebar_fill_color": "FAFAFA", "screen_name": "princessmurda", "profile_image_url": "http://pbs.twimg.com/profile_images/711650848661614594/YYqOjB0Z_normal.jpg", "lang": "en", "created_at": "Fri May 17 16:38:40 +0000 2013", "profile_use_background_image": true, "name": "mer", "url": null, "following": null, "profile_link_color": "7B8894", "statuses_count": 4182, "is_translator": false}, "text": "Theatre co can do it too \u00af\\_(\u30c4)_/\u00af https://t.co/ZWSwolrnBs", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470979057295360", "id": 716470979057295360, "timestamp_ms": "1459654967451", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/ZWSwolrnBs", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/princessmurda/status/716470979057295360/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716470879857876993/pu/img/Kx1gXqj5GBldAlIP.jpg", "indices": [35, 58], "id": 716470879857876993, "id_str": "716470879857876993", "display_url": "pic.twitter.com/ZWSwolrnBs", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716470879857876993/pu/img/Kx1gXqj5GBldAlIP.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4790076913/1453492951", "description": "livin' the dream\u2122", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "around ", "follow_request_sent": null, "followers_count": 73, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/698236698224889856/jap8DP5O_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 99, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4790076913", "protected": false, "id": 4790076913, "favourites_count": 323, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "scabbykneees", "profile_image_url": "http://pbs.twimg.com/profile_images/698236698224889856/jap8DP5O_normal.jpg", "lang": "en", "created_at": "Wed Jan 20 19:14:37 +0000 2016", "profile_use_background_image": true, "name": "Eris Reed", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 117, "is_translator": false}, "text": "I'm far left squiggly arms guy for sure https://t.co/6vOhSCFjFP", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470993548484608", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/8iJeBpJiUo", "sizes": {"small": {"w": 340, "resize": "fit", "h": 453}, "large": {"w": 1024, "resize": "fit", "h": 1365}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/dudesiick/status/716470201714221057/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFp13SUEAEH7vu.jpg", "indices": [71, 94], "id": 716470189823365121, "id_str": "716470189823365121", "display_url": "pic.twitter.com/8iJeBpJiUo", "media_url": "http://pbs.twimg.com/media/CfFp13SUEAEH7vu.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2280977155/1458586604", "description": "enthusiast of climbing, camping, and cool bears \u24cb", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "the void", "follow_request_sent": null, "followers_count": 249, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710853932206043136/HCZRNHMG_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 314, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "2280977155", "protected": false, "id": 2280977155, "favourites_count": 2658, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "dudesiick", "profile_image_url": "http://pbs.twimg.com/profile_images/710853932206043136/HCZRNHMG_normal.jpg", "lang": "en", "created_at": "Tue Jan 07 18:04:20 +0000 2014", "profile_use_background_image": true, "name": "Ha(RDCORE)ley", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 678, "is_translator": false}, "text": "Speed drawing scenes from jazz fest. Tag yourself I'm summersault kid https://t.co/8iJeBpJiUo", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470201714221057", "id": 716470201714221057, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/8iJeBpJiUo", "sizes": {"small": {"w": 340, "resize": "fit", "h": 453}, "large": {"w": 1024, "resize": "fit", "h": 1365}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/dudesiick/status/716470201714221057/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFp13SUEAEH7vu.jpg", "indices": [71, 94], "id": 716470189823365121, "id_str": "716470189823365121", "display_url": "pic.twitter.com/8iJeBpJiUo", "media_url": "http://pbs.twimg.com/media/CfFp13SUEAEH7vu.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:39:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716470993548484608, "timestamp_ms": "1459654970906", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/dudesiick/status/716470201714221057", "indices": [40, 63], "display_url": "twitter.com/dudesiick/stat\u2026", "url": "https://t.co/6vOhSCFjFP"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470201714221057, "created_at": "Sun Apr 03 03:42:50 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470201714221057", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/vktwEjwUt3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 1024, "resize": "fit", "h": 768}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 450}}, "type": "photo", "expanded_url": "http://twitter.com/roxrome/status/716470992088870912/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqjzBUMAAza_x.jpg", "indices": [73, 96], "id": 716470978952310784, "id_str": "716470978952310784", "display_url": "pic.twitter.com/vktwEjwUt3", "media_url": "http://pbs.twimg.com/media/CfFqjzBUMAAza_x.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/482275506/1371382572", "description": "Sun Devil. Journalist. Sports Addict. Hockey Nerd. HTML Queen. Bay Area Native. @SFSU Alumna.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "131516", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 149, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/695769005378789376/zKto8Ldz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/416987264/DSC_0066_3.jpg", "default_profile_image": false, "notifications": null, "listed_count": 11, "friends_count": 552, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/416987264/DSC_0066_3.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "482275506", "protected": false, "id": 482275506, "favourites_count": 3055, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "roxrome", "profile_image_url": "http://pbs.twimg.com/profile_images/695769005378789376/zKto8Ldz_normal.jpg", "lang": "en", "created_at": "Fri Feb 03 18:33:16 +0000 2012", "profile_use_background_image": true, "name": "Rochelle Romero", "url": "https://rochelleromero.wordpress.com", "following": null, "profile_link_color": "009999", "statuses_count": 1794, "is_translator": false}, "text": "Meanwhile, Coyotes fan Trent just won a 2016 BMW 320i. #WSHvsARI #MCO540 https://t.co/vktwEjwUt3", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470992088870912", "id": 716470992088870912, "timestamp_ms": "1459654970558", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [55, 64], "text": "WSHvsARI"}, {"indices": [65, 72], "text": "MCO540"}], "media": [{"url": "https://t.co/vktwEjwUt3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 1024, "resize": "fit", "h": 768}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 450}}, "type": "photo", "expanded_url": "http://twitter.com/roxrome/status/716470992088870912/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqjzBUMAAza_x.jpg", "indices": [73, 96], "id": 716470978952310784, "id_str": "716470978952310784", "display_url": "pic.twitter.com/vktwEjwUt3", "media_url": "http://pbs.twimg.com/media/CfFqjzBUMAAza_x.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:50 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2841833149/1459429633", "description": "hi", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 124, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715525638522691585/OhDy6wm-_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 84, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2841833149", "protected": false, "id": 2841833149, "favourites_count": 3228, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "brenda_grier24", "profile_image_url": "http://pbs.twimg.com/profile_images/715525638522691585/OhDy6wm-_normal.jpg", "lang": "en", "created_at": "Mon Oct 06 00:00:25 +0000 2014", "profile_use_background_image": true, "name": ":/ Brenda \\:", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 888, "is_translator": false}, "text": "Quency is so stupid lmao \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471019821600769", "id": 716471019821600769, "timestamp_ms": "1459654977170", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Untappd", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/15888358/1405925170", "description": "Green, Urban, Modernist with a mission to create thriving, cooperative, engaging, places through a leadership role.", "profile_sidebar_border_color": "C6E2EE", "profile_background_tile": true, "profile_background_color": "C6E2EE", "verified": false, "location": "iPhone: 33.449856,-112.069855", "follow_request_sent": null, "followers_count": 1218, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/491110130285412352/0lZV4_Xf_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/198571491/McDowell_Gateway_023.jpg", "default_profile_image": false, "notifications": null, "listed_count": 68, "friends_count": 1988, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/198571491/McDowell_Gateway_023.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "663B12", "id_str": "15888358", "protected": false, "id": 15888358, "favourites_count": 194, "profile_sidebar_fill_color": "DAECF4", "screen_name": "phxsterpete", "profile_image_url": "http://pbs.twimg.com/profile_images/491110130285412352/0lZV4_Xf_normal.jpeg", "lang": "en", "created_at": "Mon Aug 18 03:55:46 +0000 2008", "profile_use_background_image": true, "name": "Peter Newton", "url": "http://peternewton.wordpress.com/wp-admin/edit.php", "following": null, "profile_link_color": "1F98C7", "statuses_count": 59679, "is_translator": false}, "text": "Drinking The Anvil Bourbon Cider by @SonomaCider at @cubs \u2014 https://t.co/cGDc8JtyQP", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471023621771265", "id": 716471023621771265, "timestamp_ms": "1459654978076", "entities": {"symbols": [], "urls": [{"expanded_url": "http://untp.beer/s/c295501564", "indices": [61, 84], "display_url": "untp.beer/s/c295501564", "url": "https://t.co/cGDc8JtyQP"}], "user_mentions": [{"name": "Sonoma Cider", "indices": [37, 49], "id": 1092789799, "screen_name": "SonomaCider", "id_str": "1092789799"}, {"name": "Chicago Cubs", "indices": [53, 58], "id": 41144996, "screen_name": "Cubs", "id_str": "41144996"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:58 +0000 2016", "coordinates": {"coordinates": [-111.882, 33.431], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.431, -111.882], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"description": "when temperatures get too high, the elderly will start to die! @ryanevanss13", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "ACDED6", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 461, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705581532895793153/GbF9dzdd_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/794306066/4a8ccd88b15003d01ae050ef76cd12e5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 355, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/794306066/4a8ccd88b15003d01ae050ef76cd12e5.jpeg", "time_zone": null, "profile_text_color": "0C3E53", "id_str": "711512724", "protected": false, "id": 711512724, "favourites_count": 4468, "profile_sidebar_fill_color": "FFF7CC", "screen_name": "haleighplewe", "profile_image_url": "http://pbs.twimg.com/profile_images/705581532895793153/GbF9dzdd_normal.jpg", "lang": "en", "created_at": "Mon Jul 23 00:35:28 +0000 2012", "profile_use_background_image": false, "name": "hay layy", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 5991, "is_translator": false}, "text": "What movie should me and Ryan watch", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471025223880704", "id": 716471025223880704, "timestamp_ms": "1459654978458", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:58 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1297397599/1449548081", "description": "Highline CC Mens soccer Barbrothers Seattle IG:@barbrothers_seattle", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "soccer and calisthenics ", "follow_request_sent": null, "followers_count": 504, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/539977405843009536/6AZYIzwc_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 298, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1297397599", "protected": false, "id": 1297397599, "favourites_count": 11052, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tinoslish", "profile_image_url": "http://pbs.twimg.com/profile_images/539977405843009536/6AZYIzwc_normal.jpeg", "lang": "en", "created_at": "Mon Mar 25 02:36:28 +0000 2013", "profile_use_background_image": true, "name": "T. Slish", "url": "https://m.youtube.com/channel/UCt5rpg_OuMDnymi-FNitHSg", "following": null, "profile_link_color": "0084B4", "statuses_count": 10299, "is_translator": false}, "text": "Can't wait till my first shipment from my sponsor comes \ud83d\ude4c", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471029288144897", "id": 716471029288144897, "timestamp_ms": "1459654979427", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "388633471", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/2FIOjghffl", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/marbs50/status/716471030701821952/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqmNpUYAAlmYz.jpg", "indices": [13, 36], "id": 716471020459155456, "id_str": "716471020459155456", "display_url": "pic.twitter.com/2FIOjghffl", "media_url": "http://pbs.twimg.com/media/CfFqmNpUYAAlmYz.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/34046041/1451943189", "description": "Proud papa of 3 great kids. Vandal fan for life and just peddling a few apples around the world everyday", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Wenatchee, WA", "follow_request_sent": null, "followers_count": 93, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697248384000745472/N8QYh6MP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 195, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "34046041", "protected": false, "id": 34046041, "favourites_count": 1679, "profile_sidebar_fill_color": "000000", "screen_name": "marbs50", "profile_image_url": "http://pbs.twimg.com/profile_images/697248384000745472/N8QYh6MP_normal.jpg", "lang": "en", "created_at": "Tue Apr 21 21:18:57 +0000 2009", "profile_use_background_image": false, "name": "Leelard", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 3720, "is_translator": false}, "text": "@Mama_Eberle https://t.co/2FIOjghffl", "retweeted": false, "in_reply_to_screen_name": "Mama_Eberle", "id_str": "716471030701821952", "id": 716471030701821952, "timestamp_ms": "1459654979764", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "stephanie eberle", "indices": [0, 12], "id": 388633471, "screen_name": "Mama_Eberle", "id_str": "388633471"}], "hashtags": [], "media": [{"url": "https://t.co/2FIOjghffl", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/marbs50/status/716471030701821952/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqmNpUYAAlmYz.jpg", "indices": [13, 36], "id": 716471020459155456, "id_str": "716471020459155456", "display_url": "pic.twitter.com/2FIOjghffl", "media_url": "http://pbs.twimg.com/media/CfFqmNpUYAAlmYz.jpg"}]}, "in_reply_to_user_id": 388633471, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:42:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470692917678080", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "461457789", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/43603566/1389840761", "description": "Young Trump, Descendant of Uncle Ruckus. Savage Inc. One HELL of a gentleman.", "profile_sidebar_border_color": "323231", "profile_background_tile": false, "profile_background_color": "9A958E", "verified": false, "location": "The Valley ", "follow_request_sent": null, "followers_count": 816, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 46, "friends_count": 342, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "020202", "id_str": "43603566", "protected": false, "id": 43603566, "favourites_count": 161, "profile_sidebar_fill_color": "9A3B25", "screen_name": "blizzardwolf00", "profile_image_url": "http://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "lang": "en", "created_at": "Sat May 30 22:10:06 +0000 2009", "profile_use_background_image": true, "name": "R. Von Hades", "url": "http://AbbasSTRONG.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 205115, "is_translator": false}, "text": "Me RT @Destiny_Naje: I need a movie to watch \ud83d\ude44", "retweeted": false, "in_reply_to_screen_name": "Destiny_Naje", "id_str": "716471036749852672", "id": 716471036749852672, "timestamp_ms": "1459654981206", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Deso", "indices": [7, 20], "id": 461457789, "screen_name": "Destiny_Naje", "id_str": "461457789"}], "hashtags": []}, "in_reply_to_user_id": 461457789, "favorite_count": 0, "in_reply_to_status_id": 716470692917678080, "lang": "en", "created_at": "Sun Apr 03 03:43:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470897570238464", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "25195214", "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/152383548/1444424192", "description": "Tried to verify my account, but was denied. Official Twitter of Jesse Aranda - Videographer @ArizonaCoyotes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 589, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/652589418138615808/0XEJ_nvr_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 8, "friends_count": 355, "utc_offset": -21600, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "333333", "id_str": "152383548", "protected": false, "id": 152383548, "favourites_count": 601, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JesseAranda", "profile_image_url": "http://pbs.twimg.com/profile_images/652589418138615808/0XEJ_nvr_normal.jpg", "lang": "en", "created_at": "Sat Jun 05 20:24:42 +0000 2010", "profile_use_background_image": true, "name": "Jesse", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3245, "is_translator": false}, "text": "@craigsmorgan @LukeLapinski I cant wait", "retweeted": false, "in_reply_to_screen_name": "craigsmorgan", "id_str": "716471038528258049", "id": 716471038528258049, "timestamp_ms": "1459654981630", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Craig Morgan", "indices": [0, 13], "id": 25195214, "screen_name": "craigsmorgan", "id_str": "25195214"}, {"name": "Luke Lapinski", "indices": [14, 27], "id": 58324585, "screen_name": "LukeLapinski", "id_str": "58324585"}], "hashtags": []}, "in_reply_to_user_id": 25195214, "favorite_count": 0, "in_reply_to_status_id": 716470897570238464, "lang": "en", "created_at": "Sun Apr 03 03:43:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": true, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 30, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/678463367187574788/vckKryp9_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 43, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4609905738", "protected": false, "id": 4609905738, "favourites_count": 598, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JavierCabarrub1", "profile_image_url": "http://pbs.twimg.com/profile_images/678463367187574788/vckKryp9_normal.jpg", "lang": "en", "created_at": "Sun Dec 20 06:28:38 +0000 2015", "profile_use_background_image": true, "name": "Javier sanchez", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 466, "is_translator": false}, "text": "Nicewherayio https://t.co/qpSn3F987w", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471051970945024", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CW93qUgWYAAXEPD.mp4"}], "aspect_ratio": [49, 50]}, "url": "https://t.co/3dtN8le3DK", "sizes": {"large": {"w": 490, "resize": "fit", "h": 500}, "small": {"w": 340, "resize": "fit", "h": 347}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 490, "resize": "fit", "h": 500}}, "type": "animated_gif", "expanded_url": "http://twitter.com/BigBlackDaddy27/status/679893721706565633/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png", "indices": [0, 23], "id": 679893637698838528, "id_str": "679893637698838528", "display_url": "pic.twitter.com/3dtN8le3DK", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1604532679/1439000450", "description": "+21 Strong Black Alpha Dominant Daddy", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 38822, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697234091301851136/N4iugzQS_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 149, "friends_count": 89, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "1604532679", "protected": false, "id": 1604532679, "favourites_count": 1749, "profile_sidebar_fill_color": "000000", "screen_name": "BigBlackDaddy27", "profile_image_url": "http://pbs.twimg.com/profile_images/697234091301851136/N4iugzQS_normal.png", "lang": "en", "created_at": "Thu Jul 18 22:44:14 +0000 2013", "profile_use_background_image": true, "name": "Big Black Daddy", "url": null, "following": null, "profile_link_color": "131516", "statuses_count": 1524, "is_translator": false}, "text": "https://t.co/3dtN8le3DK", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "679893721706565633", "id": 679893721706565633, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/3dtN8le3DK", "sizes": {"large": {"w": 490, "resize": "fit", "h": 500}, "small": {"w": 340, "resize": "fit", "h": 347}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 490, "resize": "fit", "h": 500}}, "type": "photo", "expanded_url": "http://twitter.com/BigBlackDaddy27/status/679893721706565633/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png", "indices": [0, 23], "id": 679893637698838528, "id_str": "679893637698838528", "display_url": "pic.twitter.com/3dtN8le3DK", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Thu Dec 24 05:17:49 +0000 2015", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471051970945024, "timestamp_ms": "1459654984835", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/BigBlackDaddy27/status/679893721706565633", "indices": [13, 36], "display_url": "twitter.com/BigBlackDaddy2\u2026", "url": "https://t.co/qpSn3F987w"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "ht", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 679893721706565633, "created_at": "Sun Apr 03 03:43:04 +0000 2016", "coordinates": null, "quoted_status_id_str": "679893721706565633", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470922840911876", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2967712748", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/386942509/1458546176", "description": null, "profile_sidebar_border_color": "054F36", "profile_background_tile": true, "profile_background_color": "FAA8FA", "verified": false, "location": "East Oakland", "follow_request_sent": null, "followers_count": 586, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701243735204433922/sC8l2gzi_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/658168295/l63uaqz5aake6mdunvw9.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 389, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/658168295/l63uaqz5aake6mdunvw9.jpeg", "time_zone": "Arizona", "profile_text_color": "050505", "id_str": "386942509", "protected": false, "id": 386942509, "favourites_count": 9976, "profile_sidebar_fill_color": "78F0AC", "screen_name": "AKbangaa", "profile_image_url": "http://pbs.twimg.com/profile_images/701243735204433922/sC8l2gzi_normal.jpg", "lang": "en", "created_at": "Sat Oct 08 05:48:34 +0000 2011", "profile_use_background_image": true, "name": "AK", "url": "http://wrongbitch.com", "following": null, "profile_link_color": "2ECCE8", "statuses_count": 41376, "is_translator": false}, "text": "@LaVendrickS lmfao I have no idea. This is the most sketch thing of my life.", "retweeted": false, "in_reply_to_screen_name": "LaVendrickS", "id_str": "716471052155506688", "id": 716471052155506688, "timestamp_ms": "1459654984879", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "LaVendrick Smith", "indices": [0, 12], "id": 2967712748, "screen_name": "LaVendrickS", "id_str": "2967712748"}], "hashtags": []}, "in_reply_to_user_id": 2967712748, "favorite_count": 0, "in_reply_to_status_id": 716470922840911876, "lang": "en", "created_at": "Sun Apr 03 03:43:04 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3982174934/1445617708", "description": "in the Army, Recruiter, Computer Analyst 25B follow my fellow brothers in arms @SgtWilliamJ @SSGSchider and @SSGRod1", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 135, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/695171328882536448/DfLhvRwN_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 436, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3982174934", "protected": false, "id": 3982174934, "favourites_count": 485, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ssgetcitty", "profile_image_url": "http://pbs.twimg.com/profile_images/695171328882536448/DfLhvRwN_normal.jpg", "lang": "en", "created_at": "Thu Oct 22 17:01:02 +0000 2015", "profile_use_background_image": true, "name": "SSGEtcitty", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 711, "is_translator": false}, "text": "Loving Azaria she said this was the best bib ever and gave me a Hugh five #thatsmygirl @ Joe's\u2026 https://t.co/86rRN5Zr0v", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471070124060672", "id": 716471070124060672, "timestamp_ms": "1459654989163", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTKhoC7YP/", "indices": [96, 119], "display_url": "instagram.com/p/BDuTKhoC7YP/", "url": "https://t.co/86rRN5Zr0v"}], "user_mentions": [], "hashtags": [{"indices": [74, 86], "text": "thatsmygirl"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:09 +0000 2016", "coordinates": {"coordinates": [-111.96636722, 33.3787509], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.3787509, -111.96636722], "type": "Point"}}, {"in_reply_to_status_id_str": "716470684495417344", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1129923452", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/412852387/1457324275", "description": "I'm 6'6. Mariners. Seahawks. Cougs. LeBron. RIP DH14", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Seattle, WA", "follow_request_sent": null, "followers_count": 350, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715404056890478592/RYUDLTmu_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 297, "utc_offset": -28800, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Alaska", "profile_text_color": "333333", "id_str": "412852387", "protected": false, "id": 412852387, "favourites_count": 3652, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "WillieMayzHaze", "profile_image_url": "http://pbs.twimg.com/profile_images/715404056890478592/RYUDLTmu_normal.jpg", "lang": "en", "created_at": "Tue Nov 15 06:09:56 +0000 2011", "profile_use_background_image": true, "name": "Mariners WSC 2016", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 29673, "is_translator": false}, "text": "@EmilyLeFebre lmfaoooo he just swimming laps in the tub.", "retweeted": false, "in_reply_to_screen_name": "EmilyLeFebre", "id_str": "716471073370279936", "id": 716471073370279936, "timestamp_ms": "1459654989937", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "emily jane\u00e1", "indices": [0, 13], "id": 1129923452, "screen_name": "EmilyLeFebre", "id_str": "1129923452"}], "hashtags": []}, "in_reply_to_user_id": 1129923452, "favorite_count": 0, "in_reply_to_status_id": 716470684495417344, "lang": "en", "created_at": "Sun Apr 03 03:43:09 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/514997288/1455308521", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Spartanburg, SC", "follow_request_sent": null, "followers_count": 183, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/643594945954230272/B_YbO5L2_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 168, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "514997288", "protected": false, "id": 514997288, "favourites_count": 128, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ejrichard01", "profile_image_url": "http://pbs.twimg.com/profile_images/643594945954230272/B_YbO5L2_normal.jpg", "lang": "en", "created_at": "Mon Mar 05 02:12:55 +0000 2012", "profile_use_background_image": true, "name": "Emmett Richardson", "url": "http://cogreenville.org", "following": null, "profile_link_color": "0084B4", "statuses_count": 231, "is_translator": false}, "text": "After driving 32 hours we made it just in time @ Grand Canyon National Park https://t.co/ahaYsL6eER", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471082262376448", "id": 716471082262376448, "timestamp_ms": "1459654992057", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTMI4COyF/", "indices": [76, 99], "display_url": "instagram.com/p/BDuTMI4COyF/", "url": "https://t.co/ahaYsL6eER"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:12 +0000 2016", "coordinates": {"coordinates": [-112.13943708, 36.05723622], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [36.05723622, -112.13943708], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/A1U2YS1ZGG", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 1024, "resize": "fit", "h": 768}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 450}}, "type": "photo", "expanded_url": "http://twitter.com/smith_elli/status/716471083499585537/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqoXpUYAAYORT.jpg", "indices": [35, 58], "id": 716471057503248384, "id_str": "716471057503248384", "display_url": "pic.twitter.com/A1U2YS1ZGG", "media_url": "http://pbs.twimg.com/media/CfFqoXpUYAAYORT.jpg"}, {"url": "https://t.co/A1U2YS1ZGG", "sizes": {"small": {"w": 340, "resize": "fit", "h": 227}, "large": {"w": 1024, "resize": "fit", "h": 683}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 400}}, "type": "photo", "expanded_url": "http://twitter.com/smith_elli/status/716471083499585537/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqpaLUYAAhxv1.jpg", "indices": [35, 58], "id": 716471075362594816, "id_str": "716471075362594816", "display_url": "pic.twitter.com/A1U2YS1ZGG", "media_url": "http://pbs.twimg.com/media/CfFqpaLUYAAhxv1.jpg"}]}, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/531832293/1454877759", "description": "Hamilton High School '16", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 199, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715753612215975938/6HR0tpPR_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 206, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "531832293", "protected": false, "id": 531832293, "favourites_count": 269, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "smith_elli", "profile_image_url": "http://pbs.twimg.com/profile_images/715753612215975938/6HR0tpPR_normal.jpg", "lang": "en", "created_at": "Tue Mar 20 23:40:37 +0000 2012", "profile_use_background_image": true, "name": "Elliot", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 192, "is_translator": false}, "text": "Then and now... Love these nerds \u2764 https://t.co/A1U2YS1ZGG", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471083499585537", "id": 716471083499585537, "timestamp_ms": "1459654992352", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/A1U2YS1ZGG", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 1024, "resize": "fit", "h": 768}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 450}}, "type": "photo", "expanded_url": "http://twitter.com/smith_elli/status/716471083499585537/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqoXpUYAAYORT.jpg", "indices": [35, 58], "id": 716471057503248384, "id_str": "716471057503248384", "display_url": "pic.twitter.com/A1U2YS1ZGG", "media_url": "http://pbs.twimg.com/media/CfFqoXpUYAAYORT.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:12 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/o9qFqXeSVA", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/SarayaDaniella/status/716471086641053696/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqphAUUAQrMCs.jpg", "indices": [42, 65], "id": 716471077195501572, "id_str": "716471077195501572", "display_url": "pic.twitter.com/o9qFqXeSVA", "media_url": "http://pbs.twimg.com/media/CfFqphAUUAQrMCs.jpg"}]}, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4606827140/1459141115", "description": "Baby boy you gotta be the dopest.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 169, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713903489269805056/-_aJFfz4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 146, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "4606827140", "protected": false, "id": 4606827140, "favourites_count": 1739, "profile_sidebar_fill_color": "000000", "screen_name": "SarayaDaniella", "profile_image_url": "http://pbs.twimg.com/profile_images/713903489269805056/-_aJFfz4_normal.jpg", "lang": "en", "created_at": "Sat Dec 19 22:20:34 +0000 2015", "profile_use_background_image": false, "name": "Saraya Burrell\u2600\ufe0f", "url": "https://www.instagram.com/saraya.daniella/", "following": null, "profile_link_color": "89C9FA", "statuses_count": 813, "is_translator": false}, "text": "My love looked sooo good that night \ud83d\ude0f\ud83d\ude07\ud83d\udc9e\ud83d\udc9e\ud83d\udc9e https://t.co/o9qFqXeSVA", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471086641053696", "id": 716471086641053696, "timestamp_ms": "1459654993101", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/o9qFqXeSVA", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/SarayaDaniella/status/716471086641053696/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFqphAUUAQrMCs.jpg", "indices": [42, 65], "id": 716471077195501572, "id_str": "716471077195501572", "display_url": "pic.twitter.com/o9qFqXeSVA", "media_url": "http://pbs.twimg.com/media/CfFqphAUUAQrMCs.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:13 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Foursquare", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "Just plain ol' me. Want to know more? Hit me up! Social media junky. Interested in mobile app dev and the future of mobile computing.", "profile_sidebar_border_color": "86A4A6", "profile_background_tile": false, "profile_background_color": "709397", "verified": false, "location": "San Diego, CA", "follow_request_sent": null, "followers_count": 588, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2165322918/image_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 19, "friends_count": 2644, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "23991845", "protected": false, "id": 23991845, "favourites_count": 1496, "profile_sidebar_fill_color": "A0C5C7", "screen_name": "admdavid", "profile_image_url": "http://pbs.twimg.com/profile_images/2165322918/image_normal.jpg", "lang": "en", "created_at": "Thu Mar 12 17:50:15 +0000 2009", "profile_use_background_image": true, "name": "David", "url": "http://www.facebook.com/admdavid", "following": null, "profile_link_color": "FF3300", "statuses_count": 5174, "is_translator": false}, "text": "Again (@ Roscoes in Phoenix, AZ) https://t.co/r5gJMTdSoB", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471091473068032", "id": 716471091473068032, "timestamp_ms": "1459654994253", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.swarmapp.com/c/hReeiE8cW2F", "indices": [33, 56], "display_url": "swarmapp.com/c/hReeiE8cW2F", "url": "https://t.co/r5gJMTdSoB"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:14 +0000 2016", "coordinates": {"coordinates": [-112.06465734, 33.50274819], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.50274819, -112.06465734], "type": "Point"}}, {"in_reply_to_status_id_str": "716470404257226752", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "16303450", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/384108538/1456684505", "description": "#gobeavs #canucks #trailblazers #GoBucs #quakes74 #padres Oregon Native #NRA #Constitution #HumanRights Goonies is the greatest movie ever!", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "4A913C", "verified": false, "location": "Lebanon, OR", "follow_request_sent": null, "followers_count": 720, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714653224381378560/XTKFoU9K_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/677149127382138882/skRR82dD.jpg", "default_profile_image": false, "notifications": null, "listed_count": 41, "friends_count": 470, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/677149127382138882/skRR82dD.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "384108538", "protected": false, "id": 384108538, "favourites_count": 13514, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "DavidJMays", "profile_image_url": "http://pbs.twimg.com/profile_images/714653224381378560/XTKFoU9K_normal.jpg", "lang": "en", "created_at": "Mon Oct 03 02:46:50 +0000 2011", "profile_use_background_image": true, "name": "Beat UCONN", "url": null, "following": null, "profile_link_color": "FA743E", "statuses_count": 30865, "is_translator": false}, "text": "@SJEarthquakes Why is this game blacked out in Arizona ? #sadday #Quakes74", "retweeted": false, "in_reply_to_screen_name": "SJEarthquakes", "id_str": "716471107658776580", "id": 716471107658776580, "timestamp_ms": "1459654998112", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "San Jose Earthquakes", "indices": [0, 14], "id": 16303450, "screen_name": "SJEarthquakes", "id_str": "16303450"}], "hashtags": [{"indices": [57, 64], "text": "sadday"}, {"indices": [65, 74], "text": "Quakes74"}]}, "in_reply_to_user_id": 16303450, "favorite_count": 0, "in_reply_to_status_id": 716470404257226752, "lang": "en", "created_at": "Sun Apr 03 03:43:18 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716444120344952832", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "308441111", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2660301030/1459196117", "description": "\u200f\u0646\u0627\u064a\u0645", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 96, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714545117667921922/7MAr-wtS_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 313, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Mazatlan", "profile_text_color": "333333", "id_str": "2660301030", "protected": false, "id": 2660301030, "favourites_count": 26, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Hamzaaab511", "profile_image_url": "http://pbs.twimg.com/profile_images/714545117667921922/7MAr-wtS_normal.jpg", "lang": "en", "created_at": "Sat Jul 19 19:30:11 +0000 2014", "profile_use_background_image": true, "name": "Hamzah Hussain", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 977, "is_translator": false}, "text": "@M_Jwahery \u0631\u062f \u0643\u0645\u0644 \u0646\u0648\u0645\u062a\u0643 \u0627\u0628\u0631\u0643\u0644\u0643", "retweeted": false, "in_reply_to_screen_name": "M_Jwahery", "id_str": "716471111987306498", "id": 716471111987306498, "timestamp_ms": "1459654999144", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u062d\u062c\u064a Mahdi", "indices": [0, 10], "id": 308441111, "screen_name": "M_Jwahery", "id_str": "308441111"}], "hashtags": []}, "in_reply_to_user_id": 308441111, "favorite_count": 0, "in_reply_to_status_id": 716444120344952832, "lang": "ar", "created_at": "Sun Apr 03 03:43:19 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3489035659/1441725806", "description": "I love you like you should love yourself", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 428, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 411, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3489035659", "protected": false, "id": 3489035659, "favourites_count": 5804, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexnderkostas", "profile_image_url": "http://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "lang": "en", "created_at": "Tue Sep 08 04:03:51 +0000 2015", "profile_use_background_image": true, "name": "KOSTAS", "url": "http://losertilldeath.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 11123, "is_translator": false}, "text": "Wooooooow lets go https://t.co/pZlJygRMSO", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471118643593216", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1523273898/1436517668", "description": "#CowboysNation #Beardown | IG: Itzjazzyjaz | SC: Itzjazzybroee | Dont be lame, check it out: https://m.soundcloud.com/pjpk93lhwxed/lux-rehab-prod-by-keflon-don", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 803, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711763943941771264/Yj2Z_KMR_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 405, "utc_offset": -21600, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "333333", "id_str": "1523273898", "protected": false, "id": 1523273898, "favourites_count": 53736, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Jazzybroee", "profile_image_url": "http://pbs.twimg.com/profile_images/711763943941771264/Yj2Z_KMR_normal.jpg", "lang": "en", "created_at": "Sun Jun 16 21:48:10 +0000 2013", "profile_use_background_image": true, "name": "Jasmine Monique", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 44234, "is_translator": false}, "text": "I need more down niggas who wanna hang out with me AND my girls not just me \ud83d\ude12\ud83d\ude44\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470809892560896", "id": 716470809892560896, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471118643593216, "timestamp_ms": "1459655000731", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/jazzybroee/status/716470809892560896", "indices": [18, 41], "display_url": "twitter.com/jazzybroee/sta\u2026", "url": "https://t.co/pZlJygRMSO"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470809892560896, "created_at": "Sun Apr 03 03:43:20 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470809892560896", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2912118593/1458364490", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "lpaz", "follow_request_sent": null, "followers_count": 265, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711874457845927936/RAh0sLlS_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 581, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2912118593", "protected": false, "id": 2912118593, "favourites_count": 5205, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "drizzyjaz", "profile_image_url": "http://pbs.twimg.com/profile_images/711874457845927936/RAh0sLlS_normal.jpg", "lang": "en", "created_at": "Tue Dec 09 03:34:22 +0000 2014", "profile_use_background_image": true, "name": "jas", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4487, "is_translator": false}, "text": "I'm so glad I have my friends to fall back on (,:", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471131587289089", "id": 716471131587289089, "timestamp_ms": "1459655003817", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:23 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/296572158/1458126025", "description": "the moral of the story is the glory \u2728Gary IN \u2708\ufe0fPhoenix AZ", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "6BF7D4", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 1034, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716366355503534080/6BJaCyV5_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/487708409450348545/20aYNHZ0.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 512, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/487708409450348545/20aYNHZ0.jpeg", "time_zone": "Central Time (US & Canada)", "profile_text_color": "FA0505", "id_str": "296572158", "protected": false, "id": 296572158, "favourites_count": 801, "profile_sidebar_fill_color": "050005", "screen_name": "_LikeMik3_", "profile_image_url": "http://pbs.twimg.com/profile_images/716366355503534080/6BJaCyV5_normal.jpg", "lang": "en", "created_at": "Wed May 11 01:06:13 +0000 2011", "profile_use_background_image": true, "name": "MikeCheck", "url": "http://finnessall.com", "following": null, "profile_link_color": "FA7878", "statuses_count": 19558, "is_translator": false}, "text": "If you listen to chief keef ik we got some of the same views on life..Automatically friends", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471139451572225", "id": 716471139451572225, "timestamp_ms": "1459655005692", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3163115966/1457378385", "description": "(uh-rae-uh)\n Leo \u264c\nSC : araya.santoro\ndv cheer", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "probably @ cheer", "follow_request_sent": null, "followers_count": 127, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 352, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3163115966", "protected": false, "id": 3163115966, "favourites_count": 2151, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "agsan095", "profile_image_url": "http://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "lang": "en", "created_at": "Sun Apr 19 00:40:18 +0000 2015", "profile_use_background_image": true, "name": "snooks", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1183, "is_translator": false}, "text": "Crazy how this isn't true https://t.co/4FWl9tkfxa", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471148146364417", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1535742139/1459581771", "description": "You aren't really you, are you?", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": "selling rts.", "follow_request_sent": null, "followers_count": 55629, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716190520830070785/fz1l7Res_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000004145116/4f8b4c2b1d270c52a5f46edcdc9736d7.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 94, "friends_count": 0, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000004145116/4f8b4c2b1d270c52a5f46edcdc9736d7.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1535742139", "protected": false, "id": 1535742139, "favourites_count": 1, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "soliditary", "profile_image_url": "http://pbs.twimg.com/profile_images/716190520830070785/fz1l7Res_normal.jpg", "lang": "en", "created_at": "Fri Jun 21 04:33:27 +0000 2013", "profile_use_background_image": false, "name": "\u263e", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 364, "is_translator": false}, "text": "She loves him more than he'll ever know, he loves her more than he'll ever show.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716467714189955073", "id": 716467714189955073, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:29:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471148146364417, "timestamp_ms": "1459655007765", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/soliditary/status/716467714189955073", "indices": [27, 50], "display_url": "twitter.com/soliditary/sta\u2026", "url": "https://t.co/4FWl9tkfxa"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716467714189955073, "created_at": "Sun Apr 03 03:43:27 +0000 2016", "coordinates": null, "quoted_status_id_str": "716467714189955073", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/925705651/1457585142", "description": "#FREETHEWAVE", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 772, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711307833774460928/hupz8B5y_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 548, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "925705651", "protected": false, "id": 925705651, "favourites_count": 6810, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Mareeezy_", "profile_image_url": "http://pbs.twimg.com/profile_images/711307833774460928/hupz8B5y_normal.jpg", "lang": "en", "created_at": "Sun Nov 04 16:49:35 +0000 2012", "profile_use_background_image": true, "name": "Mariah Morales", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 19188, "is_translator": false}, "text": "Not having to do my hair saves so much time \ud83d\ude4f\ud83c\udffc", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471160188248065", "id": 716471160188248065, "timestamp_ms": "1459655010636", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Anthem, AZ", "place_type": "city", "attributes": {}, "name": "Anthem", "country": "United States", "id": "01d5798f59d51d79", "bounding_box": {"coordinates": [[[-112.164272, 33.784511], [-112.164272, 33.885193], [-112.012981, 33.885193], [-112.012981, 33.784511]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/01d5798f59d51d79.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2206541915/1458489452", "description": "Intelligence without ambition is a bird without wings - Salvador Dali", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "NY\u2708\ufe0fAZ", "follow_request_sent": null, "followers_count": 388, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711582456630026240/oBgCp5Ux_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 284, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2206541915", "protected": false, "id": 2206541915, "favourites_count": 7997, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "adam_aybar98", "profile_image_url": "http://pbs.twimg.com/profile_images/711582456630026240/oBgCp5Ux_normal.jpg", "lang": "en", "created_at": "Tue Dec 03 22:20:25 +0000 2013", "profile_use_background_image": true, "name": "Adam Aybar", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8978, "is_translator": false}, "text": "I'm so bored \ud83d\ude2d\ud83d\ude2d", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471164168577026", "id": 716471164168577026, "timestamp_ms": "1459655011585", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:31 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1732900627/1459040882", "description": "no ragrets(:", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "az baby ", "follow_request_sent": null, "followers_count": 1377, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715068238757933056/Xxq304Ho_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 657, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1732900627", "protected": false, "id": 1732900627, "favourites_count": 19999, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Syddddw", "profile_image_url": "http://pbs.twimg.com/profile_images/715068238757933056/Xxq304Ho_normal.jpg", "lang": "en", "created_at": "Thu Sep 05 19:24:06 +0000 2013", "profile_use_background_image": true, "name": "syd", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 30382, "is_translator": false}, "text": "Come to trailhead", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471170845921281", "id": 716471170845921281, "timestamp_ms": "1459655013177", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1654028394/1458511371", "description": "I ain't neva gone stop lovin u... bihhhhh", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "arizona state university '20 \u2743", "follow_request_sent": null, "followers_count": 710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711420674036748288/vT0bdUPm_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000046987854/58843312ec62e65e15eb68ad05bd1f7c.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 560, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000046987854/58843312ec62e65e15eb68ad05bd1f7c.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "1654028394", "protected": false, "id": 1654028394, "favourites_count": 20886, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ohjoyo", "profile_image_url": "http://pbs.twimg.com/profile_images/711420674036748288/vT0bdUPm_normal.jpg", "lang": "en", "created_at": "Wed Aug 07 22:58:17 +0000 2013", "profile_use_background_image": true, "name": "joy joy", "url": "http://ohjoyo.vsco.co", "following": null, "profile_link_color": "0084B4", "statuses_count": 2144, "is_translator": false}, "text": "LOOK OUT ASU HERE ME AND @SquidneyAnn COME!!! \u2764\ufe0f\ud83d\udc9b\u2764\ufe0f\ud83d\udc9b", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471204555534336", "id": 716471204555534336, "timestamp_ms": "1459655021214", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Sydney", "indices": [25, 37], "id": 99441821, "screen_name": "SquidneyAnn", "id_str": "99441821"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/346333803/1458125070", "description": "she/her studious earth loving vegan xicana | #blacklivesmatter #brownandunbothered", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "phnx", "follow_request_sent": null, "followers_count": 631, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/680952540788166657/jHKrTcb3_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/588935471188676609/hHV9PQfb.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 455, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/588935471188676609/hHV9PQfb.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "346333803", "protected": false, "id": 346333803, "favourites_count": 9382, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "friduuhh", "profile_image_url": "http://pbs.twimg.com/profile_images/680952540788166657/jHKrTcb3_normal.jpg", "lang": "en", "created_at": "Mon Aug 01 03:08:56 +0000 2011", "profile_use_background_image": true, "name": "feminista", "url": "http://Instagram.com/friduuhh", "following": null, "profile_link_color": "0084B4", "statuses_count": 4782, "is_translator": false}, "text": "\"Are you into goth music?\"\n-goodwill employee", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471209408397312", "id": 716471209408397312, "timestamp_ms": "1459655022371", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3256965966/1456781385", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "CALI \u2708\ufe0f AZ ", "follow_request_sent": null, "followers_count": 294, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715712720511733761/WHZuMVFh_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 234, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3256965966", "protected": false, "id": 3256965966, "favourites_count": 1440, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "runjumphoop", "profile_image_url": "http://pbs.twimg.com/profile_images/715712720511733761/WHZuMVFh_normal.jpg", "lang": "en", "created_at": "Fri Jun 26 20:25:16 +0000 2015", "profile_use_background_image": true, "name": "B.O.E \u303d\ufe0fYKE.B", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2052, "is_translator": false}, "text": "im not somebody you need to lie to \ud83d\udcaf", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471216018554882", "id": 716471216018554882, "timestamp_ms": "1459655023947", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2716271159/1459063627", "description": "saved China, no big deal", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 150, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713991068409315329/pKZj_c1__normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 120, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2716271159", "protected": false, "id": 2716271159, "favourites_count": 3660, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "KealaniFaulkner", "profile_image_url": "http://pbs.twimg.com/profile_images/713991068409315329/pKZj_c1__normal.jpg", "lang": "en", "created_at": "Fri Jul 18 02:37:09 +0000 2014", "profile_use_background_image": true, "name": "Fa Mulan", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2604, "is_translator": false}, "text": "I was at panda and there was a spider that kept bothering my dad and he was like whisper yelling at Kai to get a napkin so he can kill it", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471219558592512", "id": 716471219558592512, "timestamp_ms": "1459655024791", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2405574704/1459547215", "description": "1 Samuel 2:2 / lopes class of '20", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 359, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715911210856636416/tafyLiML_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 560, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2405574704", "protected": false, "id": 2405574704, "favourites_count": 19482, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HannnnahDavid", "profile_image_url": "http://pbs.twimg.com/profile_images/715911210856636416/tafyLiML_normal.jpg", "lang": "en", "created_at": "Sun Mar 23 02:41:14 +0000 2014", "profile_use_background_image": true, "name": "hannah", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2061, "is_translator": false}, "text": "This is not fun \ud83d\ude14\ud83d\ude14\ud83d\ude14\ud83d\ude14\ud83d\ude14\ud83d\ude14\ud83d\ude14", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471233114537984", "id": 716471233114537984, "timestamp_ms": "1459655028023", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3150516284/1457382527", "description": "success is the key to happiness", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "taken by Artie XXV\u30fbIII\u30fbMMXVI", "follow_request_sent": null, "followers_count": 258, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711393624743739392/sN1FkRLI_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 218, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "3150516284", "protected": false, "id": 3150516284, "favourites_count": 5181, "profile_sidebar_fill_color": "000000", "screen_name": "hannambananaa", "profile_image_url": "http://pbs.twimg.com/profile_images/711393624743739392/sN1FkRLI_normal.jpg", "lang": "en", "created_at": "Sat Apr 11 21:41:43 +0000 2015", "profile_use_background_image": false, "name": "hamma nguyen", "url": null, "following": null, "profile_link_color": "89C9FA", "statuses_count": 15443, "is_translator": false}, "text": "First day having the car and the car dies \ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471238256754688", "id": 716471238256754688, "timestamp_ms": "1459655029249", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Maricopa, AZ", "place_type": "city", "attributes": {}, "name": "Maricopa", "country": "United States", "id": "001b67fd5761210e", "bounding_box": {"coordinates": [[[-112.079946, 33.029009], [-112.079946, 33.087983], [-111.944584, 33.087983], [-111.944584, 33.029009]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/001b67fd5761210e.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/132322616/1456359719", "description": null, "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "FF6699", "verified": false, "location": "Stay Humble. Stay Blessed.", "follow_request_sent": null, "followers_count": 730, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710013152784678912/R-Cm2sLG_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/665855678/88cb0bb12eddc437a2525653701b264b.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 525, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/665855678/88cb0bb12eddc437a2525653701b264b.jpeg", "time_zone": null, "profile_text_color": "362720", "id_str": "132322616", "protected": false, "id": 132322616, "favourites_count": 4028, "profile_sidebar_fill_color": "E5507E", "screen_name": "Blythiee10", "profile_image_url": "http://pbs.twimg.com/profile_images/710013152784678912/R-Cm2sLG_normal.jpg", "lang": "en", "created_at": "Mon Apr 12 22:56:06 +0000 2010", "profile_use_background_image": true, "name": "blythemichelle", "url": null, "following": null, "profile_link_color": "B40B43", "statuses_count": 30626, "is_translator": false}, "text": "I need a maricopa plug \ud83d\ude29", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471250877435904", "id": 716471250877435904, "timestamp_ms": "1459655032258", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:52 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/584090842/1457910341", "description": "Hispanic as fuck", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "28AFE0", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1095, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710655091108229120/h540Xalq_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000077317230/3b0074f435f7a0040c143e2dc241526e.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 777, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000077317230/3b0074f435f7a0040c143e2dc241526e.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "584090842", "protected": false, "id": 584090842, "favourites_count": 18522, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "empressboooty", "profile_image_url": "http://pbs.twimg.com/profile_images/710655091108229120/h540Xalq_normal.jpg", "lang": "en", "created_at": "Fri May 18 19:25:34 +0000 2012", "profile_use_background_image": true, "name": "Cerinnnnn", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 69808, "is_translator": false}, "text": "No but fr someone come hang out w me and ant", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471251447853056", "id": 716471251447853056, "timestamp_ms": "1459655032394", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:52 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3489035659/1441725806", "description": "I love you like you should love yourself", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 428, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 411, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3489035659", "protected": false, "id": 3489035659, "favourites_count": 5804, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexnderkostas", "profile_image_url": "http://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "lang": "en", "created_at": "Tue Sep 08 04:03:51 +0000 2015", "profile_use_background_image": true, "name": "KOSTAS", "url": "http://losertilldeath.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 11124, "is_translator": false}, "text": "Tempe is the move and if not we ubering out to Scottsdale I need some shawtys to pop that ass", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471256602714112", "id": 716471256602714112, "timestamp_ms": "1459655033623", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471170120310784", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "446658190", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/479968640/1448352188", "description": null, "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "141111", "verified": false, "location": "United States", "follow_request_sent": null, "followers_count": 419, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 356, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "479968640", "protected": false, "id": 479968640, "favourites_count": 7138, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "charliboyy_963", "profile_image_url": "http://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "lang": "en", "created_at": "Wed Feb 01 00:00:53 +0000 2012", "profile_use_background_image": true, "name": "\u267f\u2122M3_963", "url": null, "following": null, "profile_link_color": "990000", "statuses_count": 18122, "is_translator": false}, "text": "@ProdaJayy2296 Conner his girl and Brandon", "retweeted": false, "in_reply_to_screen_name": "ProdaJayy2296", "id_str": "716471258498539521", "id": 716471258498539521, "timestamp_ms": "1459655034075", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Caleb De Jesus", "indices": [0, 14], "id": 446658190, "screen_name": "ProdaJayy2296", "id_str": "446658190"}], "hashtags": []}, "in_reply_to_user_id": 446658190, "favorite_count": 0, "in_reply_to_status_id": 716471170120310784, "lang": "en", "created_at": "Sun Apr 03 03:43:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3962596632", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2287769016/1459438596", "description": "soccer \u26bd\ufe0f, probably with kels at the gym, on the field or tanning", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "the deep depths of hell aka AZ", "follow_request_sent": null, "followers_count": 434, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712910081730293760/0hv_hg6K_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000172920885/lmyQetIX.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 254, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000172920885/lmyQetIX.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "2287769016", "protected": false, "id": 2287769016, "favourites_count": 11156, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alliboo20", "profile_image_url": "http://pbs.twimg.com/profile_images/712910081730293760/0hv_hg6K_normal.jpg", "lang": "en", "created_at": "Sun Jan 12 07:13:24 +0000 2014", "profile_use_background_image": true, "name": "Ali.", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4924, "is_translator": false}, "text": "@thatbrownkid8 me today when you said you can't hang out \ud83d\ude27 https://t.co/xqIbof55SC", "retweeted": false, "in_reply_to_screen_name": "thatbrownkid8", "id_str": "716471278278840320", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": true, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "TweetDeck", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/FvNyJPBdmX", "sizes": {"small": {"w": 340, "resize": "fit", "h": 192}, "large": {"w": 500, "resize": "fit", "h": 282}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 500, "resize": "fit", "h": 282}}, "type": "photo", "expanded_url": "http://twitter.com/sayingsforgirls/status/716470379620012032/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFp_3CWsAAxkIU.jpg", "indices": [17, 40], "id": 716470361555120128, "id_str": "716470361555120128", "display_url": "pic.twitter.com/FvNyJPBdmX", "media_url": "http://pbs.twimg.com/media/CfFp_3CWsAAxkIU.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/256986185/1455742479", "description": "kingtutankhamuns@gmail.com", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1995935, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/700063392955031552/PvpPc1N6_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589111356860698625/5esJ8E_l.jpg", "default_profile_image": false, "notifications": null, "listed_count": 5192, "friends_count": 223, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589111356860698625/5esJ8E_l.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "D64D7F", "id_str": "256986185", "protected": false, "id": 256986185, "favourites_count": 3627, "profile_sidebar_fill_color": "FFFFFF", "screen_name": "sayingsforgirls", "profile_image_url": "http://pbs.twimg.com/profile_images/700063392955031552/PvpPc1N6_normal.jpg", "lang": "en", "created_at": "Thu Feb 24 13:42:02 +0000 2011", "profile_use_background_image": true, "name": "stressed", "url": null, "following": null, "profile_link_color": "E81C4F", "statuses_count": 64399, "is_translator": false}, "text": "when bae says no https://t.co/FvNyJPBdmX", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470379620012032", "id": 716470379620012032, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/FvNyJPBdmX", "sizes": {"small": {"w": 340, "resize": "fit", "h": 192}, "large": {"w": 500, "resize": "fit", "h": 282}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 500, "resize": "fit", "h": 282}}, "type": "photo", "expanded_url": "http://twitter.com/sayingsforgirls/status/716470379620012032/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFp_3CWsAAxkIU.jpg", "indices": [17, 40], "id": 716470361555120128, "id_str": "716470361555120128", "display_url": "pic.twitter.com/FvNyJPBdmX", "media_url": "http://pbs.twimg.com/media/CfFp_3CWsAAxkIU.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:24 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471278278840320, "timestamp_ms": "1459655038791", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/sayingsforgirls/status/716470379620012032", "indices": [59, 82], "display_url": "twitter.com/sayingsforgirl\u2026", "url": "https://t.co/xqIbof55SC"}], "user_mentions": [{"name": "B", "indices": [0, 14], "id": 3962596632, "screen_name": "thatbrownkid8", "id_str": "3962596632"}], "hashtags": []}, "in_reply_to_user_id": 3962596632, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470379620012032, "created_at": "Sun Apr 03 03:43:58 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470379620012032", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3675280992/1459560039", "description": "and though she be little, she is fierce. 15. gofundme link below", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 80, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713582360076423169/nZwwuARh_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 105, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3675280992", "protected": false, "id": 3675280992, "favourites_count": 77, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "haleyalexanndra", "profile_image_url": "http://pbs.twimg.com/profile_images/713582360076423169/nZwwuARh_normal.jpg", "lang": "en", "created_at": "Thu Sep 24 23:23:19 +0000 2015", "profile_use_background_image": true, "name": "haleymae", "url": "http://www.gofundme.com/biolauniversity", "following": null, "profile_link_color": "0084B4", "statuses_count": 1742, "is_translator": false}, "text": "Having a pregnant sister means: remembering your things & hers, late night froyo runs no matter how busy you are, & a lot of planning.\ud83d\udc97\ud83d\ude44", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471278853431296", "id": 716471278853431296, "timestamp_ms": "1459655038928", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:43:58 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Maricopa, AZ", "place_type": "city", "attributes": {}, "name": "Maricopa", "country": "United States", "id": "001b67fd5761210e", "bounding_box": {"coordinates": [[[-112.079946, 33.029009], [-112.079946, 33.087983], [-111.944584, 33.087983], [-111.944584, 33.029009]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/001b67fd5761210e.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2679167875/1459365478", "description": "my boyfriend jeans are your boyfriends jeans", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Maricopa, AZ", "follow_request_sent": null, "followers_count": 255, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714177582133063680/O0sCyO1J_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 84, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2679167875", "protected": false, "id": 2679167875, "favourites_count": 8455, "profile_sidebar_fill_color": "000000", "screen_name": "jessicakrebss", "profile_image_url": "http://pbs.twimg.com/profile_images/714177582133063680/O0sCyO1J_normal.jpg", "lang": "en", "created_at": "Fri Jul 25 09:16:11 +0000 2014", "profile_use_background_image": false, "name": "jessica", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 480, "is_translator": false}, "text": "it was fun while it lasted", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471292740767745", "id": 716471292740767745, "timestamp_ms": "1459655042239", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:02 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716459172598910976", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3070565648", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3095627117/1459220401", "description": "az//wiz khalifa//highland", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 140, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714648426865098752/Y59spGaK_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 52, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3095627117", "protected": false, "id": 3095627117, "favourites_count": 340, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "demiklpatrick", "profile_image_url": "http://pbs.twimg.com/profile_images/714648426865098752/Y59spGaK_normal.jpg", "lang": "en", "created_at": "Wed Mar 18 23:17:24 +0000 2015", "profile_use_background_image": true, "name": "dem", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 385, "is_translator": false}, "text": "@bekahw_ yea ((:", "retweeted": false, "in_reply_to_screen_name": "bekahw_", "id_str": "716471292929515520", "id": 716471292929515520, "timestamp_ms": "1459655042284", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "angel", "indices": [0, 8], "id": 3070565648, "screen_name": "bekahw_", "id_str": "3070565648"}], "hashtags": []}, "in_reply_to_user_id": 3070565648, "favorite_count": 0, "in_reply_to_status_id": 716459172598910976, "lang": "und", "created_at": "Sun Apr 03 03:44:02 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2563655748/1457581231", "description": "missing Cali", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "86C3D4", "verified": false, "location": "Casa Grande, AZ", "follow_request_sent": null, "followers_count": 508, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705614709395836928/LfHXz9_b_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/506134394000535552/VmB8WoiE.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 374, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/506134394000535552/VmB8WoiE.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "2563655748", "protected": false, "id": 2563655748, "favourites_count": 25931, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "axuiki_", "profile_image_url": "http://pbs.twimg.com/profile_images/705614709395836928/LfHXz9_b_normal.jpg", "lang": "en", "created_at": "Thu Jun 12 16:12:53 +0000 2014", "profile_use_background_image": true, "name": "Bellz", "url": null, "following": null, "profile_link_color": "0A0905", "statuses_count": 13320, "is_translator": false}, "text": "Just because", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471293307068417", "id": 716471293307068417, "timestamp_ms": "1459655042374", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:02 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2193274404/1459278396", "description": "you're so 2000 and late", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "vvhs", "follow_request_sent": null, "followers_count": 396, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709085913666596865/9GNgZ2eh_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 573, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2193274404", "protected": false, "id": 2193274404, "favourites_count": 8581, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "pmoedt829", "profile_image_url": "http://pbs.twimg.com/profile_images/709085913666596865/9GNgZ2eh_normal.jpg", "lang": "en", "created_at": "Thu Nov 14 01:22:17 +0000 2013", "profile_use_background_image": true, "name": "P Diddy", "url": "http://Twitter.com/MattyKiins", "following": null, "profile_link_color": "0084B4", "statuses_count": 6821, "is_translator": false}, "text": "\"No he's not a Taurus he lives here\"", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471298818330625", "id": 716471298818330625, "timestamp_ms": "1459655043688", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:03 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2358901177/1393214960", "description": "Bienvenue, Welkom, Ahlan'wa sahla, Dobrodo\u0161li, \u6b61\u8fce, \u6b22\u8fce, \u6b61\u8fce, V\u00edt\u00e1me t\u0115, Velkommen, Welkom, Bienvenue, Wolkom, Willkommen, \u039a\u03b1\u03bb\u03ce\u03c2 \u03bf\u03c1\u03af\u03c3\u03b1\u03c4\u03b5, Aloha, Shalom, Benvenuto,", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "San Diego California", "follow_request_sent": null, "followers_count": 240, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/437801265129467904/RMvYbW1o_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 16, "friends_count": 1125, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2358901177", "protected": false, "id": 2358901177, "favourites_count": 372, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "SDBabel", "profile_image_url": "http://pbs.twimg.com/profile_images/437801265129467904/RMvYbW1o_normal.jpeg", "lang": "en", "created_at": "Mon Feb 24 03:42:26 +0000 2014", "profile_use_background_image": true, "name": "San Diego Babel", "url": "http://www.babelworld.org", "following": null, "profile_link_color": "0084B4", "statuses_count": 1444, "is_translator": false}, "text": "Lolls is Global! https://t.co/VnnY07DI8q", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471306628149248", "id": 716471306628149248, "timestamp_ms": "1459655045550", "entities": {"symbols": [], "urls": [{"expanded_url": "http://www.lollapalooza.com/lineup/poster/", "indices": [17, 40], "display_url": "lollapalooza.com/lineup/poster/", "url": "https://t.co/VnnY07DI8q"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2710505143/1458329795", "description": ":) I am nice to people unless they are Ryan Splitz", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "022330", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 95, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714653676191813632/RzUjZO34_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 236, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2710505143", "protected": false, "id": 2710505143, "favourites_count": 302, "profile_sidebar_fill_color": "000000", "screen_name": "secretham34", "profile_image_url": "http://pbs.twimg.com/profile_images/714653676191813632/RzUjZO34_normal.jpg", "lang": "en", "created_at": "Tue Aug 05 22:33:38 +0000 2014", "profile_use_background_image": true, "name": "SEAN", "url": "http://www.youtube.com/thesecretham", "following": null, "profile_link_color": "0084B4", "statuses_count": 1242, "is_translator": false}, "text": "Leaving", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471318300860416", "id": 716471318300860416, "timestamp_ms": "1459655048333", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2444508889/1454783507", "description": "I work at Safeway", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tokyo, Japan", "follow_request_sent": null, "followers_count": 136, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/693556401449226240/RGms5qvp_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 40, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2444508889", "protected": false, "id": 2444508889, "favourites_count": 534, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "randaloze", "profile_image_url": "http://pbs.twimg.com/profile_images/693556401449226240/RGms5qvp_normal.jpg", "lang": "en", "created_at": "Mon Apr 14 21:43:49 +0000 2014", "profile_use_background_image": true, "name": "Safeway", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 408, "is_translator": false}, "text": "I think it's a thing for \"couples\" to talk shit to each other on social media one day and than love each other the next day\ud83d\ude02 #Safeway", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471318741278720", "id": 716471318741278720, "timestamp_ms": "1459655048438", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [125, 133], "text": "Safeway"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716466478732718080", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "37154491", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/106462025/1458325992", "description": "Not like you", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1121, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715711474061029376/j4AJsCaO_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 404, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "106462025", "protected": false, "id": 106462025, "favourites_count": 34197, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tylerfromnj", "profile_image_url": "http://pbs.twimg.com/profile_images/715711474061029376/j4AJsCaO_normal.jpg", "lang": "en", "created_at": "Tue Jan 19 16:53:23 +0000 2010", "profile_use_background_image": true, "name": "tyler", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 23773, "is_translator": false}, "text": "@Dahviivader Luv tx", "retweeted": false, "in_reply_to_screen_name": "Dahviivader", "id_str": "716471339041693697", "id": 716471339041693697, "timestamp_ms": "1459655053278", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "dahvii", "indices": [0, 12], "id": 37154491, "screen_name": "Dahviivader", "id_str": "37154491"}], "hashtags": []}, "in_reply_to_user_id": 37154491, "favorite_count": 0, "in_reply_to_status_id": 716466478732718080, "lang": "en", "created_at": "Sun Apr 03 03:44:13 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716468218521632768", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "25533294", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "Beer and coffee lover. World's worst bike racer.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 178, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1397315249/head_normal.JPG", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 175, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "22267790", "protected": false, "id": 22267790, "favourites_count": 757, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "lrgmnky", "profile_image_url": "http://pbs.twimg.com/profile_images/1397315249/head_normal.JPG", "lang": "en", "created_at": "Sat Feb 28 16:02:08 +0000 2009", "profile_use_background_image": true, "name": "LRGMNKY", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 6255, "is_translator": false}, "text": "@redlegnation Ha! https://t.co/p7n095Wu1N for PS4 made the same mistake last year.", "retweeted": false, "in_reply_to_screen_name": "redlegnation", "id_str": "716471343928086528", "id": 716471343928086528, "timestamp_ms": "1459655054443", "entities": {"symbols": [], "urls": [{"expanded_url": "http://MLB.tv", "indices": [18, 41], "display_url": "MLB.tv", "url": "https://t.co/p7n095Wu1N"}], "user_mentions": [{"name": "Redleg Nation", "indices": [0, 13], "id": 25533294, "screen_name": "redlegnation", "id_str": "25533294"}], "hashtags": []}, "in_reply_to_user_id": 25533294, "favorite_count": 0, "in_reply_to_status_id": 716468218521632768, "lang": "en", "created_at": "Sun Apr 03 03:44:14 +0000 2016", "coordinates": {"coordinates": [-112.07361553, 33.44759944], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.44759944, -112.07361553], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/593250150/1458368054", "description": "Life can only be understood backwards, but it must be lived forward| Baseball Player|#StayHumble #BrewCrew", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "410", "follow_request_sent": null, "followers_count": 1309, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713938595334250496/1eVYfknZ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/587300303382286336/uTSNTGHy.jpg", "default_profile_image": false, "notifications": null, "listed_count": 20, "friends_count": 859, "utc_offset": -10800, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/587300303382286336/uTSNTGHy.jpg", "time_zone": "Atlantic Time (Canada)", "profile_text_color": "333333", "id_str": "593250150", "protected": false, "id": 593250150, "favourites_count": 8979, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Troy_Stokes15", "profile_image_url": "http://pbs.twimg.com/profile_images/713938595334250496/1eVYfknZ_normal.jpg", "lang": "en", "created_at": "Mon May 28 23:43:07 +0000 2012", "profile_use_background_image": true, "name": "Playboy Troy", "url": "http://Swing4More.org", "following": null, "profile_link_color": "080808", "statuses_count": 16631, "is_translator": false}, "text": "Ol' boy, you's a broke boy", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471347937804291", "id": 716471347937804291, "timestamp_ms": "1459655055399", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:15 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/c8Hj4DxCci", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/LexFolz/status/716471352077606913/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFq42OVIAAZ78e.jpg", "indices": [47, 70], "id": 716471340589457408, "id_str": "716471340589457408", "display_url": "pic.twitter.com/c8Hj4DxCci", "media_url": "http://pbs.twimg.com/media/CfFq42OVIAAZ78e.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2209410896/1459008825", "description": "the girl with the broken smile | @kadeabshire is ma day 1 | @ruybaljosh is my hunny", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "with @morganlynnn6", "follow_request_sent": null, "followers_count": 1154, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713044742699749377/P5kRdDD1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 896, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "2209410896", "protected": false, "id": 2209410896, "favourites_count": 25254, "profile_sidebar_fill_color": "000000", "screen_name": "LexFolz", "profile_image_url": "http://pbs.twimg.com/profile_images/713044742699749377/P5kRdDD1_normal.jpg", "lang": "en", "created_at": "Fri Nov 22 18:57:21 +0000 2013", "profile_use_background_image": false, "name": "hunnay", "url": "https://m.soundcloud.com/baabylexx/following", "following": null, "profile_link_color": "4A913C", "statuses_count": 12437, "is_translator": false}, "text": "the lake with the best people you'll ever meet https://t.co/c8Hj4DxCci", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471352077606913", "id": 716471352077606913, "timestamp_ms": "1459655056386", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/c8Hj4DxCci", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/LexFolz/status/716471352077606913/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFq42OVIAAZ78e.jpg", "indices": [47, 70], "id": 716471340589457408, "id_str": "716471340589457408", "display_url": "pic.twitter.com/c8Hj4DxCci", "media_url": "http://pbs.twimg.com/media/CfFq42OVIAAZ78e.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "knitter wife super admin and diva", "profile_sidebar_border_color": "AEF5FA", "profile_background_tile": false, "profile_background_color": "214542", "verified": false, "location": "Phoenix AZ", "follow_request_sent": null, "followers_count": 164, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3765002864/0dd74fc724fe2098fdda656d25bcea24_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/540266524/x71a4034120e9bc76f306e93c0399ad5.jpg", "default_profile_image": false, "notifications": null, "listed_count": 13, "friends_count": 233, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/540266524/x71a4034120e9bc76f306e93c0399ad5.jpg", "time_zone": "Arizona", "profile_text_color": "B4D9AD", "id_str": "14627551", "protected": false, "id": 14627551, "favourites_count": 1310, "profile_sidebar_fill_color": "3B615D", "screen_name": "irishdiva", "profile_image_url": "http://pbs.twimg.com/profile_images/3765002864/0dd74fc724fe2098fdda656d25bcea24_normal.jpeg", "lang": "en", "created_at": "Fri May 02 16:13:49 +0000 2008", "profile_use_background_image": true, "name": "Kate Lathrop", "url": null, "following": null, "profile_link_color": "739E9F", "statuses_count": 8481, "is_translator": false}, "text": "My Rommel #dogsofinstagram #mydog @ The Diva's Domain https://t.co/SdSNpDeCDU", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471354338324480", "id": 716471354338324480, "timestamp_ms": "1459655056925", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTT2XJTMGDCJ1D2ksVPrbBv26Jq2zbgmFql40/", "indices": [54, 77], "display_url": "instagram.com/p/BDuTT2XJTMGD\u2026", "url": "https://t.co/SdSNpDeCDU"}], "user_mentions": [], "hashtags": [{"indices": [10, 26], "text": "dogsofinstagram"}, {"indices": [27, 33], "text": "mydog"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:16 +0000 2016", "coordinates": {"coordinates": [-112.16608, 33.64394], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.64394, -112.16608], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2308536140/1459109425", "description": "I know there's reason why everybody wants it so much . Love is the closest thing we have to magic.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "prob looking at stars with JB", "follow_request_sent": null, "followers_count": 221, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711387186147565569/skbc1AUd_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 106, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2308536140", "protected": false, "id": 2308536140, "favourites_count": 15810, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "BANU_ZENGANA", "profile_image_url": "http://pbs.twimg.com/profile_images/711387186147565569/skbc1AUd_normal.jpg", "lang": "en", "created_at": "Fri Jan 24 15:30:07 +0000 2014", "profile_use_background_image": true, "name": "J's Girl", "url": "http://youtu.be/9hAOXbiGF38", "following": null, "profile_link_color": "0084B4", "statuses_count": 8182, "is_translator": false}, "text": "I do miss the old me but I'm excited for the new me.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471361250729987", "id": 716471361250729987, "timestamp_ms": "1459655058573", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:18 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470318072606720", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "160853993", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/167043550/1458260632", "description": "RIP Edward \u2764\ufe0f @harleyyyquinn_ is my dominatrix. #HillaryForPrisonNotPresident", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "DEN \u2708\ufe0f PHX", "follow_request_sent": null, "followers_count": 2643, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 109, "friends_count": 761, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "00EB00", "id_str": "167043550", "protected": false, "id": 167043550, "favourites_count": 455, "profile_sidebar_fill_color": "000000", "screen_name": "Thotcho", "profile_image_url": "http://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "lang": "en", "created_at": "Thu Jul 15 16:28:39 +0000 2010", "profile_use_background_image": true, "name": "not a diva", "url": "https://vine.co/v/OPYaZvdYxqA", "following": null, "profile_link_color": "960087", "statuses_count": 230507, "is_translator": false}, "text": "@HarleyyyQuinn_ short girls are the GOAT", "retweeted": false, "in_reply_to_screen_name": "HarleyyyQuinn_", "id_str": "716471364622819329", "id": 716471364622819329, "timestamp_ms": "1459655059377", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Harleen Quinzel", "indices": [0, 15], "id": 160853993, "screen_name": "HarleyyyQuinn_", "id_str": "160853993"}], "hashtags": []}, "in_reply_to_user_id": 160853993, "favorite_count": 0, "in_reply_to_status_id": 716470318072606720, "lang": "en", "created_at": "Sun Apr 03 03:44:19 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/31514483/1456200652", "description": "Don't need your heart cuz I've got mine Snapchat:bryanfrowns |Instagram @bryansmiles", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Los Angeles, CA", "follow_request_sent": null, "followers_count": 1525, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/702385414401826818/m2WtejYE_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/278528867/pedro.jpg", "default_profile_image": false, "notifications": null, "listed_count": 15, "friends_count": 998, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/278528867/pedro.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "0D0C0D", "id_str": "31514483", "protected": false, "id": 31514483, "favourites_count": 1152, "profile_sidebar_fill_color": "30B3F0", "screen_name": "bryansmiles", "profile_image_url": "http://pbs.twimg.com/profile_images/702385414401826818/m2WtejYE_normal.jpg", "lang": "en", "created_at": "Wed Apr 15 20:44:47 +0000 2009", "profile_use_background_image": true, "name": "\u2693\u0628\u0631\u064a\u0627\u0646 \u0627\u0644\u0645\u0632\u0627\u0646\u2625", "url": "http://bryanalmazan.tumblr.com/", "following": null, "profile_link_color": "762DCF", "statuses_count": 64455, "is_translator": false}, "text": "Literally just met @kaskade \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471381492244480", "id": 716471381492244480, "timestamp_ms": "1459655063399", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Kaskade", "indices": [19, 27], "id": 18750157, "screen_name": "kaskade", "id_str": "18750157"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:23 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": true, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 30, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/678463367187574788/vckKryp9_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 43, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4609905738", "protected": false, "id": 4609905738, "favourites_count": 598, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JavierCabarrub1", "profile_image_url": "http://pbs.twimg.com/profile_images/678463367187574788/vckKryp9_normal.jpg", "lang": "en", "created_at": "Sun Dec 20 06:28:38 +0000 2015", "profile_use_background_image": true, "name": "Javier sanchez", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 467, "is_translator": false}, "text": "Nice wherayuo myfrnds https://t.co/qpSn3F987w", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471386638712832", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CW93qUgWYAAXEPD.mp4"}], "aspect_ratio": [49, 50]}, "url": "https://t.co/3dtN8le3DK", "sizes": {"large": {"w": 490, "resize": "fit", "h": 500}, "small": {"w": 340, "resize": "fit", "h": 347}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 490, "resize": "fit", "h": 500}}, "type": "animated_gif", "expanded_url": "http://twitter.com/BigBlackDaddy27/status/679893721706565633/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png", "indices": [0, 23], "id": 679893637698838528, "id_str": "679893637698838528", "display_url": "pic.twitter.com/3dtN8le3DK", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1604532679/1439000450", "description": "+21 Strong Black Alpha Dominant Daddy", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 38823, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697234091301851136/N4iugzQS_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 149, "friends_count": 89, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "1604532679", "protected": false, "id": 1604532679, "favourites_count": 1749, "profile_sidebar_fill_color": "000000", "screen_name": "BigBlackDaddy27", "profile_image_url": "http://pbs.twimg.com/profile_images/697234091301851136/N4iugzQS_normal.png", "lang": "en", "created_at": "Thu Jul 18 22:44:14 +0000 2013", "profile_use_background_image": true, "name": "Big Black Daddy", "url": null, "following": null, "profile_link_color": "131516", "statuses_count": 1524, "is_translator": false}, "text": "https://t.co/3dtN8le3DK", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "679893721706565633", "id": 679893721706565633, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/3dtN8le3DK", "sizes": {"large": {"w": 490, "resize": "fit", "h": 500}, "small": {"w": 340, "resize": "fit", "h": 347}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 490, "resize": "fit", "h": 500}}, "type": "photo", "expanded_url": "http://twitter.com/BigBlackDaddy27/status/679893721706565633/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png", "indices": [0, 23], "id": 679893637698838528, "id_str": "679893637698838528", "display_url": "pic.twitter.com/3dtN8le3DK", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CW93qUgWYAAXEPD.png"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Thu Dec 24 05:17:49 +0000 2015", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471386638712832, "timestamp_ms": "1459655064626", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/BigBlackDaddy27/status/679893721706565633", "indices": [22, 45], "display_url": "twitter.com/BigBlackDaddy2\u2026", "url": "https://t.co/qpSn3F987w"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 679893721706565633, "created_at": "Sun Apr 03 03:44:24 +0000 2016", "coordinates": null, "quoted_status_id_str": "679893721706565633", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/146177144/1456522644", "description": null, "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 626, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714493940934828032/HVMPBU63_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/739445898/7b6f20e56e7b297ef63edb9903a10863.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 177, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/739445898/7b6f20e56e7b297ef63edb9903a10863.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "FFFFFF", "id_str": "146177144", "protected": false, "id": 146177144, "favourites_count": 3608, "profile_sidebar_fill_color": "000000", "screen_name": "_Joccyyyy", "profile_image_url": "http://pbs.twimg.com/profile_images/714493940934828032/HVMPBU63_normal.jpg", "lang": "en", "created_at": "Thu May 20 19:51:46 +0000 2010", "profile_use_background_image": true, "name": "\u26ab\ufe0f", "url": null, "following": null, "profile_link_color": "FF00FF", "statuses_count": 30593, "is_translator": false}, "text": "Lately I've been getting road rage", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471393378902016", "id": 716471393378902016, "timestamp_ms": "1459655066233", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716307443345522690", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2541494816", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Litchfield Park, AZ", "place_type": "city", "attributes": {}, "name": "Litchfield Park", "country": "United States", "id": "e5d470249e23cd45", "bounding_box": {"coordinates": [[[-112.3794, 33.485544], [-112.3794, 33.508273], [-112.32374, 33.508273], [-112.32374, 33.485544]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/e5d470249e23cd45.json"}, "is_quote_status": false, "user": {"description": "Most important things in life....FAMILY and ZAGS!!!!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Spokane, washington", "follow_request_sent": null, "followers_count": 45, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/532508797936615425/zEnoZLMo_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 69, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "1270734109", "protected": false, "id": 1270734109, "favourites_count": 274, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "manderpile", "profile_image_url": "http://pbs.twimg.com/profile_images/532508797936615425/zEnoZLMo_normal.jpeg", "lang": "en", "created_at": "Fri Mar 15 21:16:04 +0000 2013", "profile_use_background_image": true, "name": "michael anderson", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 568, "is_translator": false}, "text": "@SpokaneChalkTal @SRpreps preps first game that year. CDa had already played 2", "retweeted": false, "in_reply_to_screen_name": "SpokaneChalkTal", "id_str": "716471401222287362", "id": 716471401222287362, "timestamp_ms": "1459655068103", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Spokane Chalk Talk", "indices": [0, 16], "id": 2541494816, "screen_name": "SpokaneChalkTal", "id_str": "2541494816"}, {"name": "Greg Lee", "indices": [17, 25], "id": 160999592, "screen_name": "SRpreps", "id_str": "160999592"}], "hashtags": []}, "in_reply_to_user_id": 2541494816, "favorite_count": 0, "in_reply_to_status_id": 716307443345522690, "lang": "en", "created_at": "Sun Apr 03 03:44:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471205381836801", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "36833474", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1250750556/1451324785", "description": "apples are good, dollars are good.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Scottsdale, AZ", "follow_request_sent": null, "followers_count": 316, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714954869984137217/ISZFp2II_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 746, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "1250750556", "protected": false, "id": 1250750556, "favourites_count": 5219, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "AlyshaRosie", "profile_image_url": "http://pbs.twimg.com/profile_images/714954869984137217/ISZFp2II_normal.jpg", "lang": "en", "created_at": "Fri Mar 08 04:52:12 +0000 2013", "profile_use_background_image": true, "name": "AL", "url": "http://overratedpitfalls.tumblr.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 14785, "is_translator": false}, "text": "@Fo_fro \ud83c\udf7b\ud83c\udf7b\ud83c\udf7b\ud83c\udf7b\ud83c\udf7b\ud83c\udf7b", "retweeted": false, "in_reply_to_screen_name": "Fo_fro", "id_str": "716471406020571136", "id": 716471406020571136, "timestamp_ms": "1459655069247", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Forest Doesburg", "indices": [0, 7], "id": 36833474, "screen_name": "Fo_fro", "id_str": "36833474"}], "hashtags": []}, "in_reply_to_user_id": 36833474, "favorite_count": 0, "in_reply_to_status_id": 716471205381836801, "lang": "und", "created_at": "Sun Apr 03 03:44:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"description": "Happily Married \r\nMommy of two \r\n\u26bd Love sports", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "709397", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 59, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2811915858/c4b35a42dfe51ed6f1b56e4d945f43e6_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 313, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3D1957", "id_str": "20264566", "protected": false, "id": 20264566, "favourites_count": 2, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "Meliaz1124", "profile_image_url": "http://pbs.twimg.com/profile_images/2811915858/c4b35a42dfe51ed6f1b56e4d945f43e6_normal.jpeg", "lang": "en", "created_at": "Fri Feb 06 19:43:16 +0000 2009", "profile_use_background_image": true, "name": "Melissa Mu\u00f1oz", "url": null, "following": null, "profile_link_color": "FF3300", "statuses_count": 1349, "is_translator": false}, "text": "Great game \u26bd\ufe0f\u270c\ud83c\udffc\ufe0f\u26bd\ufe0f\ud83d\udc9a Timbers @ American Sports Centers Avondale https://t.co/lm1p5MesiM", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471407761186816", "id": 716471407761186816, "timestamp_ms": "1459655069662", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTVOSuZhP8dP83wdxZTOlUAFZ4eQrekX_ol40/", "indices": [63, 86], "display_url": "instagram.com/p/BDuTVOSuZhP8\u2026", "url": "https://t.co/lm1p5MesiM"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:29 +0000 2016", "coordinates": {"coordinates": [-112.30450796, 33.45407451], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.45407451, -112.30450796], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2442812468/1459492375", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Deer Valley High School", "follow_request_sent": null, "followers_count": 398, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714943284347609090/XgRQGQBW_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 235, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2442812468", "protected": false, "id": 2442812468, "favourites_count": 18084, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jarissarios_", "profile_image_url": "http://pbs.twimg.com/profile_images/714943284347609090/XgRQGQBW_normal.jpg", "lang": "en", "created_at": "Sun Apr 13 23:03:59 +0000 2014", "profile_use_background_image": true, "name": "jarissa rios", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 7347, "is_translator": false}, "text": "You got me so fucked up if you think it's okay to come in & out my life whenever lmao", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471418209181696", "id": 716471418209181696, "timestamp_ms": "1459655072153", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3002774383/1458171455", "description": "@michaelwilson29 do you want to feel how hard I can punch? GHS Varsity Baseball", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 664, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709948148026777601/yc0le39J_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 636, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3002774383", "protected": false, "id": 3002774383, "favourites_count": 2599, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "MacPeters29", "profile_image_url": "http://pbs.twimg.com/profile_images/709948148026777601/yc0le39J_normal.jpg", "lang": "en", "created_at": "Fri Jan 30 03:11:49 +0000 2015", "profile_use_background_image": true, "name": "Mac", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2963, "is_translator": false}, "text": "Cause boys are wild https://t.co/nAObSX0Y7A", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471419035451393", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/458716883/1458509390", "description": "you have to be odd to be number one", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 1499, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711651921107361792/9Hl_imnN_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 751, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "458716883", "protected": false, "id": 458716883, "favourites_count": 34965, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "julieannkelley", "profile_image_url": "http://pbs.twimg.com/profile_images/711651921107361792/9Hl_imnN_normal.jpg", "lang": "en", "created_at": "Sun Jan 08 21:37:36 +0000 2012", "profile_use_background_image": true, "name": "J.K.", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 11831, "is_translator": false}, "text": "I feel like majority of guys have a scar on or near their eyebrow with some unique childhood story behind it", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716468493764329472", "id": 716468493764329472, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:32:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471419035451393, "timestamp_ms": "1459655072350", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/julieannkelley/status/716468493764329472", "indices": [20, 43], "display_url": "twitter.com/julieannkelley\u2026", "url": "https://t.co/nAObSX0Y7A"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716468493764329472, "created_at": "Sun Apr 03 03:44:32 +0000 2016", "coordinates": null, "quoted_status_id_str": "716468493764329472", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/519853980/1457334276", "description": "\u264d\ufe0f", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 411, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714848215774994433/V4RqsY7G_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 327, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "time_zone": "Arizona", "profile_text_color": "3D1957", "id_str": "519853980", "protected": false, "id": 519853980, "favourites_count": 18694, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "casssassss", "profile_image_url": "http://pbs.twimg.com/profile_images/714848215774994433/V4RqsY7G_normal.jpg", "lang": "en", "created_at": "Fri Mar 09 21:52:18 +0000 2012", "profile_use_background_image": true, "name": "c\u00e4ss", "url": "http://casssasssss.tumblr.com/i", "following": null, "profile_link_color": "FF0000", "statuses_count": 26722, "is_translator": false}, "text": "Damn, back at it again \ud83d\ude44", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471429550579712", "id": 716471429550579712, "timestamp_ms": "1459655074857", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471221169352705", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "46739153", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/43603566/1389840761", "description": "Young Trump, Descendant of Uncle Ruckus. Savage Inc. One HELL of a gentleman.", "profile_sidebar_border_color": "323231", "profile_background_tile": false, "profile_background_color": "9A958E", "verified": false, "location": "The Valley ", "follow_request_sent": null, "followers_count": 816, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 46, "friends_count": 342, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "020202", "id_str": "43603566", "protected": false, "id": 43603566, "favourites_count": 161, "profile_sidebar_fill_color": "9A3B25", "screen_name": "blizzardwolf00", "profile_image_url": "http://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "lang": "en", "created_at": "Sat May 30 22:10:06 +0000 2009", "profile_use_background_image": true, "name": "R. Von Hades", "url": "http://AbbasSTRONG.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 205116, "is_translator": false}, "text": "Shit is amazing lmao RT @DroPilot: Y\u2019all just be stealing tweets with no care ? shit", "retweeted": false, "in_reply_to_screen_name": "DroPilot", "id_str": "716471435963666432", "id": 716471435963666432, "timestamp_ms": "1459655076386", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Dro", "indices": [25, 34], "id": 46739153, "screen_name": "DroPilot", "id_str": "46739153"}], "hashtags": []}, "in_reply_to_user_id": 46739153, "favorite_count": 0, "in_reply_to_status_id": 716471221169352705, "lang": "en", "created_at": "Sun Apr 03 03:44:36 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471238437134337", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "385803565", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1240229910/1459029420", "description": "mark\u2764\ufe0f / I'm so 3000 and 8", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Surprise, AZ", "follow_request_sent": null, "followers_count": 579, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711928831423066114/Ca_uN6tC_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 630, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1240229910", "protected": false, "id": 1240229910, "favourites_count": 7821, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jenaaaa13", "profile_image_url": "http://pbs.twimg.com/profile_images/711928831423066114/Ca_uN6tC_normal.jpg", "lang": "en", "created_at": "Mon Mar 04 01:35:10 +0000 2013", "profile_use_background_image": true, "name": "KENDALL JENNER", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 15639, "is_translator": false}, "text": "@Healingofharms thank you \ud83d\udc8b", "retweeted": false, "in_reply_to_screen_name": "Healingofharms", "id_str": "716471442133483520", "id": 716471442133483520, "timestamp_ms": "1459655077857", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Jayde", "indices": [0, 15], "id": 385803565, "screen_name": "Healingofharms", "id_str": "385803565"}], "hashtags": []}, "in_reply_to_user_id": 385803565, "favorite_count": 0, "in_reply_to_status_id": 716471238437134337, "lang": "en", "created_at": "Sun Apr 03 03:44:37 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2287769016/1459438596", "description": "soccer \u26bd\ufe0f, probably with kels at the gym, on the field or tanning", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "the deep depths of hell aka AZ", "follow_request_sent": null, "followers_count": 434, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712910081730293760/0hv_hg6K_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000172920885/lmyQetIX.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 254, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000172920885/lmyQetIX.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "2287769016", "protected": false, "id": 2287769016, "favourites_count": 11157, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alliboo20", "profile_image_url": "http://pbs.twimg.com/profile_images/712910081730293760/0hv_hg6K_normal.jpg", "lang": "en", "created_at": "Sun Jan 12 07:13:24 +0000 2014", "profile_use_background_image": true, "name": "Ali.", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4925, "is_translator": false}, "text": "Who wants to come over so I don't have to third wheel \ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471448479485953", "id": 716471448479485953, "timestamp_ms": "1459655079370", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470979057295360", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1436097660", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1436097660/1459646258", "description": "Sof // JDRF Donation Link: http://www2.jdrf.org/site/TR?fr_id=6001&pg=team&team_id=204433", "profile_sidebar_border_color": "8BA7C4", "profile_background_tile": false, "profile_background_color": "F2EEEF", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 286, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711650848661614594/YYqOjB0Z_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/872508125/da3fab7196724d7e76cbf11ad5d56ad5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 291, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/872508125/da3fab7196724d7e76cbf11ad5d56ad5.jpeg", "time_zone": "Arizona", "profile_text_color": "8F2E2E", "id_str": "1436097660", "protected": false, "id": 1436097660, "favourites_count": 3176, "profile_sidebar_fill_color": "FAFAFA", "screen_name": "princessmurda", "profile_image_url": "http://pbs.twimg.com/profile_images/711650848661614594/YYqOjB0Z_normal.jpg", "lang": "en", "created_at": "Fri May 17 16:38:40 +0000 2013", "profile_use_background_image": true, "name": "mer", "url": null, "following": null, "profile_link_color": "7B8894", "statuses_count": 4183, "is_translator": false}, "text": "@princessmurda @meaganegibson @Andreatalde @terryazell @_AllisonNicole1 @_1209pilar @emmyy_louuuu @jesssiwashere", "retweeted": false, "in_reply_to_screen_name": "princessmurda", "id_str": "716471451348508672", "id": 716471451348508672, "timestamp_ms": "1459655080054", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "mer", "indices": [0, 14], "id": 1436097660, "screen_name": "princessmurda", "id_str": "1436097660"}, {"name": "meagan", "indices": [15, 29], "id": 3465977772, "screen_name": "meaganegibson", "id_str": "3465977772"}, {"name": "Andrea Grio", "indices": [30, 42], "id": 531897342, "screen_name": "Andreatalde", "id_str": "531897342"}, {"name": "Terryn IT UP", "indices": [43, 54], "id": 2355374048, "screen_name": "terryazell", "id_str": "2355374048"}, {"name": "Allison", "indices": [55, 71], "id": 1311386695, "screen_name": "_AllisonNicole1", "id_str": "1311386695"}, {"name": "SmallTall", "indices": [72, 83], "id": 1461254910, "screen_name": "_1209pilar", "id_str": "1461254910"}, {"name": "momma em", "indices": [84, 97], "id": 1195282898, "screen_name": "emmyy_louuuu", "id_str": "1195282898"}, {"name": "jessie", "indices": [98, 112], "id": 2341176170, "screen_name": "jesssiwashere", "id_str": "2341176170"}], "hashtags": []}, "in_reply_to_user_id": 1436097660, "favorite_count": 0, "in_reply_to_status_id": 716470979057295360, "lang": "und", "created_at": "Sun Apr 03 03:44:40 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1010434993/1458773829", "description": "it pays to be a winner", "profile_sidebar_border_color": "D9B17E", "profile_background_tile": false, "profile_background_color": "8B542B", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 2010, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714951007273426945/lfcDAJJr_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 983, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "1010434993", "protected": false, "id": 1010434993, "favourites_count": 82440, "profile_sidebar_fill_color": "EADEAA", "screen_name": "carlos_tweets2u", "profile_image_url": "http://pbs.twimg.com/profile_images/714951007273426945/lfcDAJJr_normal.jpg", "lang": "en", "created_at": "Fri Dec 14 04:55:54 +0000 2012", "profile_use_background_image": true, "name": "Carlos Mendoza", "url": "https://www.instagram.com/carlosmendoza1/", "following": null, "profile_link_color": "9D582E", "statuses_count": 39329, "is_translator": false}, "text": "Please clean your room when you get home\ud83d\ude37 @kennedyhayhay", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471456926797824", "id": 716471456926797824, "timestamp_ms": "1459655081384", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "kennedy", "indices": [42, 56], "id": 603095722, "screen_name": "kennedyhayhay", "id_str": "603095722"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716466588036112385", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "291498874", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/224477172/1452110823", "description": "I'm just a princess who's in love with a United States Marine.", "profile_sidebar_border_color": "C945C9", "profile_background_tile": false, "profile_background_color": "642D8B", "verified": false, "location": "Arizona\u27a1\ufe0f North Carolina", "follow_request_sent": null, "followers_count": 932, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/702355131405176833/0qKEi8uO_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/570829659/tppeor1u9y9i8r3kxlnj.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 1220, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/570829659/tppeor1u9y9i8r3kxlnj.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "F50A87", "id_str": "224477172", "protected": false, "id": 224477172, "favourites_count": 8497, "profile_sidebar_fill_color": "4D4B4D", "screen_name": "SavannahArienna", "profile_image_url": "http://pbs.twimg.com/profile_images/702355131405176833/0qKEi8uO_normal.jpg", "lang": "en", "created_at": "Thu Dec 09 03:19:14 +0000 2010", "profile_use_background_image": true, "name": "Savannah", "url": null, "following": null, "profile_link_color": "000000", "statuses_count": 42559, "is_translator": false}, "text": "@Alexzandrah_96 she's really nice to me. \ud83d\ude07\ud83d\ude2d\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": "Alexzandrah_96", "id_str": "716471462060630017", "id": 716471462060630017, "timestamp_ms": "1459655082608", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Vanessa De La Rosa", "indices": [0, 15], "id": 291498874, "screen_name": "Alexzandrah_96", "id_str": "291498874"}], "hashtags": []}, "in_reply_to_user_id": 291498874, "favorite_count": 0, "in_reply_to_status_id": 716466588036112385, "lang": "en", "created_at": "Sun Apr 03 03:44:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/414449522/1459312290", "description": "Maxxy Vicious, more commonly known as Tyler Pitt. I'm 18, I like hats and gold jewelry, I'm employed, and I make music. | Mixtape soon come", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "1A1B1F", "verified": false, "location": "Texas, USA", "follow_request_sent": null, "followers_count": 3774, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708953764812574720/YMm1MLqI_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/798967166/07c790a5a2a0ccf7e3caa007fffc3188.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 989, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/798967166/07c790a5a2a0ccf7e3caa007fffc3188.jpeg", "time_zone": "Central Time (US & Canada)", "profile_text_color": "333333", "id_str": "414449522", "protected": false, "id": 414449522, "favourites_count": 9924, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "MaxxyVicious", "profile_image_url": "http://pbs.twimg.com/profile_images/708953764812574720/YMm1MLqI_normal.jpg", "lang": "en", "created_at": "Thu Nov 17 02:16:50 +0000 2011", "profile_use_background_image": true, "name": "Maxx V", "url": "http://paradiseatx.Bigcartel.com", "following": null, "profile_link_color": "E81C4F", "statuses_count": 88560, "is_translator": false}, "text": "And he's right. https://t.co/7WV2F9PgKQ", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471462232633344", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "TweetDeck", "contributors": null, "possibly_sensitive": false, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/890891/1458661236", "description": "Get the latest sports news, live scores, breaking updates, and video highlights - Download the Team Stream app http://teamstre.am/1LKcdOW", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "444444", "verified": true, "location": null, "follow_request_sent": null, "followers_count": 2293974, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/448139723446296576/n1iz4mg6_normal.png", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572500505171992576/0pI8bQVE.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 10465, "friends_count": 514, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572500505171992576/0pI8bQVE.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "890891", "protected": false, "id": 890891, "favourites_count": 54, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "BleacherReport", "profile_image_url": "http://pbs.twimg.com/profile_images/448139723446296576/n1iz4mg6_normal.png", "lang": "en", "created_at": "Sat Mar 10 23:52:36 +0000 2007", "profile_use_background_image": false, "name": "Bleacher Report", "url": "https://www.snapchat.com/add/bleacherreport", "following": null, "profile_link_color": "009999", "statuses_count": 53823, "is_translator": false}, "text": "Scottie Pippen didn\u2019t even give the Warriors one game #BullsIn4 \n(via @HiMyNameIsSeton)\nhttps://t.co/E4ZCWUM6PS", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470762027089920", "id": 716470762027089920, "entities": {"symbols": [], "urls": [{"expanded_url": "http://vine.co/v/ijIVzztpF0x", "indices": [88, 111], "display_url": "vine.co/v/ijIVzztpF0x", "url": "https://t.co/E4ZCWUM6PS"}], "user_mentions": [{"name": "Seton", "indices": [70, 86], "id": 18967264, "screen_name": "HiMyNameIsSeton", "id_str": "18967264"}], "hashtags": [{"indices": [54, 63], "text": "BullsIn4"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471462232633344, "timestamp_ms": "1459655082649", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/bleacherreport/status/716470762027089920", "indices": [16, 39], "display_url": "twitter.com/bleacherreport\u2026", "url": "https://t.co/7WV2F9PgKQ"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470762027089920, "created_at": "Sun Apr 03 03:44:42 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470762027089920", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716422258663624704", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "326542434", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/326515252/1444459675", "description": "i'm Joy | cosplayer | 22 | AZ | small egg | mrs bansheebeat | next con: fanime", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "0099B9", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 223, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716382701859708928/C_JnNAW7_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833245890/0af6696ad71146ba89e47e99ddf4eb39.png", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 309, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833245890/0af6696ad71146ba89e47e99ddf4eb39.png", "time_zone": null, "profile_text_color": "333333", "id_str": "326515252", "protected": false, "id": 326515252, "favourites_count": 5716, "profile_sidebar_fill_color": "F6FFD1", "screen_name": "JoyoLantern", "profile_image_url": "http://pbs.twimg.com/profile_images/716382701859708928/C_JnNAW7_normal.jpg", "lang": "en", "created_at": "Thu Jun 30 01:35:41 +0000 2011", "profile_use_background_image": true, "name": "puchim@tsu", "url": "http://meatsuru.tumblr.com/", "following": null, "profile_link_color": "DD2E44", "statuses_count": 14714, "is_translator": false}, "text": "@PunkShinji tell jack I said hi. He's my friend.", "retweeted": false, "in_reply_to_screen_name": "PunkShinji", "id_str": "716471469975281664", "id": 716471469975281664, "timestamp_ms": "1459655084495", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Your Closet Furry", "indices": [0, 11], "id": 326542434, "screen_name": "PunkShinji", "id_str": "326542434"}], "hashtags": []}, "in_reply_to_user_id": 326542434, "favorite_count": 0, "in_reply_to_status_id": 716422258663624704, "lang": "en", "created_at": "Sun Apr 03 03:44:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2248167884/1459619076", "description": "me, myself, and i", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 317, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715056761795907584/yofXuMV0_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 248, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2248167884", "protected": false, "id": 2248167884, "favourites_count": 8538, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "victorialmanza", "profile_image_url": "http://pbs.twimg.com/profile_images/715056761795907584/yofXuMV0_normal.jpg", "lang": "en", "created_at": "Mon Dec 16 04:27:10 +0000 2013", "profile_use_background_image": true, "name": "mannza \u263a\ufe0f", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4962, "is_translator": false}, "text": "If you love someone then show them. If you want to be with someone get your ass up and show them. Just saying it aint gonna mean shit", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471477692866560", "id": 716471477692866560, "timestamp_ms": "1459655086335", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471219558592512", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2716271159", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2716271159/1459063627", "description": "saved China, no big deal", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 150, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713991068409315329/pKZj_c1__normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 120, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2716271159", "protected": false, "id": 2716271159, "favourites_count": 3660, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "KealaniFaulkner", "profile_image_url": "http://pbs.twimg.com/profile_images/713991068409315329/pKZj_c1__normal.jpg", "lang": "en", "created_at": "Fri Jul 18 02:37:09 +0000 2014", "profile_use_background_image": true, "name": "Fa Mulan", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2606, "is_translator": false}, "text": "@KealaniFaulkner he's really scared of spiders, only the small ones", "retweeted": false, "in_reply_to_screen_name": "KealaniFaulkner", "id_str": "716471495979978753", "id": 716471495979978753, "timestamp_ms": "1459655090695", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Fa Mulan", "indices": [0, 16], "id": 2716271159, "screen_name": "KealaniFaulkner", "id_str": "2716271159"}], "hashtags": []}, "in_reply_to_user_id": 2716271159, "favorite_count": 0, "in_reply_to_status_id": 716471219558592512, "lang": "en", "created_at": "Sun Apr 03 03:44:50 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716416230157107204", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "12612432", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/15272508/1426405948", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 275, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/674047572181258240/JR2IG9zq_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 707, "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Central Time (US & Canada)", "profile_text_color": "333333", "id_str": "15272508", "protected": false, "id": 15272508, "favourites_count": 2656, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "mmcodd", "profile_image_url": "http://pbs.twimg.com/profile_images/674047572181258240/JR2IG9zq_normal.jpg", "lang": "en", "created_at": "Sun Jun 29 18:50:09 +0000 2008", "profile_use_background_image": true, "name": "Matthew Codd", "url": "https://hercmatt86.wordpress.com/", "following": null, "profile_link_color": "0084B4", "statuses_count": 5836, "is_translator": false}, "text": "@jpodhoretz Petty Woman #DullDownAMovie", "retweeted": false, "in_reply_to_screen_name": "jpodhoretz", "id_str": "716471509691211776", "id": 716471509691211776, "timestamp_ms": "1459655093964", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "John Podhoretz", "indices": [0, 11], "id": 12612432, "screen_name": "jpodhoretz", "id_str": "12612432"}], "hashtags": [{"indices": [24, 39], "text": "DullDownAMovie"}]}, "in_reply_to_user_id": 12612432, "favorite_count": 0, "in_reply_to_status_id": 716416230157107204, "lang": "en", "created_at": "Sun Apr 03 03:44:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/376027586/1459202836", "description": "I like to draw and ramble about useless things", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": "Tucson, AZ", "follow_request_sent": null, "followers_count": 111, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714574600882012165/PndafTQm_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 249, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "376027586", "protected": false, "id": 376027586, "favourites_count": 3399, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Sedona_Anne", "profile_image_url": "http://pbs.twimg.com/profile_images/714574600882012165/PndafTQm_normal.jpg", "lang": "en", "created_at": "Mon Sep 19 05:25:26 +0000 2011", "profile_use_background_image": true, "name": "Sedona Creegan", "url": null, "following": null, "profile_link_color": "D40864", "statuses_count": 3951, "is_translator": false}, "text": "I tell at least three people a day how to dye their hair like mine.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471516485984260", "id": 716471516485984260, "timestamp_ms": "1459655095584", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471372856176640", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2921307595", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1255323342/1456553862", "description": "AZ Wfhs 19 |Basketball PG| |Baseball|", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 355, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713467194605088768/Oh8nBzxm_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 342, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1255323342", "protected": false, "id": 1255323342, "favourites_count": 791, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "cplewe", "profile_image_url": "http://pbs.twimg.com/profile_images/713467194605088768/Oh8nBzxm_normal.jpg", "lang": "en", "created_at": "Sat Mar 09 20:44:56 +0000 2013", "profile_use_background_image": true, "name": "Little Man", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 405, "is_translator": false}, "text": "@jakempayne22 thanks bud", "retweeted": false, "in_reply_to_screen_name": "jakempayne22", "id_str": "716471522546700288", "id": 716471522546700288, "timestamp_ms": "1459655097029", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "jake payne", "indices": [0, 13], "id": 2921307595, "screen_name": "jakempayne22", "id_str": "2921307595"}], "hashtags": []}, "in_reply_to_user_id": 2921307595, "favorite_count": 0, "in_reply_to_status_id": 716471372856176640, "lang": "en", "created_at": "Sun Apr 03 03:44:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/718962253/1459466286", "description": "Salmo 91, SJT. | Forever young | King | No Fly Zone sc:daniel_araujo07 Tyrann Mathieu", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "#SAVAGESZN", "follow_request_sent": null, "followers_count": 700, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714533878338347009/vpVinN4A_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/616895759267442688/9lgzZKih.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 237, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/616895759267442688/9lgzZKih.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "000000", "id_str": "718962253", "protected": false, "id": 718962253, "favourites_count": 3506, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Daniel_araujo47", "profile_image_url": "http://pbs.twimg.com/profile_images/714533878338347009/vpVinN4A_normal.jpg", "lang": "es", "created_at": "Thu Jul 26 23:10:55 +0000 2012", "profile_use_background_image": true, "name": "Daniel AV", "url": "http://Instagram.com/araujor.7/", "following": null, "profile_link_color": "DD2E44", "statuses_count": 29760, "is_translator": false}, "text": "Just posted a photo @ University of Phoenix Stadium https://t.co/P059YliTOo", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471525071785988", "id": 716471525071785988, "timestamp_ms": "1459655097631", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTZEZjt_4nvttJAxtIyWjj1oiVTlAs1xurCU0/", "indices": [52, 75], "display_url": "instagram.com/p/BDuTZEZjt_4n\u2026", "url": "https://t.co/P059YliTOo"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:44:57 +0000 2016", "coordinates": {"coordinates": [-112.26247636, 33.5280587], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.5280587, -112.26247636], "type": "Point"}}, {"in_reply_to_status_id_str": "716462297275695108", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2475440646", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Goodyear, AZ", "place_type": "city", "attributes": {}, "name": "Goodyear", "country": "United States", "id": "00fae4950337e465", "bounding_box": {"coordinates": [[[-112.508916, 33.317555], [-112.508916, 33.50819], [-112.341035, 33.50819], [-112.341035, 33.317555]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/00fae4950337e465.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2393057700/1453849172", "description": "Huskers,Dolphins,Cubs,and Kurt Busch fan.Still love R.E.M.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Goodyear,AZ ", "follow_request_sent": null, "followers_count": 582, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 32, "friends_count": 590, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2393057700", "protected": false, "id": 2393057700, "favourites_count": 34261, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HunterHusker", "profile_image_url": "http://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "lang": "en", "created_at": "Sun Mar 16 17:44:41 +0000 2014", "profile_use_background_image": true, "name": "Jamie Hunter", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 12151, "is_translator": false}, "text": "@IHopeDavis you can't shovel sunshine!", "retweeted": false, "in_reply_to_screen_name": "IHopeDavis", "id_str": "716471531904196608", "id": 716471531904196608, "timestamp_ms": "1459655099260", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Hope", "indices": [0, 11], "id": 2475440646, "screen_name": "IHopeDavis", "id_str": "2475440646"}], "hashtags": []}, "in_reply_to_user_id": 2475440646, "favorite_count": 0, "in_reply_to_status_id": 716462297275695108, "lang": "en", "created_at": "Sun Apr 03 03:44:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Buckeye, AZ", "place_type": "city", "attributes": {}, "name": "Buckeye", "country": "United States", "id": "0015cc0d71d49e19", "bounding_box": {"coordinates": [[[-112.62655, 33.355798], [-112.62655, 33.515442], [-112.461428, 33.515442], [-112.461428, 33.355798]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015cc0d71d49e19.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3230211462/1459622425", "description": "I could be your Black Kate Moss tonight", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 574, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715957057501814784/ljC-SmxB_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 401, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3230211462", "protected": false, "id": 3230211462, "favourites_count": 14240, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "beckokon", "profile_image_url": "http://pbs.twimg.com/profile_images/715957057501814784/ljC-SmxB_normal.jpg", "lang": "en", "created_at": "Sat May 30 02:26:26 +0000 2015", "profile_use_background_image": true, "name": "Bab", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 5450, "is_translator": false}, "text": "Goddammit I just had a nip slip in Bashas 3 times", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471541286903809", "id": 716471541286903809, "timestamp_ms": "1459655101497", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/329032470/1452967538", "description": "Theomachist.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "EBEBEB", "verified": false, "location": "Laveen, AZ", "follow_request_sent": null, "followers_count": 3416, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715307918552203264/1BEKjgB2_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 8, "friends_count": 161, "utc_offset": 10800, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "time_zone": "Istanbul", "profile_text_color": "666666", "id_str": "329032470", "protected": false, "id": 329032470, "favourites_count": 1332, "profile_sidebar_fill_color": "252429", "screen_name": "moezzarella", "profile_image_url": "http://pbs.twimg.com/profile_images/715307918552203264/1BEKjgB2_normal.jpg", "lang": "en", "created_at": "Mon Jul 04 12:50:16 +0000 2011", "profile_use_background_image": false, "name": "Moe", "url": "http://moesafadieh.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 47646, "is_translator": false}, "text": "I'm too utilitarian to be making such decisions.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471544986230786", "id": 716471544986230786, "timestamp_ms": "1459655102379", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:02 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/29903521/1411177884", "description": null, "profile_sidebar_border_color": "53777A", "profile_background_tile": true, "profile_background_color": "ECD078", "verified": false, "location": "Prosper, TX", "follow_request_sent": null, "followers_count": 104, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/312544618/troy___jenny_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/59248788/x2e6a5e62e8623d296d21876e1773d44.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 163, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/59248788/x2e6a5e62e8623d296d21876e1773d44.png", "time_zone": "Central Time (US & Canada)", "profile_text_color": "D95B43", "id_str": "29903521", "protected": false, "id": 29903521, "favourites_count": 30, "profile_sidebar_fill_color": "542437", "screen_name": "TroyDMeyers", "profile_image_url": "http://pbs.twimg.com/profile_images/312544618/troy___jenny_normal.jpg", "lang": "en", "created_at": "Thu Apr 09 02:58:25 +0000 2009", "profile_use_background_image": true, "name": "Troy D. Meyers", "url": null, "following": null, "profile_link_color": "C02942", "statuses_count": 1051, "is_translator": false}, "text": "Grand Canyon - South Rim @ Grand Canyon National Park https://t.co/n5mz7JyOTR", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471547599261698", "id": 716471547599261698, "timestamp_ms": "1459655103002", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTZMASfw2/", "indices": [54, 77], "display_url": "instagram.com/p/BDuTZMASfw2/", "url": "https://t.co/n5mz7JyOTR"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:03 +0000 2016", "coordinates": {"coordinates": [-112.13943708, 36.05723622], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [36.05723622, -112.13943708], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2566065809/1459180850", "description": "KASH XAVIER", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 373, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711322188213653505/EB3uoy5-_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652239927535517696/GtspBHXZ.jpg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 101, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652239927535517696/GtspBHXZ.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "2566065809", "protected": false, "id": 2566065809, "favourites_count": 2880, "profile_sidebar_fill_color": "000000", "screen_name": "LILPIMPB", "profile_image_url": "http://pbs.twimg.com/profile_images/711322188213653505/EB3uoy5-_normal.jpg", "lang": "en", "created_at": "Mon May 26 23:00:44 +0000 2014", "profile_use_background_image": true, "name": "BAYLEE", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 11208, "is_translator": false}, "text": "I'M DUMB CUZ I STAY WIT NIGGAS AFTER THEY CHEAT... NA... I BE CHEATIN TOO I JUST LOVE THE COMFORT OF HAVIN A MAIN SQUEEZE", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471555773964289", "id": 716471555773964289, "timestamp_ms": "1459655104951", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:04 +0000 2016", "coordinates": {"coordinates": [-112.1489672, 33.4638259], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4638259, -112.1489672], "type": "Point"}}, {"in_reply_to_status_id_str": "716465329803698176", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1005274124", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2198812903/1458431415", "description": "Saguaro Football c/o 17' | #teamshowtyme", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "in my own lane", "follow_request_sent": null, "followers_count": 611, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714182249621618689/fnxr1d1G_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 618, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2198812903", "protected": false, "id": 2198812903, "favourites_count": 5190, "profile_sidebar_fill_color": "000000", "screen_name": "_KennyOliver", "profile_image_url": "http://pbs.twimg.com/profile_images/714182249621618689/fnxr1d1G_normal.jpg", "lang": "en", "created_at": "Sun Nov 17 03:11:17 +0000 2013", "profile_use_background_image": false, "name": "April 2\ufe0f\u20e3", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 3939, "is_translator": false}, "text": "@AlissaMulvihill thank you!!", "retweeted": false, "in_reply_to_screen_name": "AlissaMulvihill", "id_str": "716471558689071104", "id": 716471558689071104, "timestamp_ms": "1459655105646", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "lissa", "indices": [0, 16], "id": 1005274124, "screen_name": "AlissaMulvihill", "id_str": "1005274124"}], "hashtags": []}, "in_reply_to_user_id": 1005274124, "favorite_count": 0, "in_reply_to_status_id": 716465329803698176, "lang": "en", "created_at": "Sun Apr 03 03:45:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716469620685705216", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3258196658", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1255323342/1456553862", "description": "AZ Wfhs 19 |Basketball PG| |Baseball|", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 355, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713467194605088768/Oh8nBzxm_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 342, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1255323342", "protected": false, "id": 1255323342, "favourites_count": 793, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "cplewe", "profile_image_url": "http://pbs.twimg.com/profile_images/713467194605088768/Oh8nBzxm_normal.jpg", "lang": "en", "created_at": "Sat Mar 09 20:44:56 +0000 2013", "profile_use_background_image": true, "name": "Little Man", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 407, "is_translator": false}, "text": "@madisonmcgavock thanks", "retweeted": false, "in_reply_to_screen_name": "madisonmcgavock", "id_str": "716471564330356737", "id": 716471564330356737, "timestamp_ms": "1459655106991", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "madison :')", "indices": [0, 16], "id": 3258196658, "screen_name": "madisonmcgavock", "id_str": "3258196658"}], "hashtags": []}, "in_reply_to_user_id": 3258196658, "favorite_count": 0, "in_reply_to_status_id": 716469620685705216, "lang": "en", "created_at": "Sun Apr 03 03:45:06 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1592091372/1459316287", "description": "19 \u2022 Barber/Stylist @ Sport Clips\u2704 \u2022 Christopher Blanco\u2661 \u2022 Fur mommy to Ivy", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 486, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715776612768346112/wM2eb5sx_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 177, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1592091372", "protected": false, "id": 1592091372, "favourites_count": 18073, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "itssarahbobarah", "profile_image_url": "http://pbs.twimg.com/profile_images/715776612768346112/wM2eb5sx_normal.jpg", "lang": "en", "created_at": "Sun Jul 14 00:09:44 +0000 2013", "profile_use_background_image": true, "name": "$ar\u265b", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 14061, "is_translator": false}, "text": "Are you really dating if you don't have fart wars to see who can fart the loudest??\ud83d\ude02\ud83d\ude2d", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471570969931776", "id": 716471570969931776, "timestamp_ms": "1459655108574", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/112610448/1459405056", "description": "idc what you're sayin cause, i'm out here slayin. NAU'19.", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "RIP Sophia Marie, 08/18/15 \u2764\ufe0f", "follow_request_sent": null, "followers_count": 2057, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710683457962160130/Lr_GdS9I_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000004215670/071042584f237f34ae53da6e7e537cb5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 18, "friends_count": 245, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000004215670/071042584f237f34ae53da6e7e537cb5.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "FA005C", "id_str": "112610448", "protected": false, "id": 112610448, "favourites_count": 17426, "profile_sidebar_fill_color": "000000", "screen_name": "AmbitiousAleyah", "profile_image_url": "http://pbs.twimg.com/profile_images/710683457962160130/Lr_GdS9I_normal.jpg", "lang": "en", "created_at": "Tue Feb 09 03:30:20 +0000 2010", "profile_use_background_image": true, "name": "princess A \u2728", "url": "http://um-idontreallycare.tumblr.com", "following": null, "profile_link_color": "FA6C0D", "statuses_count": 71023, "is_translator": false}, "text": "s/o to the girl that came up to me and asked for a kiss \ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471579283050497", "id": 716471579283050497, "timestamp_ms": "1459655110556", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/713981192/1458595998", "description": "2K MYPLAYER: PPG: 38.4 APG: 11.4 RPG: 14.3 SPG: 3.8 SHOOTING PERCENTAGE: 52.8%", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "F72105", "verified": false, "location": "AZ\u2194\ufe0fOR", "follow_request_sent": null, "followers_count": 941, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705226791435182082/ZnD9oMFH_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000105450783/e78334bf1e87409eb757fc598efa2cf2.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 17, "friends_count": 430, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000105450783/e78334bf1e87409eb757fc598efa2cf2.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "713981192", "protected": false, "id": 713981192, "favourites_count": 41175, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "fraanciscoooo", "profile_image_url": "http://pbs.twimg.com/profile_images/705226791435182082/ZnD9oMFH_normal.jpg", "lang": "en", "created_at": "Tue Jul 24 09:07:19 +0000 2012", "profile_use_background_image": true, "name": "FLOWBE BRYANT", "url": "https://Instagram.com/frank___burns/", "following": null, "profile_link_color": "F70A29", "statuses_count": 95673, "is_translator": false}, "text": "tomatoes https://t.co/DtqRcSk4zi", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471588661514240", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/377215857/1456722385", "description": null, "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "EBEBEB", "verified": false, "location": "jungle", "follow_request_sent": null, "followers_count": 401, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711408406330867713/X7tUZWTl_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/437804802513186817/OGWelWA4.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 158, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/437804802513186817/OGWelWA4.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "377215857", "protected": false, "id": 377215857, "favourites_count": 40095, "profile_sidebar_fill_color": "EADEAA", "screen_name": "sngxo_", "profile_image_url": "http://pbs.twimg.com/profile_images/711408406330867713/X7tUZWTl_normal.jpg", "lang": "en", "created_at": "Wed Sep 21 06:30:54 +0000 2011", "profile_use_background_image": true, "name": "dicaprio", "url": null, "following": null, "profile_link_color": "E64EDC", "statuses_count": 59108, "is_translator": false}, "text": "Raisins the worst thing to exist since olives.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716458797041000449", "id": 716458797041000449, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 02:54:23 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471588661514240, "timestamp_ms": "1459655112792", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/sngxo_/status/716458797041000449", "indices": [10, 33], "display_url": "twitter.com/sngxo_/status/\u2026", "url": "https://t.co/DtqRcSk4zi"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716458797041000449, "created_at": "Sun Apr 03 03:45:12 +0000 2016", "coordinates": null, "quoted_status_id_str": "716458797041000449", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/146177144/1456522644", "description": null, "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 626, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714493940934828032/HVMPBU63_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/739445898/7b6f20e56e7b297ef63edb9903a10863.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 177, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/739445898/7b6f20e56e7b297ef63edb9903a10863.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "FFFFFF", "id_str": "146177144", "protected": false, "id": 146177144, "favourites_count": 3608, "profile_sidebar_fill_color": "000000", "screen_name": "_Joccyyyy", "profile_image_url": "http://pbs.twimg.com/profile_images/714493940934828032/HVMPBU63_normal.jpg", "lang": "en", "created_at": "Thu May 20 19:51:46 +0000 2010", "profile_use_background_image": true, "name": "\u26ab\ufe0f", "url": null, "following": null, "profile_link_color": "FF00FF", "statuses_count": 30594, "is_translator": false}, "text": "1 second I'm in a good mood and once I start driving,I get so angry and ruins my whole mood", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471595053678593", "id": 716471595053678593, "timestamp_ms": "1459655114316", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:14 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/524568398/1459297352", "description": "DRHS Sophomore // az", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "David Abel \u2764\ufe0f", "follow_request_sent": null, "followers_count": 472, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714970871979446272/WMWEagjy_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 320, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "524568398", "protected": false, "id": 524568398, "favourites_count": 6473, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Tara_Sperry", "profile_image_url": "http://pbs.twimg.com/profile_images/714970871979446272/WMWEagjy_normal.jpg", "lang": "en", "created_at": "Wed Mar 14 17:43:56 +0000 2012", "profile_use_background_image": true, "name": "sperry t", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2200, "is_translator": false}, "text": "Ok ok so there's about 20 different drinks I need to try from Dutch now\ud83d\udc40", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471624480915456", "id": 716471624480915456, "timestamp_ms": "1459655121332", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:21 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2262039114/1459229077", "description": "uh-huh honey", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "F5ABB5", "verified": false, "location": "aze", "follow_request_sent": null, "followers_count": 710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714684663181275136/RAPUsrLS_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/679374476467826688/b8DOnoCi.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 387, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/679374476467826688/b8DOnoCi.jpg", "time_zone": "Tijuana", "profile_text_color": "000000", "id_str": "2262039114", "protected": false, "id": 2262039114, "favourites_count": 9527, "profile_sidebar_fill_color": "000000", "screen_name": "KaliKoolin", "profile_image_url": "http://pbs.twimg.com/profile_images/714684663181275136/RAPUsrLS_normal.jpg", "lang": "en", "created_at": "Wed Dec 25 23:44:51 +0000 2013", "profile_use_background_image": true, "name": "kalisse \u2661", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 16673, "is_translator": false}, "text": "My dad says this all day the time to my sis https://t.co/XFglaRC4EN", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471630571003904", "quoted_status": {"in_reply_to_status_id_str": "716470471571574784", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2530377150", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2530377150/1458670426", "description": "@whittersnicole", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "MNJ\u2763", "follow_request_sent": null, "followers_count": 373, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714650067068649473/eUv9boau_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 272, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2530377150", "protected": false, "id": 2530377150, "favourites_count": 17901, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "My__Ramos", "profile_image_url": "http://pbs.twimg.com/profile_images/714650067068649473/eUv9boau_normal.jpg", "lang": "en", "created_at": "Wed May 28 16:34:41 +0000 2014", "profile_use_background_image": true, "name": "\u24dc\u24e8", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 11843, "is_translator": false}, "text": "@My__Ramos \n\n1. \" Stop crying before I give you something to cry about \"", "retweeted": false, "in_reply_to_screen_name": "My__Ramos", "id_str": "716470823905693696", "id": 716470823905693696, "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u24dc\u24e8", "indices": [0, 10], "id": 2530377150, "screen_name": "My__Ramos", "id_str": "2530377150"}], "hashtags": []}, "in_reply_to_user_id": 2530377150, "favorite_count": 0, "in_reply_to_status_id": 716470471571574784, "lang": "en", "created_at": "Sun Apr 03 03:42:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471630571003904, "timestamp_ms": "1459655122784", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/my__ramos/status/716470823905693696", "indices": [44, 67], "display_url": "twitter.com/my__ramos/stat\u2026", "url": "https://t.co/XFglaRC4EN"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470823905693696, "created_at": "Sun Apr 03 03:45:22 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470823905693696", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/563656677/1390177085", "description": "Just a Monkey with a keyboard...\r\nAng Mo Kui", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "FFFFFF", "verified": false, "location": "Sunnyvale, CA", "follow_request_sent": null, "followers_count": 256, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/425136324425703424/_6f64Zsl_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000171215975/1VO4p5Hl.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 8, "friends_count": 789, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000171215975/1VO4p5Hl.jpeg", "time_zone": "Arizona", "profile_text_color": "990000", "id_str": "563656677", "protected": false, "id": 563656677, "favourites_count": 842, "profile_sidebar_fill_color": "121212", "screen_name": "m0nk4y4g", "profile_image_url": "http://pbs.twimg.com/profile_images/425136324425703424/_6f64Zsl_normal.jpeg", "lang": "en", "created_at": "Thu Apr 26 09:13:16 +0000 2012", "profile_use_background_image": true, "name": "GingerMonkey", "url": "http://www.facebook.com/freakmonkey", "following": null, "profile_link_color": "3248B8", "statuses_count": 1240, "is_translator": false}, "text": "Flights at full capacity! Hold on! #iflyswa #stormtrooper #StarWars @ Phoenix Sky Harbor\u2026 https://t.co/L7sstji5AA", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471651253227520", "id": 716471651253227520, "timestamp_ms": "1459655127715", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTct6wAkD/", "indices": [90, 113], "display_url": "instagram.com/p/BDuTct6wAkD/", "url": "https://t.co/L7sstji5AA"}], "user_mentions": [], "hashtags": [{"indices": [35, 43], "text": "iflyswa"}, {"indices": [44, 57], "text": "stormtrooper"}, {"indices": [58, 67], "text": "StarWars"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:27 +0000 2016", "coordinates": {"coordinates": [-111.99994824, 33.4359891], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4359891, -111.99994824], "type": "Point"}}, {"in_reply_to_status_id_str": "716468911684714496", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "259890119", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/67799166/1455774640", "description": "ASU '19 \u2600\ufe0f", "profile_sidebar_border_color": "CFFBED", "profile_background_tile": true, "profile_background_color": "D9B5E9", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 335, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708826416884756480/WUTlgHIf_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461226189751738368/MQi6WTIp.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 141, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461226189751738368/MQi6WTIp.png", "time_zone": "Central Time (US & Canada)", "profile_text_color": "5E412F", "id_str": "67799166", "protected": false, "id": 67799166, "favourites_count": 11463, "profile_sidebar_fill_color": "0CD592", "screen_name": "MWalls333", "profile_image_url": "http://pbs.twimg.com/profile_images/708826416884756480/WUTlgHIf_normal.jpg", "lang": "en", "created_at": "Sat Aug 22 03:10:53 +0000 2009", "profile_use_background_image": false, "name": "Melissa Walls", "url": null, "following": null, "profile_link_color": "0C7AB0", "statuses_count": 15239, "is_translator": false}, "text": "@tay_samps sorry.", "retweeted": false, "in_reply_to_screen_name": "tay_samps", "id_str": "716471653656502272", "id": 716471653656502272, "timestamp_ms": "1459655128288", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "taylor", "indices": [0, 10], "id": 259890119, "screen_name": "tay_samps", "id_str": "259890119"}], "hashtags": []}, "in_reply_to_user_id": 259890119, "favorite_count": 0, "in_reply_to_status_id": 716468911684714496, "lang": "en", "created_at": "Sun Apr 03 03:45:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/506174219/1408416616", "description": "Golden State Warriors. Travel. Jlynn Christensen", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 207, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/510592380022849536/ZB5jmlox_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 185, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "506174219", "protected": false, "id": 506174219, "favourites_count": 4092, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tcashballer21", "profile_image_url": "http://pbs.twimg.com/profile_images/510592380022849536/ZB5jmlox_normal.jpeg", "lang": "en", "created_at": "Mon Feb 27 17:54:22 +0000 2012", "profile_use_background_image": true, "name": "TMONEY", "url": null, "following": null, "profile_link_color": "000608", "statuses_count": 2217, "is_translator": false}, "text": "You know what's annoying? When retired players how they talk about how they would have beat the @warriors of today. @ScottiePippen", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471657565528064", "id": 716471657565528064, "timestamp_ms": "1459655129220", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "GoldenStateWarriors", "indices": [96, 105], "id": 26270913, "screen_name": "warriors", "id_str": "26270913"}, {"name": "Scottie Pippen", "indices": [116, 130], "id": 174889139, "screen_name": "ScottiePippen", "id_str": "174889139"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/528007154/1456130424", "description": "thick thighs save lives;)", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "AWC", "follow_request_sent": null, "followers_count": 382, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711013324461187075/4kEkT5Rf_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 351, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "528007154", "protected": false, "id": 528007154, "favourites_count": 9654, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "mirandaclarios", "profile_image_url": "http://pbs.twimg.com/profile_images/711013324461187075/4kEkT5Rf_normal.jpg", "lang": "en", "created_at": "Sun Mar 18 01:11:20 +0000 2012", "profile_use_background_image": true, "name": "Mandy\u2600\ufe0f", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 18311, "is_translator": false}, "text": "Cali here I come", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471666633613313", "id": 716471666633613313, "timestamp_ms": "1459655131382", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:31 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/666333/1432007006", "description": "Like Jesus but with less followers.", "profile_sidebar_border_color": "A8C7F7", "profile_background_tile": false, "profile_background_color": "022330", "verified": false, "location": "Phoenix, AZ, USA", "follow_request_sent": null, "followers_count": 1033, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716386236315803648/7g8F0FCd_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 66, "friends_count": 1028, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "666333", "protected": false, "id": 666333, "favourites_count": 4326, "profile_sidebar_fill_color": "C0DFEC", "screen_name": "davebrook", "profile_image_url": "http://pbs.twimg.com/profile_images/716386236315803648/7g8F0FCd_normal.jpg", "lang": "en", "created_at": "Fri Jan 19 17:55:37 +0000 2007", "profile_use_background_image": true, "name": "DaveBrook", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 30915, "is_translator": false}, "text": "Just dawned upon me. That lack of authenticity of these places, Charlie doesn\u2019t hire the people. @StatesidePres @ValleyBarPHX @CrescentPHX", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471667304718336", "id": 716471667304718336, "timestamp_ms": "1459655131542", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Stateside Presents", "indices": [97, 111], "id": 14439718, "screen_name": "StatesidePres", "id_str": "14439718"}, {"name": "Valley Bar", "indices": [112, 125], "id": 3141005045, "screen_name": "ValleyBarPHX", "id_str": "3141005045"}, {"name": "Crescent Ballroom", "indices": [126, 138], "id": 339981741, "screen_name": "CrescentPHX", "id_str": "339981741"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:31 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2324695387/1459647951", "description": "sweet & sassy", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "cds", "follow_request_sent": null, "followers_count": 760, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716440911404621824/-cL7JZhB_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 607, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2324695387", "protected": false, "id": 2324695387, "favourites_count": 8125, "profile_sidebar_fill_color": "000000", "screen_name": "jordynuhrinyak", "profile_image_url": "http://pbs.twimg.com/profile_images/716440911404621824/-cL7JZhB_normal.jpg", "lang": "en", "created_at": "Mon Feb 03 02:47:21 +0000 2014", "profile_use_background_image": false, "name": "jo", "url": null, "following": null, "profile_link_color": "89C9FA", "statuses_count": 8197, "is_translator": false}, "text": "haven't felt this shitty in a while", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471670635044866", "id": 716471670635044866, "timestamp_ms": "1459655132336", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Queen Creek, AZ", "place_type": "city", "attributes": {}, "name": "Queen Creek", "country": "United States", "id": "01cb573821d94344", "bounding_box": {"coordinates": [[[-111.686314, 33.196614], [-111.686314, 33.288127], [-111.582748, 33.288127], [-111.582748, 33.196614]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/01cb573821d94344.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1323718014/1459279597", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "perry high ", "follow_request_sent": null, "followers_count": 953, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713987363148537856/rfbtWyD3_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 698, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1323718014", "protected": false, "id": 1323718014, "favourites_count": 17028, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "lissagarduno", "profile_image_url": "http://pbs.twimg.com/profile_images/713987363148537856/rfbtWyD3_normal.jpg", "lang": "en", "created_at": "Wed Apr 03 02:58:13 +0000 2013", "profile_use_background_image": true, "name": "LIS", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3695, "is_translator": false}, "text": "HAHAHAHAH OH", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471673860403200", "id": 716471673860403200, "timestamp_ms": "1459655133105", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "tl", "created_at": "Sun Apr 03 03:45:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716394767035183104", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "30413516", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1967302855/1457582963", "description": "I'm a mermaid", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "arizona", "follow_request_sent": null, "followers_count": 408, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714325295025799168/IjvzsP8c_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096604303/2dc14b562f40be90ce852459d1c59b61.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 259, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096604303/2dc14b562f40be90ce852459d1c59b61.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "1967302855", "protected": false, "id": 1967302855, "favourites_count": 13056, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ohoodiee", "profile_image_url": "http://pbs.twimg.com/profile_images/714325295025799168/IjvzsP8c_normal.jpg", "lang": "en", "created_at": "Thu Oct 17 17:32:37 +0000 2013", "profile_use_background_image": true, "name": "***liv", "url": "http://vsco.co/olivelh", "following": null, "profile_link_color": "0084B4", "statuses_count": 18259, "is_translator": false}, "text": "@KavarPapiChulo he's gonna see this and be angry that you even thought about filming him", "retweeted": false, "in_reply_to_screen_name": "KavarPapiChulo", "id_str": "716471678432190465", "id": 716471678432190465, "timestamp_ms": "1459655134195", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "KAVAR", "indices": [0, 15], "id": 30413516, "screen_name": "KavarPapiChulo", "id_str": "30413516"}], "hashtags": []}, "in_reply_to_user_id": 30413516, "favorite_count": 0, "in_reply_to_status_id": 716394767035183104, "lang": "en", "created_at": "Sun Apr 03 03:45:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1056619452/1457772115", "description": "take yo bitch she need some milk.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "618", "follow_request_sent": null, "followers_count": 920, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712890086581350401/5xus69E4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 632, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "1056619452", "protected": false, "id": 1056619452, "favourites_count": 14096, "profile_sidebar_fill_color": "000000", "screen_name": "BradyFHannah", "profile_image_url": "http://pbs.twimg.com/profile_images/712890086581350401/5xus69E4_normal.jpg", "lang": "en", "created_at": "Thu Jan 03 02:05:43 +0000 2013", "profile_use_background_image": false, "name": "BUTTERCUP", "url": null, "following": null, "profile_link_color": "FF0000", "statuses_count": 1907, "is_translator": false}, "text": "\ud83d\udd0c\ud83c\udf44", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471685709303808", "id": 716471685709303808, "timestamp_ms": "1459655135930", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:45:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1951192177/1459401825", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 606, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712168986507481088/6tJcXoqu_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 280, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1951192177", "protected": false, "id": 1951192177, "favourites_count": 19910, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "_valeriaaxxx", "profile_image_url": "http://pbs.twimg.com/profile_images/712168986507481088/6tJcXoqu_normal.jpg", "lang": "en", "created_at": "Thu Oct 10 07:56:06 +0000 2013", "profile_use_background_image": true, "name": "v", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 14061, "is_translator": false}, "text": "lame\ud83d\udc4e\ud83c\udffb\ud83d\udc4e\ud83c\udffb\ud83d\udc4e\ud83c\udffb\ud83d\udc4e\ud83c\udffb", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471687898771456", "id": 716471687898771456, "timestamp_ms": "1459655136452", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:36 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/55079681/1415422902", "description": "I try to be a pretty laid-back person. I enjoy triathlon racing, a few beers, and finding the comedy in life. Kentuckian.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "1239E8", "verified": false, "location": "Phoenix, Az", "follow_request_sent": null, "followers_count": 720, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/612281961676062720/dohwY6ZQ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/737807050/67c41e6ae1166195ffa0d16830d5f345.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 34, "friends_count": 651, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/737807050/67c41e6ae1166195ffa0d16830d5f345.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "55079681", "protected": false, "id": 55079681, "favourites_count": 1279, "profile_sidebar_fill_color": "DDFFCC", "screen_name": "THM74", "profile_image_url": "http://pbs.twimg.com/profile_images/612281961676062720/dohwY6ZQ_normal.jpg", "lang": "en", "created_at": "Thu Jul 09 00:12:22 +0000 2009", "profile_use_background_image": true, "name": "Travis Moore", "url": "http://ourfantasticlife.com/", "following": null, "profile_link_color": "0084B4", "statuses_count": 3650, "is_translator": false}, "text": "Okilly Dokilly rockin out! #Phx #crescentballroom #simpsons @ Crescent Ballroom https://t.co/mb9yUwLyMu", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471701190488064", "id": 716471701190488064, "timestamp_ms": "1459655139621", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTd9eA5zI/", "indices": [80, 103], "display_url": "instagram.com/p/BDuTd9eA5zI/", "url": "https://t.co/mb9yUwLyMu"}], "user_mentions": [], "hashtags": [{"indices": [27, 31], "text": "Phx"}, {"indices": [32, 49], "text": "crescentballroom"}, {"indices": [50, 59], "text": "simpsons"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:39 +0000 2016", "coordinates": {"coordinates": [-112.0765915, 33.4517822], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4517822, -112.0765915], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPad", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/5iZOihsZtO", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/Enrico056/status/716471709189079040/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrNNxVAAAAxg5.jpg", "indices": [118, 141], "id": 716471690507649024, "id_str": "716471690507649024", "display_url": "pic.twitter.com/5iZOihsZtO", "media_url": "http://pbs.twimg.com/media/CfFrNNxVAAAAxg5.jpg"}]}, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/189496721/1446329858", "description": "Was lucky enough to see Angotti, Hull, Mikita,play as a young man. Following the Coyotes, Avalanche, Ducks, & CBJ. Huge Denver Bronco fan!!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Mesa, AZ. via Chicago,IL. ", "follow_request_sent": null, "followers_count": 1360, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711590234383720448/Od6ZfQTH_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 73, "friends_count": 2154, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "189496721", "protected": false, "id": 189496721, "favourites_count": 3182, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Enrico056", "profile_image_url": "http://pbs.twimg.com/profile_images/711590234383720448/Od6ZfQTH_normal.jpg", "lang": "en", "created_at": "Sat Sep 11 12:34:37 +0000 2010", "profile_use_background_image": true, "name": "Enrico A. Bertoletti", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 48432, "is_translator": false}, "text": "Great interview with @A_Matthews34 & @ToddWalsh in between he 2nd & 3rd period @GilaRivArena. @ArizonaCoyotes https://t.co/5iZOihsZtO", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471709189079040", "id": 716471709189079040, "timestamp_ms": "1459655141528", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Auston Matthews", "indices": [21, 34], "id": 1242457452, "screen_name": "A_Matthews34", "id_str": "1242457452"}, {"name": "Todd Walsh", "indices": [41, 51], "id": 41646966, "screen_name": "ToddWalsh", "id_str": "41646966"}, {"name": "Gila River Arena", "indices": [87, 100], "id": 21778871, "screen_name": "GilaRivArena", "id_str": "21778871"}, {"name": "#PackPrideNight", "indices": [102, 117], "id": 20006987, "screen_name": "ArizonaCoyotes", "id_str": "20006987"}], "hashtags": [], "media": [{"url": "https://t.co/5iZOihsZtO", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/Enrico056/status/716471709189079040/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrNNxVAAAAxg5.jpg", "indices": [118, 141], "id": 716471690507649024, "id_str": "716471690507649024", "display_url": "pic.twitter.com/5iZOihsZtO", "media_url": "http://pbs.twimg.com/media/CfFrNNxVAAAAxg5.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Maricopa, AZ", "place_type": "city", "attributes": {}, "name": "Maricopa", "country": "United States", "id": "001b67fd5761210e", "bounding_box": {"coordinates": [[[-112.079946, 33.029009], [-112.079946, 33.087983], [-111.944584, 33.087983], [-111.944584, 33.029009]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/001b67fd5761210e.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/805380924/1458961138", "description": "just call me sexy lexi", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 804, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713561198978015232/V-Q8Ph4j_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 646, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "805380924", "protected": false, "id": 805380924, "favourites_count": 11737, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexis_robin13", "profile_image_url": "http://pbs.twimg.com/profile_images/713561198978015232/V-Q8Ph4j_normal.jpg", "lang": "en", "created_at": "Wed Sep 05 21:07:46 +0000 2012", "profile_use_background_image": true, "name": "Alexis \u2743", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 18941, "is_translator": false}, "text": "You @AZFyrestorm https://t.co/IiZ8tm4hr3", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471752830750720", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Hootsuite", "contributors": null, "possibly_sensitive": false, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/905363521/1458852674", "description": "The original and official #CheerBook Lionsheadsocial@gmail.com", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 204186, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713105841344393216/pyDb1bKh_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 93, "friends_count": 70796, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "905363521", "protected": false, "id": 905363521, "favourites_count": 62, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "theCheerBook", "profile_image_url": "http://pbs.twimg.com/profile_images/713105841344393216/pyDb1bKh_normal.jpg", "lang": "en", "created_at": "Fri Oct 26 05:31:05 +0000 2012", "profile_use_background_image": true, "name": "CheerBook", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 19961, "is_translator": false}, "text": "When your coach says you need to go full out at the end of practice https://t.co/XSVjiXV3oh", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470320287379460", "id": 716470320287379460, "entities": {"symbols": [], "urls": [{"expanded_url": "http://vine.co/v/iht1b971qxu", "indices": [68, 91], "display_url": "vine.co/v/iht1b971qxu", "url": "https://t.co/XSVjiXV3oh"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471752830750720, "timestamp_ms": "1459655151933", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/thecheerbook/status/716470320287379460", "indices": [18, 41], "display_url": "twitter.com/thecheerbook/s\u2026", "url": "https://t.co/IiZ8tm4hr3"}], "user_mentions": [{"name": "AZ AllStar Fyrestorm", "indices": [4, 16], "id": 1933517317, "screen_name": "AZFyrestorm", "id_str": "1933517317"}], "hashtags": []}, "in_reply_to_user_id": null, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470320287379460, "created_at": "Sun Apr 03 03:45:51 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470320287379460", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/605989316/1458783576", "description": null, "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 323, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714453923449462784/PpHGnlMn_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 256, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "605989316", "protected": false, "id": 605989316, "favourites_count": 1092, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Onlyfeliciti", "profile_image_url": "http://pbs.twimg.com/profile_images/714453923449462784/PpHGnlMn_normal.jpg", "lang": "en", "created_at": "Tue Jun 12 03:52:30 +0000 2012", "profile_use_background_image": true, "name": "\u2651\ufe0f", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 6483, "is_translator": false}, "text": "no one is gonna come at me like that", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471757138321408", "id": 716471757138321408, "timestamp_ms": "1459655152960", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:52 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/9953462/1444065295", "description": "US NAVY VETERAN, PATRIOT, Pixar MacSysEng - Toy Story 1995, Rabid TrumpSUPPORTER! buy a domain from me & Help A Veteran!", "profile_sidebar_border_color": "BDDCAD", "profile_background_tile": false, "profile_background_color": "9AE4E8", "verified": false, "location": "Scottsdale, AZ", "follow_request_sent": null, "followers_count": 16562, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708034569404964864/ht0dEoHg_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 349, "friends_count": 14694, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "9953462", "protected": false, "id": 9953462, "favourites_count": 18795, "profile_sidebar_fill_color": "DDFFCC", "screen_name": "docmurdock", "profile_image_url": "http://pbs.twimg.com/profile_images/708034569404964864/ht0dEoHg_normal.jpg", "lang": "en", "created_at": "Mon Nov 05 02:07:52 +0000 2007", "profile_use_background_image": true, "name": "Michael Murdock", "url": "http://www.makeamericagreat.com", "following": null, "profile_link_color": "FF0000", "statuses_count": 78018, "is_translator": false}, "text": "But MSM won't cover that because it would turn the election completely towards him. #TrumpTrain #VoteTrump #RT https://t.co/TQpQbnh6gN", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471757415145472", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4706270920/1451924409", "description": "I endorse Donald Trump, because he is self funding and has the ability to do what is best for the future of the USA. #MakeAmericaGreatAgain #Trump2016", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 14052, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/684045130047819777/p45nki-P_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 56, "friends_count": 13593, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "4706270920", "protected": false, "id": 4706270920, "favourites_count": 209, "profile_sidebar_fill_color": "000000", "screen_name": "TheGOPReport", "profile_image_url": "http://pbs.twimg.com/profile_images/684045130047819777/p45nki-P_normal.jpg", "lang": "en", "created_at": "Mon Jan 04 16:00:18 +0000 2016", "profile_use_background_image": false, "name": "The GOP Report", "url": null, "following": null, "profile_link_color": "D40000", "statuses_count": 865, "is_translator": false}, "text": "Best thing about Donald Trump and the no drugs/alcohol pledge is he lives that lifestyle & isn't a hypocrite. Kids can learn from his story.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716457841842921472", "id": 716457841842921472, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 02:50:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471757415145472, "timestamp_ms": "1459655153026", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/thegopreport/status/716457841842921472", "indices": [112, 135], "display_url": "twitter.com/thegopreport/s\u2026", "url": "https://t.co/TQpQbnh6gN"}], "user_mentions": [], "hashtags": [{"indices": [84, 95], "text": "TrumpTrain"}, {"indices": [96, 106], "text": "VoteTrump"}, {"indices": [107, 110], "text": "RT"}]}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716457841842921472, "created_at": "Sun Apr 03 03:45:53 +0000 2016", "coordinates": null, "quoted_status_id_str": "716457841842921472", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716471574799392768/pu/vid/180x320/7U_dlg-glsjYACDw.mp4"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716471574799392768/pu/vid/360x640/DL1eHaCtCe2KMvCM.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716471574799392768/pu/pl/8FK1xVNT3pRRVxVz.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716471574799392768/pu/pl/8FK1xVNT3pRRVxVz.m3u8"}], "aspect_ratio": [9, 16], "duration_millis": 7606}, "url": "https://t.co/ecz13zPI8N", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "video", "expanded_url": "http://twitter.com/starlightgav/status/716471760321847296/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716471574799392768/pu/img/UxIYBbsW4cXJ3cFF.jpg", "indices": [60, 83], "id": 716471574799392768, "id_str": "716471574799392768", "display_url": "pic.twitter.com/ecz13zPI8N", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716471574799392768/pu/img/UxIYBbsW4cXJ3cFF.jpg"}]}, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/168182464/1458836687", "description": "we bleed like watercolors and drunken pastels down the stairway", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": false, "profile_background_color": "ACDED6", "verified": false, "location": "they/them", "follow_request_sent": null, "followers_count": 418, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712759089151868929/7hqsS9D4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 15, "friends_count": 822, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "168182464", "protected": false, "id": 168182464, "favourites_count": 15792, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "starlightgav", "profile_image_url": "http://pbs.twimg.com/profile_images/712759089151868929/7hqsS9D4_normal.jpg", "lang": "en", "created_at": "Sun Jul 18 16:43:31 +0000 2010", "profile_use_background_image": true, "name": "buchanan", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 25685, "is_translator": false}, "text": "come throw money at me at pride tomorrow on the dance floor https://t.co/ecz13zPI8N", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471760321847296", "id": 716471760321847296, "timestamp_ms": "1459655153719", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/ecz13zPI8N", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "photo", "expanded_url": "http://twitter.com/starlightgav/status/716471760321847296/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716471574799392768/pu/img/UxIYBbsW4cXJ3cFF.jpg", "indices": [60, 83], "id": 716471574799392768, "id_str": "716471574799392768", "display_url": "pic.twitter.com/ecz13zPI8N", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716471574799392768/pu/img/UxIYBbsW4cXJ3cFF.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3270331556/1459519419", "description": "drhs // stuco", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 257, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716134182703861760/YX2DERIy_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 255, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3270331556", "protected": false, "id": 3270331556, "favourites_count": 721, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "shelsjesus", "profile_image_url": "http://pbs.twimg.com/profile_images/716134182703861760/YX2DERIy_normal.jpg", "lang": "en", "created_at": "Mon Jul 06 20:19:13 +0000 2015", "profile_use_background_image": true, "name": "shels", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 319, "is_translator": false}, "text": "what friends i have !!!! \ud83d\ude44", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471787844861952", "id": 716471787844861952, "timestamp_ms": "1459655160281", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Untappd", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "Live it to the fullest", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Dallas, Tx", "follow_request_sent": null, "followers_count": 411, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428218813/image_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 22, "friends_count": 924, "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Central Time (US & Canada)", "profile_text_color": "000000", "id_str": "41188141", "protected": false, "id": 41188141, "favourites_count": 90, "profile_sidebar_fill_color": "000000", "screen_name": "willr2k", "profile_image_url": "http://pbs.twimg.com/profile_images/1428218813/image_normal.jpg", "lang": "en", "created_at": "Tue May 19 19:27:07 +0000 2009", "profile_use_background_image": false, "name": "William Rogers", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 5968, "is_translator": false}, "text": "Drinking a Stone Enjoy By 04.20.16 IPA by @StoneBrewingCo at @angeltrumpetale \u2014 https://t.co/gpfdJBuMXL", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471798397845505", "id": 716471798397845505, "timestamp_ms": "1459655162797", "entities": {"symbols": [], "urls": [{"expanded_url": "http://untp.beer/s/c295503011", "indices": [80, 103], "display_url": "untp.beer/s/c295503011", "url": "https://t.co/gpfdJBuMXL"}], "user_mentions": [{"name": "Stone Brewing", "indices": [42, 57], "id": 16331259, "screen_name": "StoneBrewingCo", "id_str": "16331259"}, {"name": "Angels Trumpet Ale", "indices": [61, 77], "id": 431828345, "screen_name": "angeltrumpetale", "id_str": "431828345"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:02 +0000 2016", "coordinates": {"coordinates": [-112.072, 33.4571], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4571, -112.072], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/45405970/1450467990", "description": "\u2026.When you think about STYLE, think always \u2026http://www.whatwouldoscardo.com\u2026", "profile_sidebar_border_color": "181A1E", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": "the world", "follow_request_sent": null, "followers_count": 329, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/417819471458234368/0Mw9V_mW_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 301, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "666666", "id_str": "45405970", "protected": false, "id": 45405970, "favourites_count": 238, "profile_sidebar_fill_color": "252429", "screen_name": "oscardelassalas", "profile_image_url": "http://pbs.twimg.com/profile_images/417819471458234368/0Mw9V_mW_normal.jpeg", "lang": "en", "created_at": "Sun Jun 07 19:36:36 +0000 2009", "profile_use_background_image": true, "name": "Oscar De las salas", "url": "http://www.whatwouldoscardo.com", "following": null, "profile_link_color": "2FC2EF", "statuses_count": 1665, "is_translator": false}, "text": "FASHIONISTAS CELEBRATING FASHION...\n- So, we all gathered and we all wanted more fashion, and we\u2026 https://t.co/MtjIi35u5a", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471802864730113", "id": 716471802864730113, "timestamp_ms": "1459655163862", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTg_-tdaD/", "indices": [98, 121], "display_url": "instagram.com/p/BDuTg_-tdaD/", "url": "https://t.co/MtjIi35u5a"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:03 +0000 2016", "coordinates": {"coordinates": [-112.073, 33.46719916], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.46719916, -112.073], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/354344210/1458938756", "description": "relax, it's just sex.\nsnapchat/ig: jamaicaklove | LUTFA |", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "352726", "verified": false, "location": "arizona ", "follow_request_sent": null, "followers_count": 738, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715736794797506560/f1XQp2n4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/703729387833679872/5TS8lxIU.jpg", "default_profile_image": false, "notifications": null, "listed_count": 24, "friends_count": 211, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/703729387833679872/5TS8lxIU.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "354344210", "protected": false, "id": 354344210, "favourites_count": 23798, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "jamaicaklove", "profile_image_url": "http://pbs.twimg.com/profile_images/715736794797506560/f1XQp2n4_normal.jpg", "lang": "en", "created_at": "Sat Aug 13 15:18:44 +0000 2011", "profile_use_background_image": true, "name": "jamaica k. love", "url": null, "following": null, "profile_link_color": "F58EA8", "statuses_count": 32603, "is_translator": false}, "text": "tbh I bet she does but she probably doesn't wanna be on their social media accounts https://t.co/DRwyIRVVj2", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471807155408896", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3431767060/1459448211", "description": "Keeping Michael's legacy alive \n\u2022\nContinuing Janet's conversation...\n\n|Stay true to yourself|", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Michigan, USA", "follow_request_sent": null, "followers_count": 405, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710654117660602368/CpafRxLl_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 325, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3431767060", "protected": false, "id": 3431767060, "favourites_count": 12104, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "DunkNMike17", "profile_image_url": "http://pbs.twimg.com/profile_images/710654117660602368/CpafRxLl_normal.jpg", "lang": "en", "created_at": "Wed Aug 19 16:43:45 +0000 2015", "profile_use_background_image": true, "name": "Dammn Baby is Coming", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 5530, "is_translator": false}, "text": "I feel bad for JTribe. Janet hardly ever spends times with them", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716464856266711040", "id": 716464856266711040, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:18:27 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471807155408896, "timestamp_ms": "1459655164885", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/DunkNMike17/status/716464856266711040", "indices": [84, 107], "display_url": "twitter.com/DunkNMike17/st\u2026", "url": "https://t.co/DRwyIRVVj2"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716464856266711040, "created_at": "Sun Apr 03 03:46:04 +0000 2016", "coordinates": null, "quoted_status_id_str": "716464856266711040", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/ArV9YwQC4E", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/zachlazarus1/status/716471823987122177/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrUrIUUAAZpDn.jpg", "indices": [44, 67], "id": 716471818647785472, "id_str": "716471818647785472", "display_url": "pic.twitter.com/ArV9YwQC4E", "media_url": "http://pbs.twimg.com/media/CfFrUrIUUAAZpDn.jpg"}]}, "place": {"full_name": "Glendale 9 Drive-in", "place_type": "poi", "attributes": {}, "name": "Glendale 9 Drive-in", "country": "United States", "id": "07d9f301bf482000", "bounding_box": {"coordinates": [[[-112.179776, 33.520436], [-112.179776, 33.520436], [-112.179776, 33.520436], [-112.179776, 33.520436]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/07d9f301bf482000.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1753330981/1459117524", "description": "Achieve Greatness... Blessed! Rarest of Hype. WDOA!!!!!!!!! A new Era shall rise... Philosophical~Simple Flow~Family First", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 673, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716171623099838464/USeb3ePp_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 591, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1753330981", "protected": false, "id": 1753330981, "favourites_count": 6649, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "zachlazarus1", "profile_image_url": "http://pbs.twimg.com/profile_images/716171623099838464/USeb3ePp_normal.jpg", "lang": "en", "created_at": "Sat Sep 07 15:47:36 +0000 2013", "profile_use_background_image": true, "name": "Z", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2930, "is_translator": false}, "text": "Classiness among us, you know how we do \u2764\ufe0f\ud83d\udc9b https://t.co/ArV9YwQC4E", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471823987122177", "id": 716471823987122177, "timestamp_ms": "1459655168898", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/ArV9YwQC4E", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/zachlazarus1/status/716471823987122177/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrUrIUUAAZpDn.jpg", "indices": [44, 67], "id": 716471818647785472, "id_str": "716471818647785472", "display_url": "pic.twitter.com/ArV9YwQC4E", "media_url": "http://pbs.twimg.com/media/CfFrUrIUUAAZpDn.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/490854989/1456307281", "description": "Benny from the Block. Future International Sex Symbol.", "profile_sidebar_border_color": "272727", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Zona State \u03a0\u039a\u0391", "follow_request_sent": null, "followers_count": 1325, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701530049128693760/CoBrwqCz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/592782301/x3aa7d5210de344a3a24eef1f3ca089a.jpg", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 876, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/592782301/x3aa7d5210de344a3a24eef1f3ca089a.jpg", "time_zone": "Arizona", "profile_text_color": "B3617B", "id_str": "490854989", "protected": false, "id": 490854989, "favourites_count": 30258, "profile_sidebar_fill_color": "272727", "screen_name": "BenBeenGettinIt", "profile_image_url": "http://pbs.twimg.com/profile_images/701530049128693760/CoBrwqCz_normal.jpg", "lang": "en", "created_at": "Mon Feb 13 00:08:40 +0000 2012", "profile_use_background_image": true, "name": "Benny and The Jets", "url": null, "following": null, "profile_link_color": "897193", "statuses_count": 35434, "is_translator": false}, "text": "I told the bartender mix rum and whatever you have\nFirst one drink, then two then I woke up with you so I know things can't be all that bad", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471835194302467", "id": 716471835194302467, "timestamp_ms": "1459655171570", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716462394914906112", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "38963042", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Goodyear, AZ", "place_type": "city", "attributes": {}, "name": "Goodyear", "country": "United States", "id": "00fae4950337e465", "bounding_box": {"coordinates": [[[-112.508916, 33.317555], [-112.508916, 33.50819], [-112.341035, 33.50819], [-112.341035, 33.317555]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/00fae4950337e465.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2393057700/1453849172", "description": "Huskers,Dolphins,Cubs,and Kurt Busch fan.Still love R.E.M.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Goodyear,AZ ", "follow_request_sent": null, "followers_count": 582, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 32, "friends_count": 590, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2393057700", "protected": false, "id": 2393057700, "favourites_count": 34262, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HunterHusker", "profile_image_url": "http://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "lang": "en", "created_at": "Sun Mar 16 17:44:41 +0000 2014", "profile_use_background_image": true, "name": "Jamie Hunter", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 12152, "is_translator": false}, "text": "@RowdyBun @MargiCulp HAHAHAHA !! Watch it Birthday girl,Margi is gonna work some magic tomorrow.", "retweeted": false, "in_reply_to_screen_name": "RowdyBun", "id_str": "716471854009942016", "id": 716471854009942016, "timestamp_ms": "1459655176056", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Mandy Bullard", "indices": [0, 9], "id": 38963042, "screen_name": "RowdyBun", "id_str": "38963042"}, {"name": "Margi Culp", "indices": [10, 20], "id": 509613642, "screen_name": "MargiCulp", "id_str": "509613642"}], "hashtags": []}, "in_reply_to_user_id": 38963042, "favorite_count": 0, "in_reply_to_status_id": 716462394914906112, "lang": "en", "created_at": "Sun Apr 03 03:46:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/605989316/1458783576", "description": null, "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 323, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714453923449462784/PpHGnlMn_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 256, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "605989316", "protected": false, "id": 605989316, "favourites_count": 1092, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Onlyfeliciti", "profile_image_url": "http://pbs.twimg.com/profile_images/714453923449462784/PpHGnlMn_normal.jpg", "lang": "en", "created_at": "Tue Jun 12 03:52:30 +0000 2012", "profile_use_background_image": true, "name": "\u2651\ufe0f", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 6484, "is_translator": false}, "text": "reasons I have no friends \ud83d\ude05\ud83d\ude05", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471857096962049", "id": 716471857096962049, "timestamp_ms": "1459655176792", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3489035659/1441725806", "description": "I love you like you should love yourself", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 428, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 411, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3489035659", "protected": false, "id": 3489035659, "favourites_count": 5806, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexnderkostas", "profile_image_url": "http://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "lang": "en", "created_at": "Tue Sep 08 04:03:51 +0000 2015", "profile_use_background_image": true, "name": "KOSTAS", "url": "http://losertilldeath.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 11129, "is_translator": false}, "text": "Bro i just need girls who wanna dance land swing other shawtys my way", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471863421972481", "id": 716471863421972481, "timestamp_ms": "1459655178300", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:18 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1967302855/1457582963", "description": "I'm a mermaid", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "arizona", "follow_request_sent": null, "followers_count": 408, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714325295025799168/IjvzsP8c_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096604303/2dc14b562f40be90ce852459d1c59b61.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 259, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096604303/2dc14b562f40be90ce852459d1c59b61.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "1967302855", "protected": false, "id": 1967302855, "favourites_count": 13056, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ohoodiee", "profile_image_url": "http://pbs.twimg.com/profile_images/714325295025799168/IjvzsP8c_normal.jpg", "lang": "en", "created_at": "Thu Oct 17 17:32:37 +0000 2013", "profile_use_background_image": true, "name": "***liv", "url": "http://vsco.co/olivelh", "following": null, "profile_link_color": "0084B4", "statuses_count": 18260, "is_translator": false}, "text": "HAPPY BIRTHDAY TO ONE OF MY BESTEST FRIENDS @SharonCoburn I love youuuuuu \ud83d\ude0d\ud83d\ude0d\ud83c\udf89\ud83c\udf7b\ud83c\udf7e", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471865053552640", "id": 716471865053552640, "timestamp_ms": "1459655178689", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Sharon Coburn", "indices": [44, 57], "id": 313841062, "screen_name": "SharonCoburn", "id_str": "313841062"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:18 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/819999540/1448423042", "description": "transplant IL to AZ #EIU Grad #RebirdNation, otherwise lover of all sports #Chicago, most importantly the #Bears - bleed blue & orange, transfer to my offspring", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe AZ", "follow_request_sent": null, "followers_count": 2107, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/552713055927140352/mjO13-3J_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 19, "friends_count": 2124, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "819999540", "protected": false, "id": 819999540, "favourites_count": 5888, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "coleyhiles1", "profile_image_url": "http://pbs.twimg.com/profile_images/552713055927140352/mjO13-3J_normal.jpeg", "lang": "en", "created_at": "Wed Sep 12 17:31:07 +0000 2012", "profile_use_background_image": true, "name": "Nicole Hiles", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 7950, "is_translator": false}, "text": "https://t.co/qwn89BajVr\nBreaking news: North Carolina beats Syracuse in Final Four, will face Villanova for national title", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471869163982848", "id": 716471869163982848, "timestamp_ms": "1459655179669", "entities": {"symbols": [], "urls": [{"expanded_url": "https://yho.com/16y69z", "indices": [0, 23], "display_url": "yho.com/16y69z", "url": "https://t.co/qwn89BajVr"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:19 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/198693435/1459506091", "description": "az/sc: badgalvalll", "profile_sidebar_border_color": "1F2224", "profile_background_tile": true, "profile_background_color": "7F30B8", "verified": false, "location": "az", "follow_request_sent": null, "followers_count": 516, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714769429075070976/8ez0V-uW_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/594895878/tds4nqb6djqeblmn5vlt.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 378, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/594895878/tds4nqb6djqeblmn5vlt.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "5D1694", "id_str": "198693435", "protected": false, "id": 198693435, "favourites_count": 3764, "profile_sidebar_fill_color": "5BB1E3", "screen_name": "badgalvalll", "profile_image_url": "http://pbs.twimg.com/profile_images/714769429075070976/8ez0V-uW_normal.jpg", "lang": "en", "created_at": "Tue Oct 05 00:25:08 +0000 2010", "profile_use_background_image": true, "name": "val", "url": null, "following": null, "profile_link_color": "050404", "statuses_count": 21236, "is_translator": false}, "text": "I hate going down the explore page on ig and there's videos", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471877149937664", "id": 716471877149937664, "timestamp_ms": "1459655181573", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:21 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716456826049462276", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "437267287", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Goodyear, AZ", "place_type": "city", "attributes": {}, "name": "Goodyear", "country": "United States", "id": "00fae4950337e465", "bounding_box": {"coordinates": [[[-112.508916, 33.317555], [-112.508916, 33.50819], [-112.341035, 33.50819], [-112.341035, 33.317555]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/00fae4950337e465.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/865496430/1453597035", "description": "If you force yourself to go outside, something wonderful always happens.", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 201, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/691094371098189824/7SqSjcGx_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115653070/4d4f89d55b2011a1a589c3238991270d.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 182, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115653070/4d4f89d55b2011a1a589c3238991270d.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "865496430", "protected": false, "id": 865496430, "favourites_count": 4858, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "rico_child", "profile_image_url": "http://pbs.twimg.com/profile_images/691094371098189824/7SqSjcGx_normal.jpg", "lang": "en", "created_at": "Sun Oct 07 00:11:19 +0000 2012", "profile_use_background_image": true, "name": "Amadeus", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 17595, "is_translator": false}, "text": "@KyraKira then let's go", "retweeted": false, "in_reply_to_screen_name": "KyraKira", "id_str": "716471900755533824", "id": 716471900755533824, "timestamp_ms": "1459655187201", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Kyra Espinoza", "indices": [0, 9], "id": 437267287, "screen_name": "KyraKira", "id_str": "437267287"}], "hashtags": []}, "in_reply_to_user_id": 437267287, "favorite_count": 0, "in_reply_to_status_id": 716456826049462276, "lang": "en", "created_at": "Sun Apr 03 03:46:27 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471819738284034", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "404433967", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1056619452/1457772115", "description": "take yo bitch she need some milk.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "618", "follow_request_sent": null, "followers_count": 920, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712890086581350401/5xus69E4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 632, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "1056619452", "protected": false, "id": 1056619452, "favourites_count": 14096, "profile_sidebar_fill_color": "000000", "screen_name": "BradyFHannah", "profile_image_url": "http://pbs.twimg.com/profile_images/712890086581350401/5xus69E4_normal.jpg", "lang": "en", "created_at": "Thu Jan 03 02:05:43 +0000 2013", "profile_use_background_image": false, "name": "BUTTERCUP", "url": null, "following": null, "profile_link_color": "FF0000", "statuses_count": 1908, "is_translator": false}, "text": "@_Freddy4Fingers wut", "retweeted": false, "in_reply_to_screen_name": "_Freddy4Fingers", "id_str": "716471908854661121", "id": 716471908854661121, "timestamp_ms": "1459655189132", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Fr\u00e9ddy The Great", "indices": [0, 16], "id": 404433967, "screen_name": "_Freddy4Fingers", "id_str": "404433967"}], "hashtags": []}, "in_reply_to_user_id": 404433967, "favorite_count": 0, "in_reply_to_status_id": 716471819738284034, "lang": "und", "created_at": "Sun Apr 03 03:46:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471602586722304", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "46739153", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/43603566/1389840761", "description": "Young Trump, Descendant of Uncle Ruckus. Savage Inc. One HELL of a gentleman.", "profile_sidebar_border_color": "323231", "profile_background_tile": false, "profile_background_color": "9A958E", "verified": false, "location": "The Valley ", "follow_request_sent": null, "followers_count": 816, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 46, "friends_count": 342, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "020202", "id_str": "43603566", "protected": false, "id": 43603566, "favourites_count": 161, "profile_sidebar_fill_color": "9A3B25", "screen_name": "blizzardwolf00", "profile_image_url": "http://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "lang": "en", "created_at": "Sat May 30 22:10:06 +0000 2009", "profile_use_background_image": true, "name": "R. Von Hades", "url": "http://AbbasSTRONG.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 205117, "is_translator": false}, "text": "@DroPilot them the type of niggas who'd kidnap children", "retweeted": false, "in_reply_to_screen_name": "DroPilot", "id_str": "716471933085220864", "id": 716471933085220864, "timestamp_ms": "1459655194909", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Dro", "indices": [0, 9], "id": 46739153, "screen_name": "DroPilot", "id_str": "46739153"}], "hashtags": []}, "in_reply_to_user_id": 46739153, "favorite_count": 0, "in_reply_to_status_id": 716471602586722304, "lang": "en", "created_at": "Sun Apr 03 03:46:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3983801716", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/727639952/1458698026", "description": "fried shrimp and chad", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 952, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715695780493795328/L9unEvr6_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 852, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "727639952", "protected": false, "id": 727639952, "favourites_count": 35848, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "leandra_thal", "profile_image_url": "http://pbs.twimg.com/profile_images/715695780493795328/L9unEvr6_normal.jpg", "lang": "en", "created_at": "Tue Jul 31 05:24:06 +0000 2012", "profile_use_background_image": true, "name": "sad \u2113\u0454", "url": "http://goodgriefgoodband.com", "following": null, "profile_link_color": "009999", "statuses_count": 38248, "is_translator": false}, "text": "@GriffKirran HAHAHAHAHA https://t.co/5NXaoEIyPX", "retweeted": false, "in_reply_to_screen_name": "GriffKirran", "id_str": "716471941654192128", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1468571624/1431537219", "description": "DM SUBMISSIONS FOR POSTING", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "FFFFFF", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 546348, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/598536595361243136/QTQ5XO06_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 509, "friends_count": 0, "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Central Time (US & Canada)", "profile_text_color": "333333", "id_str": "1468571624", "protected": false, "id": 1468571624, "favourites_count": 3, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "heyifeellike", "profile_image_url": "http://pbs.twimg.com/profile_images/598536595361243136/QTQ5XO06_normal.jpg", "lang": "en", "created_at": "Thu May 30 00:26:57 +0000 2013", "profile_use_background_image": false, "name": "i feel like", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 7495, "is_translator": false}, "text": "Growing up with siblings in 6 seconds https://t.co/q82NDm8wcc", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470294198652938", "id": 716470294198652938, "entities": {"symbols": [], "urls": [{"expanded_url": "https://vine.co/v/e6TngaX1egQ", "indices": [38, 61], "display_url": "vine.co/v/e6TngaX1egQ", "url": "https://t.co/q82NDm8wcc"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:40:04 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471941654192128, "timestamp_ms": "1459655196952", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/heyifeellike/status/716470294198652938", "indices": [25, 48], "display_url": "twitter.com/heyifeellike/s\u2026", "url": "https://t.co/5NXaoEIyPX"}], "user_mentions": [{"name": "Kirran Griff", "indices": [0, 12], "id": 3983801716, "screen_name": "GriffKirran", "id_str": "3983801716"}], "hashtags": []}, "in_reply_to_user_id": 3983801716, "lang": "tl", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470294198652938, "created_at": "Sun Apr 03 03:46:36 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470294198652938", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471754105888768", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2224515062", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3322675482/1459655177", "description": "WCHS", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "with my nigga cewa ", "follow_request_sent": null, "followers_count": 88, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716471864378281985/8GpMKhOP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 64, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "3322675482", "protected": false, "id": 3322675482, "favourites_count": 485, "profile_sidebar_fill_color": "000000", "screen_name": "almada_stella", "profile_image_url": "http://pbs.twimg.com/profile_images/716471864378281985/8GpMKhOP_normal.jpg", "lang": "en", "created_at": "Fri Aug 21 20:51:53 +0000 2015", "profile_use_background_image": false, "name": "Stella", "url": null, "following": null, "profile_link_color": "89C9FA", "statuses_count": 760, "is_translator": false}, "text": "@DuranIssak want me to tell yo daddy?", "retweeted": false, "in_reply_to_screen_name": "DuranIssak", "id_str": "716471944208453632", "id": 716471944208453632, "timestamp_ms": "1459655197561", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "ISSAK_DURAN", "indices": [0, 11], "id": 2224515062, "screen_name": "DuranIssak", "id_str": "2224515062"}], "hashtags": []}, "in_reply_to_user_id": 2224515062, "favorite_count": 0, "in_reply_to_status_id": 716471754105888768, "lang": "en", "created_at": "Sun Apr 03 03:46:37 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Queen Creek, AZ", "place_type": "city", "attributes": {}, "name": "Queen Creek", "country": "United States", "id": "01cb573821d94344", "bounding_box": {"coordinates": [[[-111.686314, 33.196614], [-111.686314, 33.288127], [-111.582748, 33.288127], [-111.582748, 33.196614]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/01cb573821d94344.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/319337902/1459654972", "description": "hhs varsity & azac swim", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1268, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716471004319453184/UhdsPBAm_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/736173920/987ce129c2e6e21625d264c649438555.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 798, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/736173920/987ce129c2e6e21625d264c649438555.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "319337902", "protected": false, "id": 319337902, "favourites_count": 35082, "profile_sidebar_fill_color": "F50C0C", "screen_name": "emileesherwood", "profile_image_url": "http://pbs.twimg.com/profile_images/716471004319453184/UhdsPBAm_normal.jpg", "lang": "en", "created_at": "Fri Jun 17 23:26:48 +0000 2011", "profile_use_background_image": true, "name": "emilee", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 7881, "is_translator": false}, "text": "you hit me w the reads 24/7 https://t.co/ot6xLro4es", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471953851199488", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2224401906/1458230792", "description": "I don't have friends", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "rattpack", "follow_request_sent": null, "followers_count": 541, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/698747248922865665/7yHva0MT_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 428, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2224401906", "protected": false, "id": 2224401906, "favourites_count": 8255, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "davin2699", "profile_image_url": "http://pbs.twimg.com/profile_images/698747248922865665/7yHva0MT_normal.jpg", "lang": "en", "created_at": "Sun Dec 01 07:16:16 +0000 2013", "profile_use_background_image": true, "name": "davin", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4782, "is_translator": false}, "text": "If you would like to be friends let's talk!", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716460159854206976", "id": 716460159854206976, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 02:59:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716471953851199488, "timestamp_ms": "1459655199860", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/davin2699/status/716460159854206976", "indices": [28, 51], "display_url": "twitter.com/davin2699/stat\u2026", "url": "https://t.co/ot6xLro4es"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716460159854206976, "created_at": "Sun Apr 03 03:46:39 +0000 2016", "coordinates": null, "quoted_status_id_str": "716460159854206976", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2206420603", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Apache Junction, AZ", "place_type": "city", "attributes": {}, "name": "Apache Junction", "country": "United States", "id": "bf09d4c99c2d845c", "bounding_box": {"coordinates": [[[-111.587098, 33.378739], [-111.587098, 33.465988], [-111.469058, 33.465988], [-111.469058, 33.378739]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/bf09d4c99c2d845c.json"}, "is_quote_status": false, "user": {"description": "recording artist here at f.l.i.p ent cool down to earth dude ready for the world also an A&R for CTE records and Tranzformaz Music Group artist", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Warrensville Heights, Ohio", "follow_request_sent": null, "followers_count": 1415, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/699408170406400000/xj1nIxIz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/539967786/tired_of_catchin_them_on_the_rebound.jpg", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 1595, "utc_offset": -10800, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/539967786/tired_of_catchin_them_on_the_rebound.jpg", "time_zone": "Atlantic Time (Canada)", "profile_text_color": "333333", "id_str": "131899549", "protected": false, "id": 131899549, "favourites_count": 73, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "lanskyy1mill", "profile_image_url": "http://pbs.twimg.com/profile_images/699408170406400000/xj1nIxIz_normal.jpg", "lang": "en", "created_at": "Sun Apr 11 17:49:08 +0000 2010", "profile_use_background_image": true, "name": "lanskyy1mill", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 5907, "is_translator": false}, "text": "@Wentworth is the best show out @HillaryClinton need to get some Bae Smith in her", "retweeted": false, "in_reply_to_screen_name": "Wentworth", "id_str": "716471957525385216", "id": 716471957525385216, "timestamp_ms": "1459655200736", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Wentworth", "indices": [0, 10], "id": 2206420603, "screen_name": "Wentworth", "id_str": "2206420603"}, {"name": "Hillary Clinton", "indices": [32, 47], "id": 1339835893, "screen_name": "HillaryClinton", "id_str": "1339835893"}], "hashtags": []}, "in_reply_to_user_id": 2206420603, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:40 +0000 2016", "coordinates": {"coordinates": [-111.5366759, 33.3887541], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.3887541, -111.5366759], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3001805556/1459434920", "description": "I'm probably whiter than you", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "srhs", "follow_request_sent": null, "followers_count": 209, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714304458423988224/w_gBj0-O_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 447, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "3001805556", "protected": false, "id": 3001805556, "favourites_count": 1410, "profile_sidebar_fill_color": "000000", "screen_name": "emily_zaucha", "profile_image_url": "http://pbs.twimg.com/profile_images/714304458423988224/w_gBj0-O_normal.jpg", "lang": "en", "created_at": "Thu Jan 29 17:46:44 +0000 2015", "profile_use_background_image": false, "name": "em", "url": null, "following": null, "profile_link_color": "89C9FA", "statuses_count": 3078, "is_translator": false}, "text": "I just had Lucky Charms for dinner and I have no regrets", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471961438715904", "id": 716471961438715904, "timestamp_ms": "1459655201669", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/RFmL3d7GJo", "sizes": {"large": {"w": 577, "resize": "fit", "h": 1024}, "small": {"w": 340, "resize": "fit", "h": 603}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 577, "resize": "fit", "h": 1024}}, "type": "photo", "expanded_url": "http://twitter.com/jaciromney/status/716471964408283137/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrV_ZUsAAlEaS.jpg", "indices": [51, 74], "id": 716471841267691520, "id_str": "716471841267691520", "display_url": "pic.twitter.com/RFmL3d7GJo", "media_url": "http://pbs.twimg.com/media/CfFrV_ZUsAAlEaS.jpg"}]}, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/376538917/1458879223", "description": "(Pronounced 'Jackie') WFHS Junior// Cleopatra// Instagram: @jaciromney keke is my best friend", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 139, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713218087009394689/y5ZyLl93_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 179, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "376538917", "protected": false, "id": 376538917, "favourites_count": 993, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jaciromney", "profile_image_url": "http://pbs.twimg.com/profile_images/713218087009394689/y5ZyLl93_normal.jpg", "lang": "en", "created_at": "Tue Sep 20 02:08:15 +0000 2011", "profile_use_background_image": true, "name": "Jaci Romney", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 675, "is_translator": false}, "text": "Great time at women's day with my beautiful mother https://t.co/RFmL3d7GJo", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471964408283137", "id": 716471964408283137, "timestamp_ms": "1459655202377", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/RFmL3d7GJo", "sizes": {"large": {"w": 577, "resize": "fit", "h": 1024}, "small": {"w": 340, "resize": "fit", "h": 603}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 577, "resize": "fit", "h": 1024}}, "type": "photo", "expanded_url": "http://twitter.com/jaciromney/status/716471964408283137/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrV_ZUsAAlEaS.jpg", "indices": [51, 74], "id": 716471841267691520, "id_str": "716471841267691520", "display_url": "pic.twitter.com/RFmL3d7GJo", "media_url": "http://pbs.twimg.com/media/CfFrV_ZUsAAlEaS.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2566065809/1459180850", "description": "KASH XAVIER", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 373, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711322188213653505/EB3uoy5-_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652239927535517696/GtspBHXZ.jpg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 101, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652239927535517696/GtspBHXZ.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "2566065809", "protected": false, "id": 2566065809, "favourites_count": 2880, "profile_sidebar_fill_color": "000000", "screen_name": "LILPIMPB", "profile_image_url": "http://pbs.twimg.com/profile_images/711322188213653505/EB3uoy5-_normal.jpg", "lang": "en", "created_at": "Mon May 26 23:00:44 +0000 2014", "profile_use_background_image": true, "name": "BAYLEE", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 11209, "is_translator": false}, "text": "GOT DAMM ITS A BEAUTIFUL NIGHT", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471972511657985", "id": 716471972511657985, "timestamp_ms": "1459655204309", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:44 +0000 2016", "coordinates": {"coordinates": [-112.1489779, 33.4638036], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4638036, -112.1489779], "type": "Point"}}, {"in_reply_to_status_id_str": "716402836670705664", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "37273696", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/25133126/1381889675", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "NYC/AZ/Raccoon City", "follow_request_sent": null, "followers_count": 68, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000602999648/fb2017220b81c22f97f4e03d47b43ccb_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/66864840/RE5GEMainVisual1.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 600, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/66864840/RE5GEMainVisual1.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "25133126", "protected": false, "id": 25133126, "favourites_count": 101, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Brr212", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000602999648/fb2017220b81c22f97f4e03d47b43ccb_normal.jpeg", "lang": "en", "created_at": "Wed Mar 18 19:20:27 +0000 2009", "profile_use_background_image": true, "name": "William Vella", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3720, "is_translator": false}, "text": "@jfaaabs poor sweet Jenna *hugs*", "retweeted": false, "in_reply_to_screen_name": "jfaaabs", "id_str": "716471981445545984", "id": 716471981445545984, "timestamp_ms": "1459655206439", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Princess Jenna\u2728", "indices": [0, 8], "id": 37273696, "screen_name": "jfaaabs", "id_str": "37273696"}], "hashtags": []}, "in_reply_to_user_id": 37273696, "favorite_count": 0, "in_reply_to_status_id": 716402836670705664, "lang": "en", "created_at": "Sun Apr 03 03:46:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/43603566/1389840761", "description": "Young Trump, Descendant of Uncle Ruckus. Savage Inc. One HELL of a gentleman.", "profile_sidebar_border_color": "323231", "profile_background_tile": false, "profile_background_color": "9A958E", "verified": false, "location": "The Valley ", "follow_request_sent": null, "followers_count": 816, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 46, "friends_count": 342, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "020202", "id_str": "43603566", "protected": false, "id": 43603566, "favourites_count": 161, "profile_sidebar_fill_color": "9A3B25", "screen_name": "blizzardwolf00", "profile_image_url": "http://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "lang": "en", "created_at": "Sat May 30 22:10:06 +0000 2009", "profile_use_background_image": true, "name": "R. Von Hades", "url": "http://AbbasSTRONG.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 205118, "is_translator": false}, "text": "Who's Krystal?", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471983748227072", "id": 716471983748227072, "timestamp_ms": "1459655206988", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:46:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/484489932/1441775256", "description": "The brave do not live forever but the cautious do not live at all", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 78, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/668229628843065344/roalj3ds_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/858653281/fa8f96c248b7dc8e0c2b3c9214458c66.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 135, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/858653281/fa8f96c248b7dc8e0c2b3c9214458c66.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "484489932", "protected": false, "id": 484489932, "favourites_count": 886, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "katienachtigall", "profile_image_url": "http://pbs.twimg.com/profile_images/668229628843065344/roalj3ds_normal.jpg", "lang": "en", "created_at": "Mon Feb 06 05:08:20 +0000 2012", "profile_use_background_image": true, "name": "Katie Nachtigall", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 2299, "is_translator": false}, "text": "Just ordered the cutest shirt! It was on mega sale too! \ud83c\udf89", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471991281135616", "id": 716471991281135616, "timestamp_ms": "1459655208784", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471893650345984", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "446658190", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/479968640/1448352188", "description": null, "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "141111", "verified": false, "location": "United States", "follow_request_sent": null, "followers_count": 419, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 356, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "479968640", "protected": false, "id": 479968640, "favourites_count": 7138, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "charliboyy_963", "profile_image_url": "http://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "lang": "en", "created_at": "Wed Feb 01 00:00:53 +0000 2012", "profile_use_background_image": true, "name": "\u267f\u2122M3_963", "url": null, "following": null, "profile_link_color": "990000", "statuses_count": 18123, "is_translator": false}, "text": "@ProdaJayy2296 they are cool it's gonna be a good time", "retweeted": false, "in_reply_to_screen_name": "ProdaJayy2296", "id_str": "716472016233058304", "id": 716472016233058304, "timestamp_ms": "1459655214733", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Caleb De Jesus", "indices": [0, 14], "id": 446658190, "screen_name": "ProdaJayy2296", "id_str": "446658190"}], "hashtags": []}, "in_reply_to_user_id": 446658190, "favorite_count": 0, "in_reply_to_status_id": 716471893650345984, "lang": "en", "created_at": "Sun Apr 03 03:46:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/544923615/1459556786", "description": "I take a lot of pride in my dog", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "i just really miss clare ", "follow_request_sent": null, "followers_count": 670, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714668951918223362/T5DGa2Ww_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/495123792/TPhoto_00040.jpg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 617, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/495123792/TPhoto_00040.jpg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "544923615", "protected": false, "id": 544923615, "favourites_count": 12137, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "KaceyRegester", "profile_image_url": "http://pbs.twimg.com/profile_images/714668951918223362/T5DGa2Ww_normal.jpg", "lang": "en", "created_at": "Wed Apr 04 04:38:39 +0000 2012", "profile_use_background_image": true, "name": "kace", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 14189, "is_translator": false}, "text": "Apparently I'm a spoiled brat bc my dad is hiring me? \ud83d\ude42 lolololololol", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472027515736064", "id": 716472027515736064, "timestamp_ms": "1459655217423", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1001971645/1456406575", "description": "Professional procrastinator that sometimes plays soccer", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "FC051A", "verified": false, "location": "Wausau, WI", "follow_request_sent": null, "followers_count": 79, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/702846238237048832/AbbQLvGz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 102, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "time_zone": null, "profile_text_color": "333333", "id_str": "1001971645", "protected": false, "id": 1001971645, "favourites_count": 435, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "bart_zoe", "profile_image_url": "http://pbs.twimg.com/profile_images/702846238237048832/AbbQLvGz_normal.jpg", "lang": "en", "created_at": "Mon Dec 10 16:05:39 +0000 2012", "profile_use_background_image": true, "name": "Zoe Bartishofski", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 177, "is_translator": false}, "text": "This 2 hour time difference in AZ is gonna kill me waking up for zero hour monday morning \ud83d\ude15", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472030581751808", "id": 716472030581751808, "timestamp_ms": "1459655218154", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:58 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3531582373/1459641898", "description": "#lilmamis4lyfe + #str", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 611, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716416490879078400/_862ZyXm_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 383, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3531582373", "protected": false, "id": 3531582373, "favourites_count": 45009, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "sierra__wagner", "profile_image_url": "http://pbs.twimg.com/profile_images/716416490879078400/_862ZyXm_normal.jpg", "lang": "en", "created_at": "Fri Sep 11 22:59:41 +0000 2015", "profile_use_background_image": true, "name": "trippy barbie", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3168, "is_translator": false}, "text": "I can make it till the 20th", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472033450729472", "id": 716472033450729472, "timestamp_ms": "1459655218838", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:58 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/408591044/1393282635", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona", "follow_request_sent": null, "followers_count": 224, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/694785085195694080/x8xboMq5_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 255, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "408591044", "protected": false, "id": 408591044, "favourites_count": 4555, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Emery1101", "profile_image_url": "http://pbs.twimg.com/profile_images/694785085195694080/x8xboMq5_normal.jpg", "lang": "en", "created_at": "Wed Nov 09 16:39:06 +0000 2011", "profile_use_background_image": true, "name": "Michael Emery Smith", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 5892, "is_translator": false}, "text": "When the softball girls yelled \"you hit it, you get it\" and Aaron and I just looked at them and laughed! \ud83d\ude02\ud83d\ude02\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472046595616769", "id": 716472046595616769, "timestamp_ms": "1459655221972", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471700955668480", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2475440646", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Goodyear, AZ", "place_type": "city", "attributes": {}, "name": "Goodyear", "country": "United States", "id": "00fae4950337e465", "bounding_box": {"coordinates": [[[-112.508916, 33.317555], [-112.508916, 33.50819], [-112.341035, 33.50819], [-112.341035, 33.317555]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/00fae4950337e465.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2393057700/1453849172", "description": "Huskers,Dolphins,Cubs,and Kurt Busch fan.Still love R.E.M.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Goodyear,AZ ", "follow_request_sent": null, "followers_count": 582, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 32, "friends_count": 590, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2393057700", "protected": false, "id": 2393057700, "favourites_count": 34263, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HunterHusker", "profile_image_url": "http://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "lang": "en", "created_at": "Sun Mar 16 17:44:41 +0000 2014", "profile_use_background_image": true, "name": "Jamie Hunter", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 12153, "is_translator": false}, "text": "@IHopeDavis if I never see snow or ice again I'll die a happy man.", "retweeted": false, "in_reply_to_screen_name": "IHopeDavis", "id_str": "716472055286226944", "id": 716472055286226944, "timestamp_ms": "1459655224044", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Hope", "indices": [0, 11], "id": 2475440646, "screen_name": "IHopeDavis", "id_str": "2475440646"}], "hashtags": []}, "in_reply_to_user_id": 2475440646, "favorite_count": 0, "in_reply_to_status_id": 716471700955668480, "lang": "en", "created_at": "Sun Apr 03 03:47:04 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/dWTX8oG5XV", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/SarayaDaniella/status/716472060176797696/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFriLWUkAIcep8.jpg", "indices": [40, 63], "id": 716472050634756098, "id_str": "716472050634756098", "display_url": "pic.twitter.com/dWTX8oG5XV", "media_url": "http://pbs.twimg.com/media/CfFriLWUkAIcep8.jpg"}]}, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4606827140/1459141115", "description": "Baby boy you gotta be the dopest.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 169, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713903489269805056/-_aJFfz4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 146, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "4606827140", "protected": false, "id": 4606827140, "favourites_count": 1739, "profile_sidebar_fill_color": "000000", "screen_name": "SarayaDaniella", "profile_image_url": "http://pbs.twimg.com/profile_images/713903489269805056/-_aJFfz4_normal.jpg", "lang": "en", "created_at": "Sat Dec 19 22:20:34 +0000 2015", "profile_use_background_image": false, "name": "Saraya Burrell\u2600\ufe0f", "url": "https://www.instagram.com/saraya.daniella/", "following": null, "profile_link_color": "89C9FA", "statuses_count": 813, "is_translator": false}, "text": "I hated the dress but I loved the boy \ud83d\udc9e https://t.co/dWTX8oG5XV", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472060176797696", "id": 716472060176797696, "timestamp_ms": "1459655225210", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/dWTX8oG5XV", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/SarayaDaniella/status/716472060176797696/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFriLWUkAIcep8.jpg", "indices": [40, 63], "id": 716472050634756098, "id_str": "716472050634756098", "display_url": "pic.twitter.com/dWTX8oG5XV", "media_url": "http://pbs.twimg.com/media/CfFriLWUkAIcep8.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2957945676/1459323106", "description": "Insta: @dcruzdc5 | Snapchat: dcruz.dc5 | Radiology Major, Biology Minor | Always shredding | boardboiz", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "New Mexico", "follow_request_sent": null, "followers_count": 375, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/684731054633058305/mNhAB0Ph_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 281, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2957945676", "protected": false, "id": 2957945676, "favourites_count": 1869, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "DonaldCruz_", "profile_image_url": "http://pbs.twimg.com/profile_images/684731054633058305/mNhAB0Ph_normal.jpg", "lang": "en", "created_at": "Sun Jan 04 04:39:46 +0000 2015", "profile_use_background_image": true, "name": "The Don ", "url": "http://www.teamhybrid.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 4086, "is_translator": false}, "text": "I'm loving these Phoenix vides \ud83d\udd25", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472064383660032", "id": 716472064383660032, "timestamp_ms": "1459655226213", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:06 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2842050427/1459546028", "description": "AZ\u27a1\ufe0fUT snapchat: bryleewrightt insta: Brylee_wright15", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 254, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708044320314490881/4Ulj4gZa_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 325, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2842050427", "protected": false, "id": 2842050427, "favourites_count": 2199, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "wright_brylee", "profile_image_url": "http://pbs.twimg.com/profile_images/708044320314490881/4Ulj4gZa_normal.jpg", "lang": "en", "created_at": "Mon Oct 06 05:38:47 +0000 2014", "profile_use_background_image": true, "name": "Brylee wright", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8470, "is_translator": false}, "text": "I'm concerned as to why @ayoopowers jumped in a lake fully clothed \ud83d\ude02\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472070800998400", "id": 716472070800998400, "timestamp_ms": "1459655227743", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "DP. KICK ROCKS", "indices": [24, 35], "id": 1656839736, "screen_name": "ayoopowers", "id_str": "1656839736"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716468236330504193", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "75174517", "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/TFEn4lI6Zv", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 500, "resize": "fit", "h": 500}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 500, "resize": "fit", "h": 500}}, "type": "photo", "expanded_url": "http://twitter.com/Sirodbcollie/status/716472078954684416/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrjtKVIAAenHi.jpg", "indices": [27, 50], "id": 716472076891136000, "id_str": "716472076891136000", "display_url": "pic.twitter.com/TFEn4lI6Zv", "media_url": "http://pbs.twimg.com/media/CfFrjtKVIAAenHi.jpg"}, {"url": "https://t.co/TFEn4lI6Zv", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 784, "resize": "fit", "h": 784}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/Sirodbcollie/status/716472078954684416/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrjy1UYAAVd47.jpg", "indices": [27, 50], "id": 716472078413619200, "id_str": "716472078413619200", "display_url": "pic.twitter.com/TFEn4lI6Zv", "media_url": "http://pbs.twimg.com/media/CfFrjy1UYAAVd47.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/43489263/1457475300", "description": "Hi and welcome to my tweet of art, pictuer of my pets and friends also with my bf @rygerfrost.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 3543, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716320678178205696/GG293o2p_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 47, "friends_count": 526, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "43489263", "protected": false, "id": 43489263, "favourites_count": 2793, "profile_sidebar_fill_color": "000000", "screen_name": "Sirodbcollie", "profile_image_url": "http://pbs.twimg.com/profile_images/716320678178205696/GG293o2p_normal.jpg", "lang": "en", "created_at": "Sat May 30 05:47:54 +0000 2009", "profile_use_background_image": false, "name": "SiRoD", "url": "http://www.furaffinity.net/user/sirod/", "following": null, "profile_link_color": "F58EA8", "statuses_count": 46069, "is_translator": false}, "text": "@Rygerfrost @blue_bat_butt https://t.co/TFEn4lI6Zv", "retweeted": false, "in_reply_to_screen_name": "Rygerfrost", "id_str": "716472078954684416", "id": 716472078954684416, "timestamp_ms": "1459655229687", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Ryger", "indices": [0, 11], "id": 75174517, "screen_name": "Rygerfrost", "id_str": "75174517"}, {"name": "Batopia", "indices": [12, 26], "id": 203204547, "screen_name": "blue_bat_butt", "id_str": "203204547"}], "hashtags": [], "media": [{"url": "https://t.co/TFEn4lI6Zv", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 500, "resize": "fit", "h": 500}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 500, "resize": "fit", "h": 500}}, "type": "photo", "expanded_url": "http://twitter.com/Sirodbcollie/status/716472078954684416/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrjtKVIAAenHi.jpg", "indices": [27, 50], "id": 716472076891136000, "id_str": "716472076891136000", "display_url": "pic.twitter.com/TFEn4lI6Zv", "media_url": "http://pbs.twimg.com/media/CfFrjtKVIAAenHi.jpg"}]}, "in_reply_to_user_id": 75174517, "favorite_count": 0, "in_reply_to_status_id": 716468236330504193, "lang": "und", "created_at": "Sun Apr 03 03:47:09 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471365709201410", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "48403031", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/284617616/1457152355", "description": "Photo / Cinema | Travel | Dreams | IG: @jbillzphotos", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Las Vegas", "follow_request_sent": null, "followers_count": 2475, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/633127394174353408/kILHfebZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 1318, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "284617616", "protected": false, "id": 284617616, "favourites_count": 7635, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JbillzPhotos", "profile_image_url": "http://pbs.twimg.com/profile_images/633127394174353408/kILHfebZ_normal.jpg", "lang": "en", "created_at": "Tue Apr 19 16:35:54 +0000 2011", "profile_use_background_image": true, "name": "JAY TR!LLZ", "url": "http://www.jordanbillings.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 17684, "is_translator": false}, "text": "@iamjacknovak JUST DO IT", "retweeted": false, "in_reply_to_screen_name": "iamjacknovak", "id_str": "716472082041733121", "id": 716472082041733121, "timestamp_ms": "1459655230423", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "jack novak", "indices": [0, 13], "id": 48403031, "screen_name": "iamjacknovak", "id_str": "48403031"}], "hashtags": []}, "in_reply_to_user_id": 48403031, "favorite_count": 0, "in_reply_to_status_id": 716471365709201410, "lang": "en", "created_at": "Sun Apr 03 03:47:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471964349501440", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2235437918", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/745628858/1459522441", "description": "smile & wave boys", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 519, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715036210708742144/gd-gc0eg_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 396, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "745628858", "protected": false, "id": 745628858, "favourites_count": 8095, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "AllieRich7", "profile_image_url": "http://pbs.twimg.com/profile_images/715036210708742144/gd-gc0eg_normal.jpg", "lang": "en", "created_at": "Wed Aug 08 17:41:50 +0000 2012", "profile_use_background_image": true, "name": "al", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 15486, "is_translator": false}, "text": "@matttie_jonesss LEAVE ME ALONE", "retweeted": false, "in_reply_to_screen_name": "matttie_jonesss", "id_str": "716472093320171521", "id": 716472093320171521, "timestamp_ms": "1459655233112", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Mattie Jones", "indices": [0, 16], "id": 2235437918, "screen_name": "matttie_jonesss", "id_str": "2235437918"}], "hashtags": []}, "in_reply_to_user_id": 2235437918, "favorite_count": 0, "in_reply_to_status_id": 716471964349501440, "lang": "en", "created_at": "Sun Apr 03 03:47:13 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/258407245/1353522828", "description": "George Mason grad, formerly of Fox Sports in LA now CSN & MASN in DC, Go Caps Go - Natitude!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Washington, DC", "follow_request_sent": null, "followers_count": 384, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/528736871116189696/goF6hJm0_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 1070, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "258407245", "protected": false, "id": 258407245, "favourites_count": 1919, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "millerpenaltybx", "profile_image_url": "http://pbs.twimg.com/profile_images/528736871116189696/goF6hJm0_normal.jpeg", "lang": "en", "created_at": "Sun Feb 27 17:17:09 +0000 2011", "profile_use_background_image": true, "name": "Adam Miller", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 894, "is_translator": false}, "text": "Caps 11 scoring chances in 2nd per & allowed only 4 chances. 46 shot attempts for Caps overall & 33 for AZ #CapitalsTalk @MayHockeyCSN", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472101880737792", "id": 716472101880737792, "timestamp_ms": "1459655235153", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Alan May", "indices": [129, 142], "id": 200229705, "screen_name": "MayHockeyCSN", "id_str": "200229705"}], "hashtags": [{"indices": [115, 128], "text": "CapitalsTalk"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:15 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/B5WpvVuRP6", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/69Kirsten/status/716472105940832256/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrlF9UUAEodfo.jpg", "indices": [20, 43], "id": 716472100727312385, "id_str": "716472100727312385", "display_url": "pic.twitter.com/B5WpvVuRP6", "media_url": "http://pbs.twimg.com/media/CfFrlF9UUAEodfo.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330257354/1456204913", "description": "boppin to the top", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona State", "follow_request_sent": null, "followers_count": 432, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/694809864715931648/i1iEVDF2_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 407, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1330257354", "protected": false, "id": 1330257354, "favourites_count": 3589, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "69Kirsten", "profile_image_url": "http://pbs.twimg.com/profile_images/694809864715931648/i1iEVDF2_normal.jpg", "lang": "en", "created_at": "Fri Apr 05 23:28:29 +0000 2013", "profile_use_background_image": true, "name": "\u2654 Kirsten \u2654", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 27990, "is_translator": false}, "text": "I like to annoy him https://t.co/B5WpvVuRP6", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472105940832256", "id": 716472105940832256, "timestamp_ms": "1459655236121", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/B5WpvVuRP6", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/69Kirsten/status/716472105940832256/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrlF9UUAEodfo.jpg", "indices": [20, 43], "id": 716472100727312385, "id_str": "716472100727312385", "display_url": "pic.twitter.com/B5WpvVuRP6", "media_url": "http://pbs.twimg.com/media/CfFrlF9UUAEodfo.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716468871843057664", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "89625496", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/551362817/1456263254", "description": "I'm probably thinking about French Fries. Go Lopes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 646, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708876720489701380/N-ZzEvBq_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 478, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "551362817", "protected": false, "id": 551362817, "favourites_count": 5876, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "EmilySanda", "profile_image_url": "http://pbs.twimg.com/profile_images/708876720489701380/N-ZzEvBq_normal.jpg", "lang": "en", "created_at": "Wed Apr 11 22:20:07 +0000 2012", "profile_use_background_image": true, "name": "Emily Sanda", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 11195, "is_translator": false}, "text": "@AZHomeExperts4u \ud83d\udc9b\ud83d\udc9b\ud83d\udc9b", "retweeted": false, "in_reply_to_screen_name": "AZHomeExperts4u", "id_str": "716472107870228480", "id": 716472107870228480, "timestamp_ms": "1459655236581", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Anita Sanda", "indices": [0, 16], "id": 89625496, "screen_name": "AZHomeExperts4u", "id_str": "89625496"}], "hashtags": []}, "in_reply_to_user_id": 89625496, "favorite_count": 0, "in_reply_to_status_id": 716468871843057664, "lang": "und", "created_at": "Sun Apr 03 03:47:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471385871093761", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3427742659", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3322675482/1459655177", "description": "WCHS", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "with my nigga cewa ", "follow_request_sent": null, "followers_count": 88, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716471864378281985/8GpMKhOP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 64, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "3322675482", "protected": false, "id": 3322675482, "favourites_count": 485, "profile_sidebar_fill_color": "000000", "screen_name": "almada_stella", "profile_image_url": "http://pbs.twimg.com/profile_images/716471864378281985/8GpMKhOP_normal.jpg", "lang": "en", "created_at": "Fri Aug 21 20:51:53 +0000 2015", "profile_use_background_image": false, "name": "Stella", "url": null, "following": null, "profile_link_color": "89C9FA", "statuses_count": 761, "is_translator": false}, "text": "@s_kylahrae he got a hair cut for me \ud83d\ude0d", "retweeted": false, "in_reply_to_screen_name": "s_kylahrae", "id_str": "716472116640505856", "id": 716472116640505856, "timestamp_ms": "1459655238672", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Kylah Scott", "indices": [0, 11], "id": 3427742659, "screen_name": "s_kylahrae", "id_str": "3427742659"}], "hashtags": []}, "in_reply_to_user_id": 3427742659, "favorite_count": 0, "in_reply_to_status_id": 716471385871093761, "lang": "en", "created_at": "Sun Apr 03 03:47:18 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471989708259329", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "216198230", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3489035659/1441725806", "description": "I love you like you should love yourself", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 428, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 411, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3489035659", "protected": false, "id": 3489035659, "favourites_count": 5807, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexnderkostas", "profile_image_url": "http://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "lang": "en", "created_at": "Tue Sep 08 04:03:51 +0000 2015", "profile_use_background_image": true, "name": "KOSTAS", "url": "http://losertilldeath.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 11132, "is_translator": false}, "text": "@moexmarley you'll understand bro one day smh Scottsdale really the move tho hahaha", "retweeted": false, "in_reply_to_screen_name": "moexmarley", "id_str": "716472124106354688", "id": 716472124106354688, "timestamp_ms": "1459655240452", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Stoney Boloney", "indices": [0, 11], "id": 216198230, "screen_name": "moexmarley", "id_str": "216198230"}], "hashtags": []}, "in_reply_to_user_id": 216198230, "favorite_count": 0, "in_reply_to_status_id": 716471989708259329, "lang": "en", "created_at": "Sun Apr 03 03:47:20 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471903599386624", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "47705062", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/167043550/1458260632", "description": "RIP Edward \u2764\ufe0f @harleyyyquinn_ is my dominatrix. #HillaryForPrisonNotPresident", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "DEN \u2708\ufe0f PHX", "follow_request_sent": null, "followers_count": 2643, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 109, "friends_count": 761, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "00EB00", "id_str": "167043550", "protected": false, "id": 167043550, "favourites_count": 455, "profile_sidebar_fill_color": "000000", "screen_name": "Thotcho", "profile_image_url": "http://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "lang": "en", "created_at": "Thu Jul 15 16:28:39 +0000 2010", "profile_use_background_image": true, "name": "not a diva", "url": "https://vine.co/v/OPYaZvdYxqA", "following": null, "profile_link_color": "960087", "statuses_count": 230509, "is_translator": false}, "text": "@BlxxdyB @HarleyyyQuinn_ short girls are the best nohomo", "retweeted": false, "in_reply_to_screen_name": "BlxxdyB", "id_str": "716472126006407168", "id": 716472126006407168, "timestamp_ms": "1459655240905", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u0644\u0622", "indices": [0, 8], "id": 47705062, "screen_name": "BlxxdyB", "id_str": "47705062"}, {"name": "Harleen Quinzel", "indices": [9, 24], "id": 160853993, "screen_name": "HarleyyyQuinn_", "id_str": "160853993"}], "hashtags": []}, "in_reply_to_user_id": 47705062, "favorite_count": 0, "in_reply_to_status_id": 716471903599386624, "lang": "en", "created_at": "Sun Apr 03 03:47:20 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/275823799/1458451533", "description": "South Africa and Arizona origins. BA in Math, MA in Secondary Education. Sun Devil. Teacher. \u2764\ufe0f", "profile_sidebar_border_color": "DFDFDF", "profile_background_tile": false, "profile_background_color": "EBEBEB", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 0, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710263551366078464/Q9zjk_5o_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 75, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "275823799", "protected": false, "id": 275823799, "favourites_count": 2, "profile_sidebar_fill_color": "F3F3F3", "screen_name": "sincmic", "profile_image_url": "http://pbs.twimg.com/profile_images/710263551366078464/Q9zjk_5o_normal.jpg", "lang": "en", "created_at": "Sat Apr 02 02:34:20 +0000 2011", "profile_use_background_image": true, "name": "MichelleEsmeSinclair", "url": null, "following": null, "profile_link_color": "990000", "statuses_count": 2560, "is_translator": false}, "text": "truth... you are too cute... be yourself...", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472173154541569", "id": 716472173154541569, "timestamp_ms": "1459655252146", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Maricopa, AZ", "place_type": "city", "attributes": {}, "name": "Maricopa", "country": "United States", "id": "001b67fd5761210e", "bounding_box": {"coordinates": [[[-112.079946, 33.029009], [-112.079946, 33.087983], [-111.944584, 33.087983], [-111.944584, 33.029009]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/001b67fd5761210e.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2594146814/1458073854", "description": "In BMG, We Trust", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Flagstaff, AZ", "follow_request_sent": null, "followers_count": 726, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711300508321853440/t2iard9u_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 429, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "2594146814", "protected": false, "id": 2594146814, "favourites_count": 14134, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "itsEricbruhh", "profile_image_url": "http://pbs.twimg.com/profile_images/711300508321853440/t2iard9u_normal.jpg", "lang": "en", "created_at": "Sun Jun 29 03:49:58 +0000 2014", "profile_use_background_image": true, "name": "E. Boogie", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 47439, "is_translator": false}, "text": "Like myself smh https://t.co/9YLCMwef3Q", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472179689283584", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2606573618/1459630695", "description": "Can I make you a single mother? boolin in AZ #8Ball", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "#LilMeatGvng", "follow_request_sent": null, "followers_count": 3296, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716326191645335552/jg0DgH8n_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 804, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2606573618", "protected": false, "id": 2606573618, "favourites_count": 7715, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "OneUglyNigga", "profile_image_url": "http://pbs.twimg.com/profile_images/716326191645335552/jg0DgH8n_normal.jpg", "lang": "en", "created_at": "Sun Jul 06 02:25:13 +0000 2014", "profile_use_background_image": true, "name": "Baby Daddy", "url": "http://UglyNigga.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 21000, "is_translator": false}, "text": "Smh the dog filter be makin ugly mfs look attractive \ud83d\ude24", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471990513569793", "id": 716471990513569793, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:46:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472179689283584, "timestamp_ms": "1459655253704", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/oneuglynigga/status/716471990513569793", "indices": [16, 39], "display_url": "twitter.com/oneuglynigga/s\u2026", "url": "https://t.co/9YLCMwef3Q"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716471990513569793, "created_at": "Sun Apr 03 03:47:33 +0000 2016", "coordinates": null, "quoted_status_id_str": "716471990513569793", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/yrwQns7qWy", "sizes": {"small": {"w": 340, "resize": "fit", "h": 453}, "large": {"w": 960, "resize": "fit", "h": 1280}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/MichaelFryJr/status/716472186639286272/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrpuVUMAAeK76.jpg", "indices": [13, 36], "id": 716472180284862464, "id_str": "716472180284862464", "display_url": "pic.twitter.com/yrwQns7qWy", "media_url": "http://pbs.twimg.com/media/CfFrpuVUMAAeK76.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2694512468/1455521932", "description": "\u2693\ufe0f I Refuse To Sink \u2693\ufe0f", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 101, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710327723659399168/ifeozoFG_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 117, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2694512468", "protected": false, "id": 2694512468, "favourites_count": 1041, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "MichaelFryJr", "profile_image_url": "http://pbs.twimg.com/profile_images/710327723659399168/ifeozoFG_normal.jpg", "lang": "en", "created_at": "Thu Jul 31 02:37:38 +0000 2014", "profile_use_background_image": true, "name": "DJ Dr.SwagmasterJay", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1283, "is_translator": false}, "text": "Hashtag love https://t.co/yrwQns7qWy", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472186639286272", "id": 716472186639286272, "timestamp_ms": "1459655255361", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/yrwQns7qWy", "sizes": {"small": {"w": 340, "resize": "fit", "h": 453}, "large": {"w": 960, "resize": "fit", "h": 1280}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/MichaelFryJr/status/716472186639286272/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrpuVUMAAeK76.jpg", "indices": [13, 36], "id": 716472180284862464, "id_str": "716472180284862464", "display_url": "pic.twitter.com/yrwQns7qWy", "media_url": "http://pbs.twimg.com/media/CfFrpuVUMAAeK76.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80697, "is_translator": false}, "text": "I\u2019d do anything to go byke to the lean wit it rock wit it days", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472197380857856", "id": 716472197380857856, "timestamp_ms": "1459655257922", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:37 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2678328001/1458930832", "description": "this is my husband \u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764 I love you so much @allietheturtlee is mine", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 505, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708875133369196545/3kdanSR1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 303, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "2678328001", "protected": false, "id": 2678328001, "favourites_count": 8447, "profile_sidebar_fill_color": "000000", "screen_name": "fuckbvvh", "profile_image_url": "http://pbs.twimg.com/profile_images/708875133369196545/3kdanSR1_normal.jpg", "lang": "en", "created_at": "Fri Jul 25 01:00:39 +0000 2014", "profile_use_background_image": false, "name": "bvvh", "url": null, "following": null, "profile_link_color": "000000", "statuses_count": 8927, "is_translator": false}, "text": "When I'm falling down\nYou keep me steady ground~", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472198886653952", "id": 716472198886653952, "timestamp_ms": "1459655258281", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:38 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/376027586/1459202836", "description": "I like to draw and ramble about useless things", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": "Tucson, AZ", "follow_request_sent": null, "followers_count": 111, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714574600882012165/PndafTQm_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 249, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "376027586", "protected": false, "id": 376027586, "favourites_count": 3399, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Sedona_Anne", "profile_image_url": "http://pbs.twimg.com/profile_images/714574600882012165/PndafTQm_normal.jpg", "lang": "en", "created_at": "Mon Sep 19 05:25:26 +0000 2011", "profile_use_background_image": true, "name": "Sedona Creegan", "url": null, "following": null, "profile_link_color": "D40864", "statuses_count": 3952, "is_translator": false}, "text": "Tucson traffic is ridiculous #getyourshittogether", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472207887638529", "id": 716472207887638529, "timestamp_ms": "1459655260427", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [29, 49], "text": "getyourshittogether"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:40 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716468090792316928", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1029585438", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3198445884/1459127060", "description": "cactus high school | yearbook | @jacqulinegarret", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 482, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712438214775058432/ncXbbS7B_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 683, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3198445884", "protected": false, "id": 3198445884, "favourites_count": 7114, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "viviannaaaaa_", "profile_image_url": "http://pbs.twimg.com/profile_images/712438214775058432/ncXbbS7B_normal.jpg", "lang": "en", "created_at": "Sun May 17 03:58:24 +0000 2015", "profile_use_background_image": true, "name": "viv", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 15430, "is_translator": false}, "text": "@Jacqulinegarret kms", "retweeted": false, "in_reply_to_screen_name": "Jacqulinegarret", "id_str": "716472208659361794", "id": 716472208659361794, "timestamp_ms": "1459655260611", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Jacquline garrett", "indices": [0, 16], "id": 1029585438, "screen_name": "Jacqulinegarret", "id_str": "1029585438"}], "hashtags": []}, "in_reply_to_user_id": 1029585438, "favorite_count": 0, "in_reply_to_status_id": 716468090792316928, "lang": "und", "created_at": "Sun Apr 03 03:47:40 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/46746431/1442462742", "description": "Accredited PR consultant, author, blogger & speaker. Owner of @MahoganyXan Communications. WuTangName - Sarkastik Watcher!", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "DBE9ED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 5937, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/652735847612084224/hjhdznFP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/546175097384353792/zAQ1oYTR.png", "default_profile_image": false, "notifications": null, "listed_count": 197, "friends_count": 6068, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/546175097384353792/zAQ1oYTR.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "46746431", "protected": false, "id": 46746431, "favourites_count": 4184, "profile_sidebar_fill_color": "E6F6F9", "screen_name": "LTWoods", "profile_image_url": "http://pbs.twimg.com/profile_images/652735847612084224/hjhdznFP_normal.jpg", "lang": "en", "created_at": "Fri Jun 12 20:54:58 +0000 2009", "profile_use_background_image": true, "name": "LaTricia Woods", "url": "http://latriciawoods.com", "following": null, "profile_link_color": "CC3366", "statuses_count": 21465, "is_translator": false}, "text": "Just ordered my new iPhone cover. Wait until you see it! #fierce", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472218872455169", "id": 716472218872455169, "timestamp_ms": "1459655263046", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [57, 64], "text": "fierce"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/318897497/1360060664", "description": "Actor\u2022Athlete\u2022Enterpreneur", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 80, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000738302965/cf2a72c86925f5ac6a53e60b27026b97_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 129, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "318897497", "protected": false, "id": 318897497, "favourites_count": 1867, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "EliRNieto", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000738302965/cf2a72c86925f5ac6a53e60b27026b97_normal.jpeg", "lang": "en", "created_at": "Fri Jun 17 06:59:27 +0000 2011", "profile_use_background_image": true, "name": "Eli Greenleaf", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 879, "is_translator": false}, "text": "Here I am #fml #topshelflife #gone #though", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472226074079233", "id": 716472226074079233, "timestamp_ms": "1459655264763", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [10, 14], "text": "fml"}, {"indices": [15, 28], "text": "topshelflife"}, {"indices": [29, 34], "text": "gone"}, {"indices": [35, 42], "text": "though"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4681562070/1454108008", "description": "No past No Future I'm just taking life one day at a time changing the way you think one smile at a time.\n\n#FUTF", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Where the wild things are", "follow_request_sent": null, "followers_count": 26, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705529848765124608/8HoAH094_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 44, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4681562070", "protected": false, "id": 4681562070, "favourites_count": 99, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Wattba7", "profile_image_url": "http://pbs.twimg.com/profile_images/705529848765124608/8HoAH094_normal.jpg", "lang": "en", "created_at": "Thu Dec 31 05:42:12 +0000 2015", "profile_use_background_image": true, "name": "Aubria Baker", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 295, "is_translator": false}, "text": "Cause I got it all shawty tell me what you don't see \ud83e\udd14", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472229987418112", "id": 716472229987418112, "timestamp_ms": "1459655265696", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:45 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/168562094/1456284076", "description": "Brian is my MCM", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "ACDED6", "verified": false, "location": "Arizona, USA\u2600\ufe0f", "follow_request_sent": null, "followers_count": 575, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716133828880781312/3p1ekZW1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/496778285183823872/yTfDQnlE.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 201, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/496778285183823872/yTfDQnlE.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "168562094", "protected": false, "id": 168562094, "favourites_count": 22219, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "AmberrMary", "profile_image_url": "http://pbs.twimg.com/profile_images/716133828880781312/3p1ekZW1_normal.jpg", "lang": "en", "created_at": "Tue Jul 20 06:56:57 +0000 2010", "profile_use_background_image": true, "name": "Ambae", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 21456, "is_translator": false}, "text": "I'm very unamused today", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472231769939968", "id": 716472231769939968, "timestamp_ms": "1459655266121", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/571397184/1459311108", "description": "LHS // snap:cheyenneroose16", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 699, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715027583004504064/y2kvAhoZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 440, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "571397184", "protected": false, "id": 571397184, "favourites_count": 48974, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "CheyenneRoose", "profile_image_url": "http://pbs.twimg.com/profile_images/715027583004504064/y2kvAhoZ_normal.jpg", "lang": "en", "created_at": "Sat May 05 01:19:46 +0000 2012", "profile_use_background_image": true, "name": "C.", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8143, "is_translator": false}, "text": "this weekend has been shit.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472234789896192", "id": 716472234789896192, "timestamp_ms": "1459655266841", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716464402728288256", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "1306607929", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/8ob6OepqEg", "sizes": {"small": {"w": 340, "resize": "fit", "h": 141}, "large": {"w": 1024, "resize": "fit", "h": 426}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 250}}, "type": "photo", "expanded_url": "http://twitter.com/dcmarvel88/status/716472234823458817/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrsXHVIAIVev9.jpg", "indices": [12, 35], "id": 716472225591795714, "id_str": "716472225591795714", "display_url": "pic.twitter.com/8ob6OepqEg", "media_url": "http://pbs.twimg.com/media/CfFrsXHVIAIVev9.jpg"}]}, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2857978582/1457589418", "description": "We just have a bad history with freaks dressed like clowns.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 1289, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716471200336064512/CITEDdab_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 40, "friends_count": 567, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2857978582", "protected": false, "id": 2857978582, "favourites_count": 17257, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "dcmarvel88", "profile_image_url": "http://pbs.twimg.com/profile_images/716471200336064512/CITEDdab_normal.jpg", "lang": "en", "created_at": "Mon Nov 03 00:18:32 +0000 2014", "profile_use_background_image": true, "name": "DCEU Enterprises", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 19893, "is_translator": false}, "text": "@brucswayne https://t.co/8ob6OepqEg", "retweeted": false, "in_reply_to_screen_name": "brucswayne", "id_str": "716472234823458817", "id": 716472234823458817, "timestamp_ms": "1459655266849", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "batjess", "indices": [0, 11], "id": 1306607929, "screen_name": "brucswayne", "id_str": "1306607929"}], "hashtags": [], "media": [{"url": "https://t.co/8ob6OepqEg", "sizes": {"small": {"w": 340, "resize": "fit", "h": 141}, "large": {"w": 1024, "resize": "fit", "h": 426}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 250}}, "type": "photo", "expanded_url": "http://twitter.com/dcmarvel88/status/716472234823458817/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrsXHVIAIVev9.jpg", "indices": [12, 35], "id": 716472225591795714, "id_str": "716472225591795714", "display_url": "pic.twitter.com/8ob6OepqEg", "media_url": "http://pbs.twimg.com/media/CfFrsXHVIAIVev9.jpg"}]}, "in_reply_to_user_id": 1306607929, "favorite_count": 0, "in_reply_to_status_id": 716464402728288256, "lang": "und", "created_at": "Sun Apr 03 03:47:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/317890051/1458963350", "description": "Enjoy taking sports photos. AZ Cardinals & Coyotes STH but love all AZ Sports. Fav Hockey Player Paul Biz Nasty Bissonnette 4th Line 4 Life", "profile_sidebar_border_color": "A8C7F7", "profile_background_tile": false, "profile_background_color": "022330", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 593, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/700918988021243906/cyKoyCdt_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 15, "friends_count": 1133, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "317890051", "protected": false, "id": 317890051, "favourites_count": 12914, "profile_sidebar_fill_color": "C0DFEC", "screen_name": "cardsfan10kjd", "profile_image_url": "http://pbs.twimg.com/profile_images/700918988021243906/cyKoyCdt_normal.jpg", "lang": "en", "created_at": "Wed Jun 15 16:50:18 +0000 2011", "profile_use_background_image": true, "name": "AZ Sports Girl", "url": null, "following": null, "profile_link_color": "CC2D2D", "statuses_count": 12223, "is_translator": false}, "text": "Hey @ArizonaCoyotes when are you contacting me to let me know I won a jersey off a players back \ud83d\ude02\ud83d\ude4f please", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472238623449089", "id": 716472238623449089, "timestamp_ms": "1459655267755", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "#PackPrideNight", "indices": [4, 19], "id": 20006987, "screen_name": "ArizonaCoyotes", "id_str": "20006987"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1229216755/1447114063", "description": "lil baby coming soon 9/2/16", "profile_sidebar_border_color": "A8C7F7", "profile_background_tile": false, "profile_background_color": "022330", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 170, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708037896716980225/rlbBCnU1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 143, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "1229216755", "protected": false, "id": 1229216755, "favourites_count": 2001, "profile_sidebar_fill_color": "C0DFEC", "screen_name": "YaGirlDeeds", "profile_image_url": "http://pbs.twimg.com/profile_images/708037896716980225/rlbBCnU1_normal.jpg", "lang": "en", "created_at": "Fri Mar 01 07:00:43 +0000 2013", "profile_use_background_image": true, "name": "Dede Marie", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2074, "is_translator": false}, "text": "The baby is moving around SO much right now. It's such a great experience feeling your baby move", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472241425231873", "id": 716472241425231873, "timestamp_ms": "1459655268423", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471353621106688", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "26968963", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/20501917/1450545902", "description": "Labor and Employment attorney. @UCLA_Law and @BarrettHonors alum. Seahawks and Mariners fan. Founder of House of Sparky.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 676, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715000072770101248/dAyQ3DJ8_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/93889972/seattle.jpg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 2110, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/93889972/seattle.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "20501917", "protected": false, "id": 20501917, "favourites_count": 2101, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "adampboyd", "profile_image_url": "http://pbs.twimg.com/profile_images/715000072770101248/dAyQ3DJ8_normal.jpg", "lang": "en", "created_at": "Tue Feb 10 09:29:44 +0000 2009", "profile_use_background_image": true, "name": "Adam P. Boyd", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 12174, "is_translator": false}, "text": "@AmirTalai hah did they really fully comp you to fully uncomp you?", "retweeted": false, "in_reply_to_screen_name": "AmirTalai", "id_str": "716472242004078593", "id": 716472242004078593, "timestamp_ms": "1459655268561", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Amir Talai", "indices": [0, 10], "id": 26968963, "screen_name": "AmirTalai", "id_str": "26968963"}], "hashtags": []}, "in_reply_to_user_id": 26968963, "favorite_count": 0, "in_reply_to_status_id": 716471353621106688, "lang": "en", "created_at": "Sun Apr 03 03:47:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472132775968769", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "446658190", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/479968640/1448352188", "description": null, "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "141111", "verified": false, "location": "United States", "follow_request_sent": null, "followers_count": 419, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 356, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589356012/9zfy0ml1zywqp04wovbw.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "479968640", "protected": false, "id": 479968640, "favourites_count": 7138, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "charliboyy_963", "profile_image_url": "http://pbs.twimg.com/profile_images/701098283536494592/3Rg_pgcB_normal.jpg", "lang": "en", "created_at": "Wed Feb 01 00:00:53 +0000 2012", "profile_use_background_image": true, "name": "\u267f\u2122M3_963", "url": null, "following": null, "profile_link_color": "990000", "statuses_count": 18124, "is_translator": false}, "text": "@ProdaJayy2296 yeah feel free bud just let me know", "retweeted": false, "in_reply_to_screen_name": "ProdaJayy2296", "id_str": "716472262430314497", "id": 716472262430314497, "timestamp_ms": "1459655273431", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Caleb De Jesus", "indices": [0, 14], "id": 446658190, "screen_name": "ProdaJayy2296", "id_str": "446658190"}], "hashtags": []}, "in_reply_to_user_id": 446658190, "favorite_count": 0, "in_reply_to_status_id": 716472132775968769, "lang": "en", "created_at": "Sun Apr 03 03:47:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/59647718/1415218658", "description": "Powerlifting, Unicorns, Ice Cream and Nicolas Cage ... #Srs ... IG- AndyGarcia0415", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Tempe ", "follow_request_sent": null, "followers_count": 70, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/540933870409883648/IahOPwTw_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 121, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "59647718", "protected": false, "id": 59647718, "favourites_count": 86, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "AndyGarcia0415", "profile_image_url": "http://pbs.twimg.com/profile_images/540933870409883648/IahOPwTw_normal.jpeg", "lang": "en", "created_at": "Fri Jul 24 01:10:54 +0000 2009", "profile_use_background_image": true, "name": "Andy", "url": "http://Facebook.com/Andy.Garcia.0415", "following": null, "profile_link_color": "009999", "statuses_count": 1828, "is_translator": false}, "text": "The Elvis Burger #Rehab #RehabBurgerTherapy #FriedBanana #PeanutButter #Chocolate #Gainz\u2026 https://t.co/QGwoNJOmI7", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472265131429888", "id": 716472265131429888, "timestamp_ms": "1459655274075", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuTuT-kDGL/", "indices": [90, 113], "display_url": "instagram.com/p/BDuTuT-kDGL/", "url": "https://t.co/QGwoNJOmI7"}], "user_mentions": [], "hashtags": [{"indices": [17, 23], "text": "Rehab"}, {"indices": [24, 43], "text": "RehabBurgerTherapy"}, {"indices": [44, 56], "text": "FriedBanana"}, {"indices": [57, 70], "text": "PeanutButter"}, {"indices": [71, 81], "text": "Chocolate"}, {"indices": [82, 88], "text": "Gainz"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:54 +0000 2016", "coordinates": {"coordinates": [-111.925621, 33.4916916], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4916916, -111.925621], "type": "Point"}}, {"in_reply_to_status_id_str": "716469400291778560", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "2934282132", "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/bd8ZUW6DWl", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 512}, "small": {"w": 340, "resize": "fit", "h": 170}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/PG_Wolfiisaur/status/716472272811200512/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrvEuVIAQNOs2.jpg", "indices": [26, 49], "id": 716472272194707460, "id_str": "716472272194707460", "display_url": "pic.twitter.com/bd8ZUW6DWl", "media_url": "http://pbs.twimg.com/media/CfFrvEuVIAQNOs2.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/574169014/1458783792", "description": "I'm Alexandra! Cartoonist and illustrator. 16 yrs old. @PandaGlobalPG's art girl. Chase your dreams, you'll win~ Commissions closed! wolfiisaur.art@gmail.com", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "DD2E44", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 3307, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710702031137144832/EzRjJi1z_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 15, "friends_count": 568, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "574169014", "protected": false, "id": 574169014, "favourites_count": 22501, "profile_sidebar_fill_color": "000000", "screen_name": "PG_Wolfiisaur", "profile_image_url": "http://pbs.twimg.com/profile_images/710702031137144832/EzRjJi1z_normal.jpg", "lang": "en", "created_at": "Tue May 08 03:26:34 +0000 2012", "profile_use_background_image": false, "name": "Wolfii~ Panda Global", "url": "http://www.panda.gg", "following": null, "profile_link_color": "DD2E44", "statuses_count": 10203, "is_translator": false}, "text": "@SAKGamingLLC this'll do? https://t.co/bd8ZUW6DWl", "retweeted": false, "in_reply_to_screen_name": "SAKGamingLLC", "id_str": "716472272811200512", "id": 716472272811200512, "timestamp_ms": "1459655275906", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "SAK Gaming", "indices": [0, 13], "id": 2934282132, "screen_name": "SAKGamingLLC", "id_str": "2934282132"}], "hashtags": [], "media": [{"url": "https://t.co/bd8ZUW6DWl", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 512}, "small": {"w": 340, "resize": "fit", "h": 170}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/PG_Wolfiisaur/status/716472272811200512/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrvEuVIAQNOs2.jpg", "indices": [26, 49], "id": 716472272194707460, "id_str": "716472272194707460", "display_url": "pic.twitter.com/bd8ZUW6DWl", "media_url": "http://pbs.twimg.com/media/CfFrvEuVIAQNOs2.jpg"}]}, "in_reply_to_user_id": 2934282132, "favorite_count": 0, "in_reply_to_status_id": 716469400291778560, "lang": "en", "created_at": "Sun Apr 03 03:47:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "SafeTweet by TweetMyJOBS", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"description": "At #VitaminShoppe we are lovers of fitness, health, vitamins, helping you on your wellness journey and motivating others. Apply to our #jobs below.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 587, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/497122335518769153/S7vPUx1I_normal.png", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/438684839420497920/k6GaRW0-.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 593, "friends_count": 96, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/438684839420497920/k6GaRW0-.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "2362771358", "protected": false, "id": 2362771358, "favourites_count": 0, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "VSIcareers", "profile_image_url": "http://pbs.twimg.com/profile_images/497122335518769153/S7vPUx1I_normal.png", "lang": "en", "created_at": "Wed Feb 26 14:36:09 +0000 2014", "profile_use_background_image": true, "name": "Vitamin Shoppe Jobs", "url": "http://www.vitaminshoppe.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 3487, "is_translator": false}, "text": "Can you recommend anyone for this #job? Key Holder (part-time) - https://t.co/rDo2rfFgF3 #Surprise, AZ #Hiring", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472274010787840", "id": 716472274010787840, "timestamp_ms": "1459655276192", "entities": {"symbols": [], "urls": [{"expanded_url": "http://bit.ly/1PmWqJv", "indices": [65, 88], "display_url": "bit.ly/1PmWqJv", "url": "https://t.co/rDo2rfFgF3"}], "user_mentions": [], "hashtags": [{"indices": [34, 38], "text": "job"}, {"indices": [89, 98], "text": "Surprise"}, {"indices": [103, 110], "text": "Hiring"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:56 +0000 2016", "coordinates": {"coordinates": [-112.3531936, 33.6390831], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.6390831, -112.3531936], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2191172275/1433991021", "description": "Head Men's Basketball Coach at Loyola Marymount University.", "profile_sidebar_border_color": "BBBE25", "profile_background_tile": false, "profile_background_color": "E0E3E6", "verified": true, "location": "Los Angeles, Ca", "follow_request_sent": null, "followers_count": 9471, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/608827113706168320/LMqayYa5_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115755056/e1fc0bda9a286d00fc95c1c911bf56c6.png", "default_profile_image": false, "notifications": null, "listed_count": 105, "friends_count": 712, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115755056/e1fc0bda9a286d00fc95c1c911bf56c6.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "686B64", "id_str": "2191172275", "protected": false, "id": 2191172275, "favourites_count": 141, "profile_sidebar_fill_color": "F7E9E9", "screen_name": "CoachMikeDunlap", "profile_image_url": "http://pbs.twimg.com/profile_images/608827113706168320/LMqayYa5_normal.jpg", "lang": "en", "created_at": "Tue Nov 12 22:37:20 +0000 2013", "profile_use_background_image": true, "name": "Mike Dunlap", "url": "http://coachdunlap.com", "following": null, "profile_link_color": "FE7E39", "statuses_count": 1264, "is_translator": false}, "text": "Heard for years, \"Don't help up hill w/ middle drives! Really? Not necessarily! Rotate early so guard can't find big...another way to do it.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472283666092032", "id": 716472283666092032, "timestamp_ms": "1459655278494", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:58 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716456590375661569", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "269140277", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1372736803/1455819883", "description": "Easton\u2764", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "080808", "verified": false, "location": "Mesa, AZ", "follow_request_sent": null, "followers_count": 171, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709409996644098048/oNchaUzi_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/438156425252978688/i7C5MZBN.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 100, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/438156425252978688/i7C5MZBN.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1372736803", "protected": false, "id": 1372736803, "favourites_count": 2760, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "rissajme_", "profile_image_url": "http://pbs.twimg.com/profile_images/709409996644098048/oNchaUzi_normal.jpg", "lang": "en", "created_at": "Mon Apr 22 18:01:21 +0000 2013", "profile_use_background_image": true, "name": "R. Ethelbah", "url": "http://instagram.com/raisingeaston_", "following": null, "profile_link_color": "94D487", "statuses_count": 17318, "is_translator": false}, "text": "@DannyGunz117 ?", "retweeted": false, "in_reply_to_screen_name": "DannyGunz117", "id_str": "716472284744011777", "id": 716472284744011777, "timestamp_ms": "1459655278751", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "danny", "indices": [0, 13], "id": 269140277, "screen_name": "DannyGunz117", "id_str": "269140277"}], "hashtags": []}, "in_reply_to_user_id": 269140277, "favorite_count": 0, "in_reply_to_status_id": 716456590375661569, "lang": "und", "created_at": "Sun Apr 03 03:47:58 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716460279425474560", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "247113865", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "00020A", "profile_background_tile": false, "profile_background_color": "FAEDCA", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 697, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715014968182222848/P6IlFTZM_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 663, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Mazatlan", "profile_text_color": "732E40", "id_str": "2540511882", "protected": false, "id": 2540511882, "favourites_count": 2673, "profile_sidebar_fill_color": "4F1521", "screen_name": "ivetteroblesss", "profile_image_url": "http://pbs.twimg.com/profile_images/715014968182222848/P6IlFTZM_normal.jpg", "lang": "en", "created_at": "Mon Jun 02 01:05:53 +0000 2014", "profile_use_background_image": true, "name": "ivette", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 8436, "is_translator": false}, "text": "@Awwwaniaa I feel so bad", "retweeted": false, "in_reply_to_screen_name": "Awwwaniaa", "id_str": "716472285884854272", "id": 716472285884854272, "timestamp_ms": "1459655279023", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Ania", "indices": [0, 10], "id": 247113865, "screen_name": "Awwwaniaa", "id_str": "247113865"}], "hashtags": []}, "in_reply_to_user_id": 247113865, "favorite_count": 0, "in_reply_to_status_id": 716460279425474560, "lang": "en", "created_at": "Sun Apr 03 03:47:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/20410582/1458697173", "description": "Creator of the #Alienation - #LightWork - New album #TheLegendOfThePhoenix 4.25.2016", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "0F0E0F", "verified": true, "location": "Phoenix", "follow_request_sent": null, "followers_count": 6804, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712453696932581376/3_zrLcD4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/502245010511630337/GSoSbifv.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 29, "friends_count": 1930, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/502245010511630337/GSoSbifv.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "20410582", "protected": false, "id": 20410582, "favourites_count": 6824, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "SincereCollins", "profile_image_url": "http://pbs.twimg.com/profile_images/712453696932581376/3_zrLcD4_normal.jpg", "lang": "en", "created_at": "Mon Feb 09 02:44:45 +0000 2009", "profile_use_background_image": true, "name": "Sincerely Collins", "url": "http://youtu.be/M_lb11ykk90", "following": null, "profile_link_color": "756F75", "statuses_count": 10252, "is_translator": false}, "text": "I just said \"My snap will be lit\" and it made sense...think about it. Tell that to someone in 1967. Or 1993.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472286505664512", "id": 716472286505664512, "timestamp_ms": "1459655279171", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716463274460520452", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2344572644", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3262725294/1457314440", "description": "xcp:)", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 153, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711717939137753088/_xnwxM57_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 142, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3262725294", "protected": false, "id": 3262725294, "favourites_count": 1903, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "mariefuness", "profile_image_url": "http://pbs.twimg.com/profile_images/711717939137753088/_xnwxM57_normal.jpg", "lang": "en", "created_at": "Wed Jul 01 02:33:56 +0000 2015", "profile_use_background_image": true, "name": "Marie Funes", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 184, "is_translator": false}, "text": "@NicoleAmodio_ it's been a rough night:'(", "retweeted": false, "in_reply_to_screen_name": "NicoleAmodio_", "id_str": "716472288405630976", "id": 716472288405630976, "timestamp_ms": "1459655279624", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Nicole", "indices": [0, 14], "id": 2344572644, "screen_name": "NicoleAmodio_", "id_str": "2344572644"}], "hashtags": []}, "in_reply_to_user_id": 2344572644, "favorite_count": 0, "in_reply_to_status_id": 716463274460520452, "lang": "en", "created_at": "Sun Apr 03 03:47:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Sun City, AZ", "place_type": "city", "attributes": {}, "name": "Sun City", "country": "United States", "id": "20e2ae04ce0165b0", "bounding_box": {"coordinates": [[[-112.312571, 33.565085], [-112.312571, 33.666825], [-112.253653, 33.666825], [-112.253653, 33.565085]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/20e2ae04ce0165b0.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/967565144/1458513072", "description": "on one hell of a Journey\u2764\ufe0f, Gilbert AZ postmates", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "hell", "follow_request_sent": null, "followers_count": 597, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711282215250833409/Kl5iXB0i_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 246, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "967565144", "protected": false, "id": 967565144, "favourites_count": 14501, "profile_sidebar_fill_color": "000000", "screen_name": "HammLogan", "profile_image_url": "http://pbs.twimg.com/profile_images/711282215250833409/Kl5iXB0i_normal.jpg", "lang": "en", "created_at": "Sat Nov 24 07:42:15 +0000 2012", "profile_use_background_image": false, "name": "Logan \u2604", "url": null, "following": null, "profile_link_color": "89C9FA", "statuses_count": 13329, "is_translator": false}, "text": "I'm tryin to get fucking hammered tonight but I'm stuck at my grandparents house", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472290142105600", "id": 716472290142105600, "timestamp_ms": "1459655280038", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/YhjujOszoG", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/Tokes_Raws/status/716472287164129280/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFruNXVIAAm7BY.jpg", "indices": [16, 39], "id": 716472257334288384, "id_str": "716472257334288384", "display_url": "pic.twitter.com/YhjujOszoG", "media_url": "http://pbs.twimg.com/media/CfFruNXVIAAm7BY.jpg"}]}, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1005385062/1458357607", "description": "Scorpio\u264f\ufe0f 90'$ BABY", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona", "follow_request_sent": null, "followers_count": 5002, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709252839919325184/bYutnK3S_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/736489147/3dcfd662f7dde6c4d2b1899f64663f82.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 4328, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/736489147/3dcfd662f7dde6c4d2b1899f64663f82.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "1005385062", "protected": false, "id": 1005385062, "favourites_count": 2749, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Tokes_Raws", "profile_image_url": "http://pbs.twimg.com/profile_images/709252839919325184/bYutnK3S_normal.jpg", "lang": "en", "created_at": "Wed Dec 12 02:40:14 +0000 2012", "profile_use_background_image": true, "name": "Ricky", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 53792, "is_translator": false}, "text": "In The Dale \ud83c\udf35\ud83d\udd25\ud83d\udcaf https://t.co/YhjujOszoG", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472287164129280", "id": 716472287164129280, "timestamp_ms": "1459655279328", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/YhjujOszoG", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/Tokes_Raws/status/716472287164129280/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFruNXVIAAm7BY.jpg", "indices": [16, 39], "id": 716472257334288384, "id_str": "716472257334288384", "display_url": "pic.twitter.com/YhjujOszoG", "media_url": "http://pbs.twimg.com/media/CfFruNXVIAAm7BY.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:47:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1297397599/1449548081", "description": "Highline CC Mens soccer Barbrothers Seattle IG:@barbrothers_seattle", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "soccer and calisthenics ", "follow_request_sent": null, "followers_count": 504, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/539977405843009536/6AZYIzwc_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 298, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1297397599", "protected": false, "id": 1297397599, "favourites_count": 11053, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tinoslish", "profile_image_url": "http://pbs.twimg.com/profile_images/539977405843009536/6AZYIzwc_normal.jpeg", "lang": "en", "created_at": "Mon Mar 25 02:36:28 +0000 2013", "profile_use_background_image": true, "name": "T. Slish", "url": "https://m.youtube.com/channel/UCt5rpg_OuMDnymi-FNitHSg", "following": null, "profile_link_color": "0084B4", "statuses_count": 10300, "is_translator": false}, "text": "When you're in another state and your brother sends a picture of one of the packages from your other sponsor \ud83d\ude4c\ud83d\ude4c loving this is", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472291425525760", "id": 716472291425525760, "timestamp_ms": "1459655280344", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/600553968/1453190328", "description": "me, myself, & I", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 752, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/702711590680817664/_lpl21Xd_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/696543858/0ca8e00d93abb67be1546ed929e619c9.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 257, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/696543858/0ca8e00d93abb67be1546ed929e619c9.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "600553968", "protected": false, "id": 600553968, "favourites_count": 16949, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "masters_hans", "profile_image_url": "http://pbs.twimg.com/profile_images/702711590680817664/_lpl21Xd_normal.jpg", "lang": "en", "created_at": "Tue Jun 05 22:30:14 +0000 2012", "profile_use_background_image": true, "name": "Hannah", "url": null, "following": null, "profile_link_color": "19CF86", "statuses_count": 36680, "is_translator": false}, "text": "I continue to lay in bed or get my lazy ass up and go to the gym \ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472311419789312", "id": 716472311419789312, "timestamp_ms": "1459655285111", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/421559197/1353896876", "description": "I'm a loser slave i do girls homework i like to be humiliated i will be your slave in person do chores buy stuff anything im a sissyfag", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "333333", "verified": false, "location": "Arizona", "follow_request_sent": null, "followers_count": 892, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/449373075675443200/fZLlWsQI_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/819757582/19f5649f7f718be061922207c038b96f.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 2327, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/819757582/19f5649f7f718be061922207c038b96f.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "421559197", "protected": false, "id": 421559197, "favourites_count": 18740, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HomeworkSlave1", "profile_image_url": "http://pbs.twimg.com/profile_images/449373075675443200/fZLlWsQI_normal.jpeg", "lang": "en", "created_at": "Sat Nov 26 03:15:03 +0000 2011", "profile_use_background_image": true, "name": "HomeworkSlaveLoser", "url": null, "following": null, "profile_link_color": "FF0000", "statuses_count": 5458, "is_translator": false}, "text": "feeling weak its been a month since i was allowed to cum", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472327072919552", "id": 716472327072919552, "timestamp_ms": "1459655288843", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/384108538/1456684505", "description": "#gobeavs #canucks #trailblazers #GoBucs #quakes74 #padres Oregon Native #NRA #Constitution #HumanRights Goonies is the greatest movie ever!", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "4A913C", "verified": false, "location": "Lebanon, OR", "follow_request_sent": null, "followers_count": 720, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714653224381378560/XTKFoU9K_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/677149127382138882/skRR82dD.jpg", "default_profile_image": false, "notifications": null, "listed_count": 41, "friends_count": 470, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/677149127382138882/skRR82dD.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "384108538", "protected": false, "id": 384108538, "favourites_count": 13514, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "DavidJMays", "profile_image_url": "http://pbs.twimg.com/profile_images/714653224381378560/XTKFoU9K_normal.jpg", "lang": "en", "created_at": "Mon Oct 03 02:46:50 +0000 2011", "profile_use_background_image": true, "name": "Beat UCONN", "url": null, "following": null, "profile_link_color": "FA743E", "statuses_count": 30871, "is_translator": false}, "text": "Need a job ? Like the desert ? Apply to @TBar_LakeMead on the website https://t.co/DXH7Cg7mWP under help wanted now #ForeverResorts", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472329266593793", "id": 716472329266593793, "timestamp_ms": "1459655289366", "entities": {"symbols": [], "urls": [{"expanded_url": "http://coolworks.com", "indices": [70, 93], "display_url": "coolworks.com", "url": "https://t.co/DXH7Cg7mWP"}], "user_mentions": [{"name": "Temple Bar Marina", "indices": [40, 54], "id": 2381172043, "screen_name": "TBar_LakeMead", "id_str": "2381172043"}], "hashtags": [{"indices": [116, 131], "text": "ForeverResorts"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:09 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "TweetMyJOBS", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/U469BdpK3z", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 512}, "small": {"w": 340, "resize": "fit", "h": 170}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/HonorHealthJobs/status/716472329371410432/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFryZLUYAAQhjc.jpg", "indices": [96, 119], "id": 716472329224609792, "id_str": "716472329224609792", "display_url": "pic.twitter.com/U469BdpK3z", "media_url": "http://pbs.twimg.com/media/CfFryZLUYAAQhjc.jpg"}]}, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4558179680/1452120122", "description": "Career Tweets for HonorHealth", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "660066", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 28, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/681545752087166976/erxhdX1Q_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 45, "friends_count": 2, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "4558179680", "protected": false, "id": 4558179680, "favourites_count": 0, "profile_sidebar_fill_color": "000000", "screen_name": "HonorHealthJobs", "profile_image_url": "http://pbs.twimg.com/profile_images/681545752087166976/erxhdX1Q_normal.jpg", "lang": "en", "created_at": "Mon Dec 14 16:58:29 +0000 2015", "profile_use_background_image": true, "name": "HonorHealthJobs", "url": "http://HonorHealthJobs.com", "following": null, "profile_link_color": "660066", "statuses_count": 595, "is_translator": false}, "text": "We're #hiring! Click to apply: RN - https://t.co/v1MxgUTNfQ #Nursing #Scottsdale, AZ #Job #Jobs https://t.co/U469BdpK3z", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472329371410432", "id": 716472329371410432, "timestamp_ms": "1459655289391", "entities": {"symbols": [], "urls": [{"expanded_url": "http://bit.ly/1Tshe60", "indices": [36, 59], "display_url": "bit.ly/1Tshe60", "url": "https://t.co/v1MxgUTNfQ"}], "user_mentions": [], "hashtags": [{"indices": [6, 13], "text": "hiring"}, {"indices": [60, 68], "text": "Nursing"}, {"indices": [69, 80], "text": "Scottsdale"}, {"indices": [85, 89], "text": "Job"}, {"indices": [90, 95], "text": "Jobs"}], "media": [{"url": "https://t.co/U469BdpK3z", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 512}, "small": {"w": 340, "resize": "fit", "h": 170}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/HonorHealthJobs/status/716472329371410432/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFryZLUYAAQhjc.jpg", "indices": [96, 119], "id": 716472329224609792, "id_str": "716472329224609792", "display_url": "pic.twitter.com/U469BdpK3z", "media_url": "http://pbs.twimg.com/media/CfFryZLUYAAQhjc.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:09 +0000 2016", "coordinates": {"coordinates": [-111.9231494, 33.4886726], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4886726, -111.9231494], "type": "Point"}}, {"in_reply_to_status_id_str": "716464832984256512", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "90767699", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/258407245/1353522828", "description": "George Mason grad, formerly of Fox Sports in LA now CSN & MASN in DC, Go Caps Go - Natitude!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Washington, DC", "follow_request_sent": null, "followers_count": 384, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/528736871116189696/goF6hJm0_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 1070, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "258407245", "protected": false, "id": 258407245, "favourites_count": 1919, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "millerpenaltybx", "profile_image_url": "http://pbs.twimg.com/profile_images/528736871116189696/goF6hJm0_normal.jpeg", "lang": "en", "created_at": "Sun Feb 27 17:17:09 +0000 2011", "profile_use_background_image": true, "name": "Adam Miller", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 895, "is_translator": false}, "text": "@IscupWH wha, wha ... we wouldn't do that", "retweeted": false, "in_reply_to_screen_name": "IscupWH", "id_str": "716472333859291136", "id": 716472333859291136, "timestamp_ms": "1459655290461", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Martina", "indices": [0, 8], "id": 90767699, "screen_name": "IscupWH", "id_str": "90767699"}], "hashtags": []}, "in_reply_to_user_id": 90767699, "favorite_count": 0, "in_reply_to_status_id": 716464832984256512, "lang": "en", "created_at": "Sun Apr 03 03:48:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4095708013/1459487425", "description": "tillaaaaa", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 123, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716137091109785600/E2v5ejqe_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 145, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "4095708013", "protected": false, "id": 4095708013, "favourites_count": 758, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "sierraa_urias", "profile_image_url": "http://pbs.twimg.com/profile_images/716137091109785600/E2v5ejqe_normal.jpg", "lang": "en", "created_at": "Sun Nov 01 23:16:13 +0000 2015", "profile_use_background_image": true, "name": "Sierra", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3281, "is_translator": false}, "text": ":-(", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472336044523520", "id": 716472336044523520, "timestamp_ms": "1459655290982", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:48:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472111339081729", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "259026143", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/43603566/1389840761", "description": "Young Trump, Descendant of Uncle Ruckus. Savage Inc. One HELL of a gentleman.", "profile_sidebar_border_color": "323231", "profile_background_tile": false, "profile_background_color": "9A958E", "verified": false, "location": "The Valley ", "follow_request_sent": null, "followers_count": 816, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 46, "friends_count": 342, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/567981328/cy1lxdys3arnhc8b65a5.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "020202", "id_str": "43603566", "protected": false, "id": 43603566, "favourites_count": 161, "profile_sidebar_fill_color": "9A3B25", "screen_name": "blizzardwolf00", "profile_image_url": "http://pbs.twimg.com/profile_images/715977492687749121/e-qpUIyP_normal.jpg", "lang": "en", "created_at": "Sat May 30 22:10:06 +0000 2009", "profile_use_background_image": true, "name": "R. Von Hades", "url": "http://AbbasSTRONG.com", "following": null, "profile_link_color": "3B94D9", "statuses_count": 205119, "is_translator": false}, "text": "LMFAOOO RT @iii_am_mee: LMFAO https://t.co/zGAH4J7MSz", "retweeted": false, "in_reply_to_screen_name": "iii_am_mee", "id_str": "716472335700635648", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/hNl1azslof", "sizes": {"large": {"w": 594, "resize": "fit", "h": 509}, "small": {"w": 340, "resize": "fit", "h": 291}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 594, "resize": "fit", "h": 509}}, "type": "photo", "expanded_url": "http://twitter.com/amandalepwhore/status/716463793732104192/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFkBa6UEAALwsr.jpg", "indices": [115, 138], "id": 716463791295172608, "id_str": "716463791295172608", "display_url": "pic.twitter.com/hNl1azslof", "media_url": "http://pbs.twimg.com/media/CfFkBa6UEAALwsr.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3190540812/1431246810", "description": "IG: amandalepwhore", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 25, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/662149286012960769/issZrknD_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 25, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "3190540812", "protected": false, "id": 3190540812, "favourites_count": 22, "profile_sidebar_fill_color": "000000", "screen_name": "amandalepwhore", "profile_image_url": "http://pbs.twimg.com/profile_images/662149286012960769/issZrknD_normal.jpg", "lang": "en", "created_at": "Sun May 10 08:27:29 +0000 2015", "profile_use_background_image": false, "name": "Chris", "url": null, "following": null, "profile_link_color": "000000", "statuses_count": 35, "is_translator": false}, "text": "my uber driver hit someone and drove off. I got out okay but idk about the other driver! @Uber_Support this is her https://t.co/hNl1azslof", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716463793732104192", "id": 716463793732104192, "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Uber Support", "indices": [89, 102], "id": 2815754953, "screen_name": "Uber_Support", "id_str": "2815754953"}], "hashtags": [], "media": [{"url": "https://t.co/hNl1azslof", "sizes": {"large": {"w": 594, "resize": "fit", "h": 509}, "small": {"w": 340, "resize": "fit", "h": 291}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 594, "resize": "fit", "h": 509}}, "type": "photo", "expanded_url": "http://twitter.com/amandalepwhore/status/716463793732104192/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFkBa6UEAALwsr.jpg", "indices": [115, 138], "id": 716463791295172608, "id_str": "716463791295172608", "display_url": "pic.twitter.com/hNl1azslof", "media_url": "http://pbs.twimg.com/media/CfFkBa6UEAALwsr.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:14:14 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472335700635648, "timestamp_ms": "1459655290900", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/amandalepwhore/status/716463793732104192", "indices": [31, 54], "display_url": "twitter.com/amandalepwhore\u2026", "url": "https://t.co/zGAH4J7MSz"}], "user_mentions": [{"name": "Sir Francis Coquelin", "indices": [11, 22], "id": 259026143, "screen_name": "iii_am_mee", "id_str": "259026143"}], "hashtags": []}, "in_reply_to_user_id": 259026143, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": 716472111339081729, "quoted_status_id": 716463793732104192, "created_at": "Sun Apr 03 03:48:10 +0000 2016", "coordinates": null, "quoted_status_id_str": "716463793732104192", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716465406307729408", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "18519541", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/14702369/1397746711", "description": "Infosec, politics, culture and privilege, Sounders, Open Source Software, Tacoma, all things Cascadian.\n\nProgress! Tolerance! Acceptance! Feels!", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Tacoma, WA", "follow_request_sent": null, "followers_count": 434, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705263484041179137/WydQyZSS_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 42, "friends_count": 856, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "14702369", "protected": false, "id": 14702369, "favourites_count": 6525, "profile_sidebar_fill_color": "000000", "screen_name": "podfish", "profile_image_url": "http://pbs.twimg.com/profile_images/705263484041179137/WydQyZSS_normal.jpg", "lang": "en", "created_at": "Thu May 08 16:38:05 +0000 2008", "profile_use_background_image": false, "name": "Steven R. Ketelsen", "url": null, "following": null, "profile_link_color": "4A913C", "statuses_count": 13466, "is_translator": false}, "text": "@RR_Anderson ogmf course. Y", "retweeted": false, "in_reply_to_screen_name": "RR_Anderson", "id_str": "716472337474854912", "id": 716472337474854912, "timestamp_ms": "1459655291323", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Commander RR", "indices": [0, 12], "id": 18519541, "screen_name": "RR_Anderson", "id_str": "18519541"}], "hashtags": []}, "in_reply_to_user_id": 18519541, "favorite_count": 0, "in_reply_to_status_id": 716465406307729408, "lang": "en", "created_at": "Sun Apr 03 03:48:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/420579153/1440458612", "description": "wake, pray, slay", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "PHX \u25e1\u0308", "follow_request_sent": null, "followers_count": 2272, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/702990669858537472/ld1WP92b_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000165580429/U-hJ_Nh5.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 8, "friends_count": 730, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000165580429/U-hJ_Nh5.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "420579153", "protected": false, "id": 420579153, "favourites_count": 13555, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "kingkaylinn", "profile_image_url": "http://pbs.twimg.com/profile_images/702990669858537472/ld1WP92b_normal.jpg", "lang": "en", "created_at": "Thu Nov 24 20:30:56 +0000 2011", "profile_use_background_image": true, "name": "KK\u265b", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 10324, "is_translator": false}, "text": "Don't call me up at 2 a.m. tonight", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472345641103360", "id": 716472345641103360, "timestamp_ms": "1459655293270", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:13 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716125719110103040", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "614567911", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/614567911/1459122397", "description": "Loading | sc: t_knightt", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "KHS", "follow_request_sent": null, "followers_count": 1594, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715430991087534080/MsB1vY2j_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000079537293/b44ea2058dc419889d17ae89338cfa25.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 1096, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000079537293/b44ea2058dc419889d17ae89338cfa25.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "614567911", "protected": false, "id": 614567911, "favourites_count": 22705, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Trigidy_Troy24", "profile_image_url": "http://pbs.twimg.com/profile_images/715430991087534080/MsB1vY2j_normal.jpg", "lang": "en", "created_at": "Thu Jun 21 20:49:44 +0000 2012", "profile_use_background_image": true, "name": "Trigidy", "url": "http://youtu.be/qSq4BvdztfY", "following": null, "profile_link_color": "0084B4", "statuses_count": 25529, "is_translator": false}, "text": "@Trigidy_Troy24 hit me", "retweeted": false, "in_reply_to_screen_name": "Trigidy_Troy24", "id_str": "716472347662770176", "id": 716472347662770176, "timestamp_ms": "1459655293752", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Trigidy", "indices": [0, 15], "id": 614567911, "screen_name": "Trigidy_Troy24", "id_str": "614567911"}], "hashtags": []}, "in_reply_to_user_id": 614567911, "favorite_count": 0, "in_reply_to_status_id": 716125719110103040, "lang": "en", "created_at": "Sun Apr 03 03:48:13 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/163884087/1458243111", "description": "don't tweet if you don't want a reaction....", "profile_sidebar_border_color": "BABAB2", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 373, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711342974441893889/BgPM-Aes_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/371789707/nicki-minaj-booty-naked-mixtape-tagged-copy.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 420, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/371789707/nicki-minaj-booty-naked-mixtape-tagged-copy.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "120F12", "id_str": "163884087", "protected": false, "id": 163884087, "favourites_count": 4718, "profile_sidebar_fill_color": "BABAB2", "screen_name": "ELtrue11", "profile_image_url": "http://pbs.twimg.com/profile_images/711342974441893889/BgPM-Aes_normal.jpg", "lang": "en", "created_at": "Wed Jul 07 14:26:52 +0000 2010", "profile_use_background_image": true, "name": "Bruh...", "url": "http://readabook.com", "following": null, "profile_link_color": "2891E2", "statuses_count": 9133, "is_translator": false}, "text": "Nigga your flat top look like cornbread https://t.co/VzakQYs9BD", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472375487770625", "quoted_status": {"in_reply_to_status_id_str": "716470746030080002", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "163884087", "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/63073288/1399403800", "description": "Take this good advice, cuz they gon judge you fa life.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "EDF2F5", "verified": false, "location": "ASU SUN DEVIL", "follow_request_sent": null, "followers_count": 401, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/568198652082913281/1agX562X_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534472344740188160/nrv5lHKW.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 573, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534472344740188160/nrv5lHKW.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "63073288", "protected": false, "id": 63073288, "favourites_count": 476, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "JabbzNoTyson", "profile_image_url": "http://pbs.twimg.com/profile_images/568198652082913281/1agX562X_normal.jpeg", "lang": "en", "created_at": "Wed Aug 05 08:23:13 +0000 2009", "profile_use_background_image": true, "name": "Khalil", "url": null, "following": null, "profile_link_color": "11507A", "statuses_count": 7213, "is_translator": false}, "text": "@ELtrue11 fuck u and go make some of that fire ass cornbread boi, save me half", "retweeted": false, "in_reply_to_screen_name": "ELtrue11", "id_str": "716472272534384640", "id": 716472272534384640, "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Bruh...", "indices": [0, 9], "id": 163884087, "screen_name": "ELtrue11", "id_str": "163884087"}], "hashtags": []}, "in_reply_to_user_id": 163884087, "favorite_count": 0, "in_reply_to_status_id": 716470746030080002, "lang": "en", "created_at": "Sun Apr 03 03:47:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472375487770625, "timestamp_ms": "1459655300386", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/jabbznotyson/status/716472272534384640", "indices": [41, 64], "display_url": "twitter.com/jabbznotyson/s\u2026", "url": "https://t.co/VzakQYs9BD"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716472272534384640, "created_at": "Sun Apr 03 03:48:20 +0000 2016", "coordinates": null, "quoted_status_id_str": "716472272534384640", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716376044282843136", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "2872281968", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/ceWG2Kf483", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/Vincent72683021/status/716472392344686592/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr1yzUkAAnFCK.jpg", "indices": [58, 81], "id": 716472387642888192, "id_str": "716472387642888192", "display_url": "pic.twitter.com/ceWG2Kf483", "media_url": "http://pbs.twimg.com/media/CfFr1yzUkAAnFCK.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 20, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712166325750083584/sZdtKQ6o_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 92, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "706358650403590144", "protected": false, "id": 706358650403590144, "favourites_count": 10, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Vincent72683021", "profile_image_url": "http://pbs.twimg.com/profile_images/712166325750083584/sZdtKQ6o_normal.jpg", "lang": "en", "created_at": "Sun Mar 06 06:00:00 +0000 2016", "profile_use_background_image": true, "name": "druglord", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 12, "is_translator": false}, "text": "@HaydenNeault13 @cookieboy1794 @EASPORTS_MUT I pulled him https://t.co/ceWG2Kf483", "retweeted": false, "in_reply_to_screen_name": "HaydenNeault13", "id_str": "716472392344686592", "id": 716472392344686592, "timestamp_ms": "1459655304405", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Hayden Neault", "indices": [0, 15], "id": 2872281968, "screen_name": "HaydenNeault13", "id_str": "2872281968"}, {"name": "cookieboy17", "indices": [16, 30], "id": 600591646, "screen_name": "cookieboy1794", "id_str": "600591646"}, {"name": "Madden Ultimate Team", "indices": [31, 44], "id": 405027739, "screen_name": "EASPORTS_MUT", "id_str": "405027739"}], "hashtags": [], "media": [{"url": "https://t.co/ceWG2Kf483", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/Vincent72683021/status/716472392344686592/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr1yzUkAAnFCK.jpg", "indices": [58, 81], "id": 716472387642888192, "id_str": "716472387642888192", "display_url": "pic.twitter.com/ceWG2Kf483", "media_url": "http://pbs.twimg.com/media/CfFr1yzUkAAnFCK.jpg"}]}, "in_reply_to_user_id": 2872281968, "favorite_count": 0, "in_reply_to_status_id": 716376044282843136, "lang": "en", "created_at": "Sun Apr 03 03:48:24 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716459786561126400", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2331381182", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/727054584/1440961312", "description": "This is your warning, I'm weird. \u26a0\ufe0fArizona State University\u26a0\ufe0f I.IV.MCMXCVII", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 345, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715727480565272576/7BgOFLKQ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 409, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "727054584", "protected": false, "id": 727054584, "favourites_count": 11651, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "FindingAdam4", "profile_image_url": "http://pbs.twimg.com/profile_images/715727480565272576/7BgOFLKQ_normal.jpg", "lang": "en", "created_at": "Mon Jul 30 23:14:36 +0000 2012", "profile_use_background_image": true, "name": "[]", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 14982, "is_translator": false}, "text": "@PatrickSwayze22 Asu downtown. Asu Tempe", "retweeted": false, "in_reply_to_screen_name": "PatrickSwayze22", "id_str": "716472398862659584", "id": 716472398862659584, "timestamp_ms": "1459655305959", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Andrew Katz", "indices": [0, 16], "id": 2331381182, "screen_name": "PatrickSwayze22", "id_str": "2331381182"}], "hashtags": []}, "in_reply_to_user_id": 2331381182, "favorite_count": 0, "in_reply_to_status_id": 716459786561126400, "lang": "sl", "created_at": "Sun Apr 03 03:48:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471209408397312", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "346333803", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/VNSHGmfcWU", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/friduuhh/status/716472402184523776/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFroX3UkAABCS4.jpg", "indices": [32, 55], "id": 716472157073608704, "id_str": "716472157073608704", "display_url": "pic.twitter.com/VNSHGmfcWU", "media_url": "http://pbs.twimg.com/media/CfFroX3UkAABCS4.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/346333803/1458125070", "description": "she/her studious earth loving vegan xicana | #blacklivesmatter #brownandunbothered", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "phnx", "follow_request_sent": null, "followers_count": 631, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/680952540788166657/jHKrTcb3_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/588935471188676609/hHV9PQfb.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 455, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/588935471188676609/hHV9PQfb.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "346333803", "protected": false, "id": 346333803, "favourites_count": 9382, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "friduuhh", "profile_image_url": "http://pbs.twimg.com/profile_images/680952540788166657/jHKrTcb3_normal.jpg", "lang": "en", "created_at": "Mon Aug 01 03:08:56 +0000 2011", "profile_use_background_image": true, "name": "feminista", "url": "http://Instagram.com/friduuhh", "following": null, "profile_link_color": "0084B4", "statuses_count": 4783, "is_translator": false}, "text": "@friduuhh \"oh you look like it\" https://t.co/VNSHGmfcWU", "retweeted": false, "in_reply_to_screen_name": "friduuhh", "id_str": "716472402184523776", "id": 716472402184523776, "timestamp_ms": "1459655306751", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "feminista", "indices": [0, 9], "id": 346333803, "screen_name": "friduuhh", "id_str": "346333803"}], "hashtags": [], "media": [{"url": "https://t.co/VNSHGmfcWU", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1365}, "small": {"w": 340, "resize": "fit", "h": 453}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 800}}, "type": "photo", "expanded_url": "http://twitter.com/friduuhh/status/716472402184523776/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFroX3UkAABCS4.jpg", "indices": [32, 55], "id": 716472157073608704, "id_str": "716472157073608704", "display_url": "pic.twitter.com/VNSHGmfcWU", "media_url": "http://pbs.twimg.com/media/CfFroX3UkAABCS4.jpg"}]}, "in_reply_to_user_id": 346333803, "favorite_count": 0, "in_reply_to_status_id": 716471209408397312, "lang": "en", "created_at": "Sun Apr 03 03:48:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2457457297/1459312343", "description": "aye, chill.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 504, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715094255535054848/tPBQ0mu9_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 98, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "2457457297", "protected": false, "id": 2457457297, "favourites_count": 46676, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "intiminate", "profile_image_url": "http://pbs.twimg.com/profile_images/715094255535054848/tPBQ0mu9_normal.jpg", "lang": "en", "created_at": "Tue Apr 22 01:58:13 +0000 2014", "profile_use_background_image": true, "name": "n8", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 60549, "is_translator": false}, "text": "Aye someone hook me up w some chill music, like quote this or DM me or somethin idk", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472406005579776", "id": 716472406005579776, "timestamp_ms": "1459655307662", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:27 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1876679766/1452473737", "description": "156 || snapchat - lydia.hannah", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Handcross, England", "follow_request_sent": null, "followers_count": 154, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/706279633499660289/UpoppGL0_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 172, "utc_offset": 3600, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "time_zone": "London", "profile_text_color": "000000", "id_str": "1876679766", "protected": false, "id": 1876679766, "favourites_count": 2819, "profile_sidebar_fill_color": "000000", "screen_name": "lydiahannah_", "profile_image_url": "http://pbs.twimg.com/profile_images/706279633499660289/UpoppGL0_normal.jpg", "lang": "en-gb", "created_at": "Tue Sep 17 19:55:14 +0000 2013", "profile_use_background_image": false, "name": "lydia", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 2327, "is_translator": false}, "text": "i hope my cats are havin a sweet holiday", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472408006209536", "id": 716472408006209536, "timestamp_ms": "1459655308139", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472352633196544", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "47705062", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/167043550/1458260632", "description": "RIP Edward \u2764\ufe0f @harleyyyquinn_ is my dominatrix. #HillaryForPrisonNotPresident", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "DEN \u2708\ufe0f PHX", "follow_request_sent": null, "followers_count": 2643, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 109, "friends_count": 761, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "00EB00", "id_str": "167043550", "protected": false, "id": 167043550, "favourites_count": 455, "profile_sidebar_fill_color": "000000", "screen_name": "Thotcho", "profile_image_url": "http://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "lang": "en", "created_at": "Thu Jul 15 16:28:39 +0000 2010", "profile_use_background_image": true, "name": "not a diva", "url": "https://vine.co/v/OPYaZvdYxqA", "following": null, "profile_link_color": "960087", "statuses_count": 230510, "is_translator": false}, "text": "@BlxxdyB @HarleyyyQuinn_ lmao that's my thing", "retweeted": false, "in_reply_to_screen_name": "BlxxdyB", "id_str": "716472411185504256", "id": 716472411185504256, "timestamp_ms": "1459655308897", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u0644\u0622", "indices": [0, 8], "id": 47705062, "screen_name": "BlxxdyB", "id_str": "47705062"}, {"name": "Harleen Quinzel", "indices": [9, 24], "id": 160853993, "screen_name": "HarleyyyQuinn_", "id_str": "160853993"}], "hashtags": []}, "in_reply_to_user_id": 47705062, "favorite_count": 0, "in_reply_to_status_id": 716472352633196544, "lang": "en", "created_at": "Sun Apr 03 03:48:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716467172545921024", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "20006987", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/279345706/1442706484", "description": "Grew up playing hockey in the desert. \n@ArizonaCoyotes & @UofA STM who drives from TUCSON for every game. Only joined TWITTER to follow COYOTES & @AZathletics!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "TUCSON, ARIZONA", "follow_request_sent": null, "followers_count": 725, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1328658837/coyotes_2011_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 39, "friends_count": 2210, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "279345706", "protected": false, "id": 279345706, "favourites_count": 53788, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "hinsightprophet", "profile_image_url": "http://pbs.twimg.com/profile_images/1328658837/coyotes_2011_normal.jpg", "lang": "en", "created_at": "Sat Apr 09 02:51:23 +0000 2011", "profile_use_background_image": true, "name": "Kyle Canfield", "url": "http://www.beardathon.com/coyotes/team.aspx", "following": null, "profile_link_color": "0084B4", "statuses_count": 21444, "is_translator": false}, "text": "@ArizonaCoyotes @SunWestFCU \n\nDOAN\nO\nA\nN\n\n#SunWest1stGoal", "retweeted": false, "in_reply_to_screen_name": "ArizonaCoyotes", "id_str": "716472415224619008", "id": 716472415224619008, "timestamp_ms": "1459655309860", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "#PackPrideNight", "indices": [0, 15], "id": 20006987, "screen_name": "ArizonaCoyotes", "id_str": "20006987"}, {"name": "SunWest FCU", "indices": [16, 27], "id": 874886042, "screen_name": "SunWestFCU", "id_str": "874886042"}], "hashtags": [{"indices": [42, 57], "text": "SunWest1stGoal"}]}, "in_reply_to_user_id": 20006987, "favorite_count": 0, "in_reply_to_status_id": 716467172545921024, "lang": "eu", "created_at": "Sun Apr 03 03:48:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "53703813", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/106462025/1458325992", "description": "Not like you", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1121, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715711474061029376/j4AJsCaO_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 404, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "106462025", "protected": false, "id": 106462025, "favourites_count": 34199, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tylerfromnj", "profile_image_url": "http://pbs.twimg.com/profile_images/715711474061029376/j4AJsCaO_normal.jpg", "lang": "en", "created_at": "Tue Jan 19 16:53:23 +0000 2010", "profile_use_background_image": true, "name": "tyler", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 23774, "is_translator": false}, "text": "@heyshannn Hot", "retweeted": false, "in_reply_to_screen_name": "heyshannn", "id_str": "716472431221714945", "id": 716472431221714945, "timestamp_ms": "1459655313674", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Shanngelina Jolie", "indices": [0, 10], "id": 53703813, "screen_name": "heyshannn", "id_str": "53703813"}], "hashtags": []}, "in_reply_to_user_id": 53703813, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:48:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470129706414080", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "20006987", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/762121830/1458964417", "description": "ASU Business Communication/Marketing '17. I desire to follow God, and to drink a lot of coffee. \u03a9\u03a6\u0391.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 165, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714922048297025536/FOryqO1I_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 187, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "762121830", "protected": false, "id": 762121830, "favourites_count": 614, "profile_sidebar_fill_color": "000000", "screen_name": "CassidyRue", "profile_image_url": "http://pbs.twimg.com/profile_images/714922048297025536/FOryqO1I_normal.jpg", "lang": "en", "created_at": "Thu Aug 16 18:56:48 +0000 2012", "profile_use_background_image": false, "name": "Cassidy Rue", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 468, "is_translator": false}, "text": "@ArizonaCoyotes wait but did Santana say yes??? \ud83d\ude33\ud83d\ude33\ud83d\ude33", "retweeted": false, "in_reply_to_screen_name": "ArizonaCoyotes", "id_str": "716472432098344961", "id": 716472432098344961, "timestamp_ms": "1459655313883", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "#PackPrideNight", "indices": [0, 15], "id": 20006987, "screen_name": "ArizonaCoyotes", "id_str": "20006987"}], "hashtags": []}, "in_reply_to_user_id": 20006987, "favorite_count": 0, "in_reply_to_status_id": 716470129706414080, "lang": "en", "created_at": "Sun Apr 03 03:48:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472359486693376", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "48403031", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/284617616/1457152355", "description": "Photo / Cinema | Travel | Dreams | IG: @jbillzphotos", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Las Vegas", "follow_request_sent": null, "followers_count": 2476, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/633127394174353408/kILHfebZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 1318, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "284617616", "protected": false, "id": 284617616, "favourites_count": 7636, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JbillzPhotos", "profile_image_url": "http://pbs.twimg.com/profile_images/633127394174353408/kILHfebZ_normal.jpg", "lang": "en", "created_at": "Tue Apr 19 16:35:54 +0000 2011", "profile_use_background_image": true, "name": "JAY TR!LLZ", "url": "http://www.jordanbillings.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 17685, "is_translator": false}, "text": "@iamjacknovak you can never go wrong chasing your dreams!", "retweeted": false, "in_reply_to_screen_name": "iamjacknovak", "id_str": "716472454298775553", "id": 716472454298775553, "timestamp_ms": "1459655319176", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "jack novak", "indices": [0, 13], "id": 48403031, "screen_name": "iamjacknovak", "id_str": "48403031"}], "hashtags": []}, "in_reply_to_user_id": 48403031, "favorite_count": 0, "in_reply_to_status_id": 716472359486693376, "lang": "en", "created_at": "Sun Apr 03 03:48:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/167043550/1458260632", "description": "RIP Edward \u2764\ufe0f @harleyyyquinn_ is my dominatrix. #HillaryForPrisonNotPresident", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "DEN \u2708\ufe0f PHX", "follow_request_sent": null, "followers_count": 2643, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 109, "friends_count": 761, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "00EB00", "id_str": "167043550", "protected": false, "id": 167043550, "favourites_count": 455, "profile_sidebar_fill_color": "000000", "screen_name": "Thotcho", "profile_image_url": "http://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "lang": "en", "created_at": "Thu Jul 15 16:28:39 +0000 2010", "profile_use_background_image": true, "name": "not a diva", "url": "https://vine.co/v/OPYaZvdYxqA", "following": null, "profile_link_color": "960087", "statuses_count": 230511, "is_translator": false}, "text": "No homo @LOUD_besos", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472455804510209", "id": 716472455804510209, "timestamp_ms": "1459655319535", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Anne Boelyn", "indices": [8, 19], "id": 274782841, "screen_name": "LOUD_besos", "id_str": "274782841"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "es", "created_at": "Sun Apr 03 03:48:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/1Xnxh5pxvG", "sizes": {"small": {"w": 340, "resize": "fit", "h": 409}, "large": {"w": 1024, "resize": "fit", "h": 1232}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 722}}, "type": "photo", "expanded_url": "http://twitter.com/Mandy_W21/status/716472477904285696/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr5_UVAAAjNDb.jpg", "indices": [49, 72], "id": 716472459722031104, "id_str": "716472459722031104", "display_url": "pic.twitter.com/1Xnxh5pxvG", "media_url": "http://pbs.twimg.com/media/CfFr5_UVAAAjNDb.jpg"}]}, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2961175647/1453523586", "description": "|Animal Lover| I don't eat pals| #FeelTheBern", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "The Moon \u2728", "follow_request_sent": null, "followers_count": 64, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711602494539862016/GK2VFLrr_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 12, "friends_count": 47, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2961175647", "protected": false, "id": 2961175647, "favourites_count": 2672, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Mandy_W21", "profile_image_url": "http://pbs.twimg.com/profile_images/711602494539862016/GK2VFLrr_normal.jpg", "lang": "en", "created_at": "Mon Jan 05 00:19:04 +0000 2015", "profile_use_background_image": true, "name": "MW\u2728", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 850, "is_translator": false}, "text": "Vegan tacos for dinner.\ud83d\udc4c\ud83c\udffb\n#dinner #whatveganseat https://t.co/1Xnxh5pxvG", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472477904285696", "id": 716472477904285696, "timestamp_ms": "1459655324804", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [26, 33], "text": "dinner"}, {"indices": [34, 48], "text": "whatveganseat"}], "media": [{"url": "https://t.co/1Xnxh5pxvG", "sizes": {"small": {"w": 340, "resize": "fit", "h": 409}, "large": {"w": 1024, "resize": "fit", "h": 1232}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 722}}, "type": "photo", "expanded_url": "http://twitter.com/Mandy_W21/status/716472477904285696/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr5_UVAAAjNDb.jpg", "indices": [49, 72], "id": 716472459722031104, "id_str": "716472459722031104", "display_url": "pic.twitter.com/1Xnxh5pxvG", "media_url": "http://pbs.twimg.com/media/CfFr5_UVAAAjNDb.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "sv", "created_at": "Sun Apr 03 03:48:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4895643194/1455259785", "description": "Professional Boxer 2-0 signed with @ironboyboxing & managed by Cameron Dunkin #TeamGarcia #EasyWork IG & SC: @Teamdannygarcia", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Los Angeles, CA, Phoenix, Az", "follow_request_sent": null, "followers_count": 53, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704527413674283009/2jLqcnQc_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 82, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4895643194", "protected": false, "id": 4895643194, "favourites_count": 418, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "teamdannygarcia", "profile_image_url": "http://pbs.twimg.com/profile_images/704527413674283009/2jLqcnQc_normal.jpg", "lang": "en", "created_at": "Fri Feb 12 04:30:58 +0000 2016", "profile_use_background_image": true, "name": "Daniel Garcia", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 558, "is_translator": false}, "text": "Just keep going", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472487165333504", "id": 716472487165333504, "timestamp_ms": "1459655327012", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472073690812416", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "377841178", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/622710408/1459484530", "description": "\u2800\u2800\u2800\u2800\u2800", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Az ", "follow_request_sent": null, "followers_count": 1020, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713481342026055680/6uQy9MEM_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000061742038/98c4d845f03bb963d49a45d869d8921b.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 477, "utc_offset": -36000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000061742038/98c4d845f03bb963d49a45d869d8921b.png", "time_zone": "Hawaii", "profile_text_color": "333333", "id_str": "622710408", "protected": false, "id": 622710408, "favourites_count": 12387, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Skillydilly1", "profile_image_url": "http://pbs.twimg.com/profile_images/713481342026055680/6uQy9MEM_normal.jpg", "lang": "en", "created_at": "Sat Jun 30 08:18:13 +0000 2012", "profile_use_background_image": true, "name": "\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800", "url": "http://soundcloud.com/dylan-sherrill", "following": null, "profile_link_color": "FF3300", "statuses_count": 24928, "is_translator": false}, "text": "@jakeroash ;)", "retweeted": false, "in_reply_to_screen_name": "jakeroash", "id_str": "716472491586129920", "id": 716472491586129920, "timestamp_ms": "1459655328066", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "jake", "indices": [0, 10], "id": 377841178, "screen_name": "jakeroash", "id_str": "377841178"}], "hashtags": []}, "in_reply_to_user_id": 377841178, "favorite_count": 0, "in_reply_to_status_id": 716472073690812416, "lang": "und", "created_at": "Sun Apr 03 03:48:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472407540641793", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "216198230", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3489035659/1441725806", "description": "I love you like you should love yourself", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 428, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 411, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3489035659", "protected": false, "id": 3489035659, "favourites_count": 5808, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexnderkostas", "profile_image_url": "http://pbs.twimg.com/profile_images/665197632617209860/QA6SB-VF_normal.jpg", "lang": "en", "created_at": "Tue Sep 08 04:03:51 +0000 2015", "profile_use_background_image": true, "name": "KOSTAS", "url": "http://losertilldeath.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 11134, "is_translator": false}, "text": "@moexmarley ahhahahahhducidofokwdmudidkcjdieocnidoencndje I'm staying in", "retweeted": false, "in_reply_to_screen_name": "moexmarley", "id_str": "716472494522109952", "id": 716472494522109952, "timestamp_ms": "1459655328766", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Stoney Boloney", "indices": [0, 11], "id": 216198230, "screen_name": "moexmarley", "id_str": "216198230"}], "hashtags": []}, "in_reply_to_user_id": 216198230, "favorite_count": 0, "in_reply_to_status_id": 716472407540641793, "lang": "nl", "created_at": "Sun Apr 03 03:48:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1317511914", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "San Tan Valley, AZ", "place_type": "city", "attributes": {}, "name": "San Tan Valley", "country": "United States", "id": "002b06ee2655168a", "bounding_box": {"coordinates": [[[-111.63454, 33.08929], [-111.63454, 33.307181], [-111.486497, 33.307181], [-111.486497, 33.08929]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/002b06ee2655168a.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1927332542/1458959809", "description": "theatre", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 304, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712088592059731968/eSTgwLiK_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 376, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1927332542", "protected": false, "id": 1927332542, "favourites_count": 2213, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "kenzieshea521", "profile_image_url": "http://pbs.twimg.com/profile_images/712088592059731968/eSTgwLiK_normal.jpg", "lang": "en", "created_at": "Wed Oct 02 16:00:30 +0000 2013", "profile_use_background_image": true, "name": "kenz", "url": "http://Instagram.com/heykenzieshea", "following": null, "profile_link_color": "0084B4", "statuses_count": 1667, "is_translator": false}, "text": "@_xandraa__ you truly are the girl of many talents", "retweeted": false, "in_reply_to_screen_name": "_xandraa__", "id_str": "716472496967393281", "id": 716472496967393281, "timestamp_ms": "1459655329349", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "xandra gunnell", "indices": [0, 11], "id": 1317511914, "screen_name": "_xandraa__", "id_str": "1317511914"}], "hashtags": []}, "in_reply_to_user_id": 1317511914, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471827305000960", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "301021057", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80698, "is_translator": false}, "text": "\u201c@Jacti0nJ: If u drive a 2016 u got money idc\u201d\n\nlmao ehh", "retweeted": false, "in_reply_to_screen_name": "Jacti0nJ", "id_str": "716472499492356096", "id": 716472499492356096, "timestamp_ms": "1459655329951", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Weave Wilkos", "indices": [1, 10], "id": 301021057, "screen_name": "Jacti0nJ", "id_str": "301021057"}], "hashtags": []}, "in_reply_to_user_id": 301021057, "favorite_count": 0, "in_reply_to_status_id": 716471827305000960, "lang": "en", "created_at": "Sun Apr 03 03:48:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Windows Phone", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/258644814/1459545614", "description": "Supporting what's important to me one tweet at a time// tweets are my own***", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona ", "follow_request_sent": null, "followers_count": 160, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716011132389957632/GdXT1OYp_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 303, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "258644814", "protected": false, "id": 258644814, "favourites_count": 245, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Just_Lisett", "profile_image_url": "http://pbs.twimg.com/profile_images/716011132389957632/GdXT1OYp_normal.jpg", "lang": "en", "created_at": "Mon Feb 28 04:35:22 +0000 2011", "profile_use_background_image": true, "name": "Lisett Cabral Olsen", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1559, "is_translator": false}, "text": "I'm lighting it up blue! Are You???#LightItUpBlue #AutsimAwareness @CU4Kids @autismspeaks @autismspeaksla", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472510384963584", "id": 716472510384963584, "timestamp_ms": "1459655332548", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "CU4Kids", "indices": [67, 75], "id": 156033712, "screen_name": "CU4Kids", "id_str": "156033712"}, {"name": "Autism Speaks", "indices": [76, 89], "id": 14266331, "screen_name": "autismspeaks", "id_str": "14266331"}, {"name": "Autism Speaks - LA", "indices": [90, 105], "id": 20404252, "screen_name": "autismspeaksla", "id_str": "20404252"}], "hashtags": [{"indices": [35, 49], "text": "LightItUpBlue"}, {"indices": [50, 66], "text": "AutsimAwareness"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:52 +0000 2016", "coordinates": {"coordinates": [-112.28196481, 33.46911425], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.46911425, -112.28196481], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/803804606/1458362562", "description": "She believed she could, so she did. @kline_mnm @mylacagle", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "the grove", "follow_request_sent": null, "followers_count": 2177, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712892097070649348/lnBRoxX6_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 16, "friends_count": 1729, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "803804606", "protected": false, "id": 803804606, "favourites_count": 85444, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "caitlinp33", "profile_image_url": "http://pbs.twimg.com/profile_images/712892097070649348/lnBRoxX6_normal.jpg", "lang": "en", "created_at": "Wed Sep 05 03:57:04 +0000 2012", "profile_use_background_image": true, "name": "caitlin personale", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 9576, "is_translator": false}, "text": "Really shouldn't have tweeted the address :(", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472512859648001", "id": 716472512859648001, "timestamp_ms": "1459655333138", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": true, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/167043550/1458260632", "description": "RIP Edward \u2764\ufe0f @harleyyyquinn_ is my dominatrix. #HillaryForPrisonNotPresident", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "DEN \u2708\ufe0f PHX", "follow_request_sent": null, "followers_count": 2643, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 109, "friends_count": 761, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "00EB00", "id_str": "167043550", "protected": false, "id": 167043550, "favourites_count": 455, "profile_sidebar_fill_color": "000000", "screen_name": "Thotcho", "profile_image_url": "http://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "lang": "en", "created_at": "Thu Jul 15 16:28:39 +0000 2010", "profile_use_background_image": true, "name": "not a diva", "url": "https://vine.co/v/OPYaZvdYxqA", "following": null, "profile_link_color": "960087", "statuses_count": 230512, "is_translator": false}, "text": "Same. https://t.co/d7ze5ImmIH", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472514453450752", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": true, "place": null, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/274850230/1458501731", "description": "What did I do this time?", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 4402, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712545789554343940/WHTbVqGO_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576842955874435072/gCOXaht0.png", "default_profile_image": false, "notifications": null, "listed_count": 169, "friends_count": 1729, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576842955874435072/gCOXaht0.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "274850230", "protected": false, "id": 274850230, "favourites_count": 9415, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Aneerinyourear", "profile_image_url": "http://pbs.twimg.com/profile_images/712545789554343940/WHTbVqGO_normal.jpg", "lang": "en", "created_at": "Thu Mar 31 04:15:49 +0000 2011", "profile_use_background_image": true, "name": "Aneer", "url": "http://AneerWasHacked.com", "following": null, "profile_link_color": "009999", "statuses_count": 228165, "is_translator": false}, "text": "That exact order. https://t.co/bJTF6Feo7m", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472186836418560", "id": 716472186836418560, "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/KayeDrizzle/status/716415273553637376", "indices": [20, 43], "display_url": "twitter.com/KayeDrizzle/st\u2026", "url": "https://t.co/bJTF6Feo7m"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716415273553637376, "created_at": "Sun Apr 03 03:47:35 +0000 2016", "coordinates": null, "quoted_status_id_str": "716415273553637376", "retweet_count": 0, "geo": null}, "id": 716472514453450752, "timestamp_ms": "1459655333518", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/aneerinyourear/status/716472186836418560", "indices": [7, 30], "display_url": "twitter.com/aneerinyourear\u2026", "url": "https://t.co/d7ze5ImmIH"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716472186836418560, "created_at": "Sun Apr 03 03:48:53 +0000 2016", "coordinates": null, "quoted_status_id_str": "716472186836418560", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/497366741/1459247907", "description": "NewJersey \u2708\ufe0f Arizona | 18", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "FA0598", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 589, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716435276185272324/UsHNs-Xn_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/881814686/b07fb8b3b6295c263a3bc3baa9204e36.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 562, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/881814686/b07fb8b3b6295c263a3bc3baa9204e36.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "497366741", "protected": false, "id": 497366741, "favourites_count": 2325, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Patriceeee_", "profile_image_url": "http://pbs.twimg.com/profile_images/716435276185272324/UsHNs-Xn_normal.jpg", "lang": "en", "created_at": "Sun Feb 19 22:32:11 +0000 2012", "profile_use_background_image": true, "name": "patrice", "url": null, "following": null, "profile_link_color": "EC83F2", "statuses_count": 19161, "is_translator": false}, "text": "I really wanted chic fil a .. This shit is STUPID \ud83d\ude21\ud83d\ude21\ud83d\ude21\ud83d\ude21", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472516701597697", "id": 716472516701597697, "timestamp_ms": "1459655334054", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"description": "54 days | cfa \u300b", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 202, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714297212348600320/yXjtFKrj_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000027588771/4cc5bafd910ba608061b6da5d6ed6466.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 189, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000027588771/4cc5bafd910ba608061b6da5d6ed6466.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1605138312", "protected": false, "id": 1605138312, "favourites_count": 3847, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JVOmaddy", "profile_image_url": "http://pbs.twimg.com/profile_images/714297212348600320/yXjtFKrj_normal.jpg", "lang": "en", "created_at": "Fri Jul 19 05:34:53 +0000 2013", "profile_use_background_image": true, "name": "Madeline", "url": null, "following": null, "profile_link_color": "000000", "statuses_count": 3518, "is_translator": false}, "text": "Been bumping that Yeezy \ud83c\udfb6", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472526726045696", "id": 716472526726045696, "timestamp_ms": "1459655336444", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:48:56 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/o0Qm9xIDOV", "sizes": {"small": {"w": 340, "resize": "fit", "h": 290}, "large": {"w": 968, "resize": "fit", "h": 826}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 512}}, "type": "photo", "expanded_url": "http://twitter.com/ultraslut/status/716472542496555009/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr-Q2VAAALsOK.jpg", "indices": [59, 82], "id": 716472533147516928, "id_str": "716472533147516928", "display_url": "pic.twitter.com/o0Qm9xIDOV", "media_url": "http://pbs.twimg.com/media/CfFr-Q2VAAALsOK.jpg"}, {"url": "https://t.co/o0Qm9xIDOV", "sizes": {"small": {"w": 340, "resize": "fit", "h": 303}, "large": {"w": 947, "resize": "fit", "h": 843}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 534}}, "type": "photo", "expanded_url": "http://twitter.com/ultraslut/status/716472542496555009/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr-Q9UsAAFypw.jpg", "indices": [59, 82], "id": 716472533176856576, "id_str": "716472533176856576", "display_url": "pic.twitter.com/o0Qm9xIDOV", "media_url": "http://pbs.twimg.com/media/CfFr-Q9UsAAFypw.jpg"}]}, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/135153863/1458782456", "description": null, "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 953, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712812118081310721/jl0qIy4s_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623388544959037440/nzOTa7O4.jpg", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 622, "utc_offset": -28800, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623388544959037440/nzOTa7O4.jpg", "time_zone": "Alaska", "profile_text_color": "000000", "id_str": "135153863", "protected": false, "id": 135153863, "favourites_count": 38886, "profile_sidebar_fill_color": "9C9C9C", "screen_name": "ultraslut", "profile_image_url": "http://pbs.twimg.com/profile_images/712812118081310721/jl0qIy4s_normal.jpg", "lang": "en", "created_at": "Tue Apr 20 13:49:27 +0000 2010", "profile_use_background_image": true, "name": "ULTRA", "url": "http://soundcloud.com/u_tra", "following": null, "profile_link_color": "000000", "statuses_count": 38186, "is_translator": false}, "text": "I'M JACKING OFF TO 3D RENDER GAY ARMPIT FETISH PHOTOS LMAO https://t.co/o0Qm9xIDOV", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472542496555009", "id": 716472542496555009, "timestamp_ms": "1459655340204", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/o0Qm9xIDOV", "sizes": {"small": {"w": 340, "resize": "fit", "h": 290}, "large": {"w": 968, "resize": "fit", "h": 826}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 512}}, "type": "photo", "expanded_url": "http://twitter.com/ultraslut/status/716472542496555009/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr-Q2VAAALsOK.jpg", "indices": [59, 82], "id": 716472533147516928, "id_str": "716472533147516928", "display_url": "pic.twitter.com/o0Qm9xIDOV", "media_url": "http://pbs.twimg.com/media/CfFr-Q2VAAALsOK.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/249946304/1457950826", "description": "sensational.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Mesa, AZ", "follow_request_sent": null, "followers_count": 625, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708039939795984384/d1whC2-q_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 503, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "249946304", "protected": false, "id": 249946304, "favourites_count": 6349, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "almightypalafox", "profile_image_url": "http://pbs.twimg.com/profile_images/708039939795984384/d1whC2-q_normal.jpg", "lang": "en", "created_at": "Thu Feb 10 03:02:23 +0000 2011", "profile_use_background_image": true, "name": "Swaggy P", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 19928, "is_translator": false}, "text": "I love @evannezer", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472544891506688", "id": 716472544891506688, "timestamp_ms": "1459655340775", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "evannezer", "indices": [7, 17], "id": 420602119, "screen_name": "evannezer", "id_str": "420602119"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471702285225984", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "390556375", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/225667095/1454948299", "description": "if there is a will, there's a way, and I have a way......\n#ASU 19' ...Congolese and Navajo", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 112, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713576292982112258/oqJYNxhw_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 195, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "225667095", "protected": false, "id": 225667095, "favourites_count": 274, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "FedoWap", "profile_image_url": "http://pbs.twimg.com/profile_images/713576292982112258/oqJYNxhw_normal.jpg", "lang": "en", "created_at": "Sun Dec 12 04:25:29 +0000 2010", "profile_use_background_image": true, "name": "Faedo", "url": null, "following": null, "profile_link_color": "3F00B3", "statuses_count": 394, "is_translator": false}, "text": "@onweomena this isn't Jersey", "retweeted": false, "in_reply_to_screen_name": "onweomena", "id_str": "716472547655553025", "id": 716472547655553025, "timestamp_ms": "1459655341434", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "1omena", "indices": [0, 10], "id": 390556375, "screen_name": "onweomena", "id_str": "390556375"}], "hashtags": []}, "in_reply_to_user_id": 390556375, "favorite_count": 0, "in_reply_to_status_id": 716471702285225984, "lang": "en", "created_at": "Sun Apr 03 03:49:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/63545933/1438803246", "description": "U.S. Army Veteran 11 surgeries in 4 years! trying to raise money for my son to play competitive soccer so please donate! HOOAH!!!!", "profile_sidebar_border_color": "A8C7F7", "profile_background_tile": true, "profile_background_color": "022330", "verified": false, "location": "Peoria, AZ.", "follow_request_sent": null, "followers_count": 729, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/625780031185235969/qRYXpJGa_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/65758885/imagejpeg_0555", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 1590, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/65758885/imagejpeg_0555", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "63545933", "protected": false, "id": 63545933, "favourites_count": 93, "profile_sidebar_fill_color": "C0DFEC", "screen_name": "EnduringFitness", "profile_image_url": "http://pbs.twimg.com/profile_images/625780031185235969/qRYXpJGa_normal.jpg", "lang": "en", "created_at": "Thu Aug 06 21:27:08 +0000 2009", "profile_use_background_image": true, "name": "Robert Willeford", "url": "https://www.gofundme.com/talon80", "following": null, "profile_link_color": "0084B4", "statuses_count": 1898, "is_translator": false}, "text": "ZoomTown USA revgroupinc #REVitUP @ Phoenix International Raceway -NASCAR https://t.co/72mVM8biMu", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472556526641152", "id": 716472556526641152, "timestamp_ms": "1459655343549", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuT3DVN1Ie/", "indices": [76, 99], "display_url": "instagram.com/p/BDuT3DVN1Ie/", "url": "https://t.co/72mVM8biMu"}], "user_mentions": [], "hashtags": [{"indices": [27, 35], "text": "REVitUP"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:03 +0000 2016", "coordinates": {"coordinates": [-112.310961, 33.377843], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.377843, -112.310961], "type": "Point"}}, {"in_reply_to_status_id_str": "716442929766670340", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3023982294", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/69080789/1459385412", "description": "ig:kiannanichole_ \u2600\ufe0f", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "DBE9ED", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 1222, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714932350094848000/Nt5gYe3D_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/500495642980937729/JKrDq5Fi.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 563, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/500495642980937729/JKrDq5Fi.jpeg", "time_zone": "Arizona", "profile_text_color": "3E4415", "id_str": "69080789", "protected": false, "id": 69080789, "favourites_count": 11449, "profile_sidebar_fill_color": "99CC33", "screen_name": "kiannanichole_", "profile_image_url": "http://pbs.twimg.com/profile_images/714932350094848000/Nt5gYe3D_normal.jpg", "lang": "en", "created_at": "Wed Aug 26 20:07:46 +0000 2009", "profile_use_background_image": true, "name": "kianna.", "url": null, "following": null, "profile_link_color": "552244", "statuses_count": 15382, "is_translator": false}, "text": "@ISTAYFRESH5 basic.", "retweeted": false, "in_reply_to_screen_name": "ISTAYFRESH5", "id_str": "716472558040657920", "id": 716472558040657920, "timestamp_ms": "1459655343910", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "FRE$H", "indices": [0, 12], "id": 3023982294, "screen_name": "ISTAYFRESH5", "id_str": "3023982294"}], "hashtags": []}, "in_reply_to_user_id": 3023982294, "favorite_count": 0, "in_reply_to_status_id": 716442929766670340, "lang": "en", "created_at": "Sun Apr 03 03:49:03 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4895643194/1455259785", "description": "Professional Boxer 2-0 signed with @ironboyboxing & managed by Cameron Dunkin #TeamGarcia #EasyWork IG & SC: @Teamdannygarcia", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Los Angeles, CA, Phoenix, Az", "follow_request_sent": null, "followers_count": 53, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704527413674283009/2jLqcnQc_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 82, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4895643194", "protected": false, "id": 4895643194, "favourites_count": 418, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "teamdannygarcia", "profile_image_url": "http://pbs.twimg.com/profile_images/704527413674283009/2jLqcnQc_normal.jpg", "lang": "en", "created_at": "Fri Feb 12 04:30:58 +0000 2016", "profile_use_background_image": true, "name": "Daniel Garcia", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 559, "is_translator": false}, "text": "Young thug new album \ud83d\udd25", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472565510774785", "id": 716472565510774785, "timestamp_ms": "1459655345691", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/JVwBDRfu6r", "sizes": {"large": {"w": 750, "resize": "fit", "h": 750}, "small": {"w": 340, "resize": "fit", "h": 340}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/reed98_reed/status/716472566106337280/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr_3oUIAAxpkX.jpg", "indices": [16, 39], "id": 716472560737591296, "id_str": "716472560737591296", "display_url": "pic.twitter.com/JVwBDRfu6r", "media_url": "http://pbs.twimg.com/media/CfFr_3oUIAAxpkX.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2556546621/1456150089", "description": "obsessed with tattoos", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 300, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704072127775780864/8oGURJ_7_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 820, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2556546621", "protected": false, "id": 2556546621, "favourites_count": 4405, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "reed98_reed", "profile_image_url": "http://pbs.twimg.com/profile_images/704072127775780864/8oGURJ_7_normal.jpg", "lang": "en", "created_at": "Wed May 21 02:01:12 +0000 2014", "profile_use_background_image": true, "name": "j", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 7025, "is_translator": false}, "text": "hit with a rt?\ud83d\udc96 https://t.co/JVwBDRfu6r", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472566106337280", "id": 716472566106337280, "timestamp_ms": "1459655345833", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/JVwBDRfu6r", "sizes": {"large": {"w": 750, "resize": "fit", "h": 750}, "small": {"w": 340, "resize": "fit", "h": 340}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/reed98_reed/status/716472566106337280/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFr_3oUIAAxpkX.jpg", "indices": [16, 39], "id": 716472560737591296, "id_str": "716472560737591296", "display_url": "pic.twitter.com/JVwBDRfu6r", "media_url": "http://pbs.twimg.com/media/CfFr_3oUIAAxpkX.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472121866657792", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "509613642", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Goodyear, AZ", "place_type": "city", "attributes": {}, "name": "Goodyear", "country": "United States", "id": "00fae4950337e465", "bounding_box": {"coordinates": [[[-112.508916, 33.317555], [-112.508916, 33.50819], [-112.341035, 33.50819], [-112.341035, 33.317555]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/00fae4950337e465.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2393057700/1453849172", "description": "Huskers,Dolphins,Cubs,and Kurt Busch fan.Still love R.E.M.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Goodyear,AZ ", "follow_request_sent": null, "followers_count": 582, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 32, "friends_count": 590, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2393057700", "protected": false, "id": 2393057700, "favourites_count": 34264, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HunterHusker", "profile_image_url": "http://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "lang": "en", "created_at": "Sun Mar 16 17:44:41 +0000 2014", "profile_use_background_image": true, "name": "Jamie Hunter", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 12154, "is_translator": false}, "text": "@MargiCulp @RowdyBun yay Margi you've taken your time studied the field and came up with the 4. Go Margi!!!!", "retweeted": false, "in_reply_to_screen_name": "MargiCulp", "id_str": "716472571122692096", "id": 716472571122692096, "timestamp_ms": "1459655347029", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Margi Culp", "indices": [0, 10], "id": 509613642, "screen_name": "MargiCulp", "id_str": "509613642"}, {"name": "Mandy Bullard", "indices": [11, 20], "id": 38963042, "screen_name": "RowdyBun", "id_str": "38963042"}], "hashtags": []}, "in_reply_to_user_id": 509613642, "favorite_count": 0, "in_reply_to_status_id": 716472121866657792, "lang": "en", "created_at": "Sun Apr 03 03:49:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2582726774/1459356469", "description": "GCU '19 | Flo Martinez \u2661 | in love with life \u27b6", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1083, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715011222802980864/Z0kXaBi__normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 817, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": null, "profile_text_color": "000000", "id_str": "2582726774", "protected": false, "id": 2582726774, "favourites_count": 5970, "profile_sidebar_fill_color": "000000", "screen_name": "katrinnaaa_", "profile_image_url": "http://pbs.twimg.com/profile_images/715011222802980864/Z0kXaBi__normal.jpg", "lang": "en", "created_at": "Sun Jun 22 19:34:58 +0000 2014", "profile_use_background_image": false, "name": "Katrina", "url": null, "following": null, "profile_link_color": "7FDBB6", "statuses_count": 14899, "is_translator": false}, "text": "I'm 5eva alone here", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472583370092545", "id": 716472583370092545, "timestamp_ms": "1459655349949", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:09 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471439537233920", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1064042478", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/177789489/1453847824", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 28, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/700150231648722944/bOhgZaK6_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 257, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "177789489", "protected": false, "id": 177789489, "favourites_count": 8, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jlbosox0", "profile_image_url": "http://pbs.twimg.com/profile_images/700150231648722944/bOhgZaK6_normal.jpg", "lang": "en", "created_at": "Fri Aug 13 02:09:22 +0000 2010", "profile_use_background_image": true, "name": "jeremy lane", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 632, "is_translator": false}, "text": "@Mathieu_Era is the album good?", "retweeted": false, "in_reply_to_screen_name": "Mathieu_Era", "id_str": "716472585844690944", "id": 716472585844690944, "timestamp_ms": "1459655350539", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Tyrann Mathieu", "indices": [0, 12], "id": 1064042478, "screen_name": "Mathieu_Era", "id_str": "1064042478"}], "hashtags": []}, "in_reply_to_user_id": 1064042478, "favorite_count": 0, "in_reply_to_status_id": 716471439537233920, "lang": "en", "created_at": "Sun Apr 03 03:49:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80699, "is_translator": false}, "text": "I drive a 2016 cuz im good with money, that\u2019s all lol", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472586536783873", "id": 716472586536783873, "timestamp_ms": "1459655350704", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/967190310/1459262531", "description": "CrossFit", "profile_sidebar_border_color": "5AC3E9", "profile_background_tile": false, "profile_background_color": "D3D9DB", "verified": false, "location": "PNW", "follow_request_sent": null, "followers_count": 419, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715322701649293312/nFFkvdO3_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/797872927/f2dae584d511a0c3d593b7f6605cdcbf.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 456, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/797872927/f2dae584d511a0c3d593b7f6605cdcbf.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "DB6995", "id_str": "967190310", "protected": false, "id": 967190310, "favourites_count": 7927, "profile_sidebar_fill_color": "2D1E29", "screen_name": "Braydeeee", "profile_image_url": "http://pbs.twimg.com/profile_images/715322701649293312/nFFkvdO3_normal.jpg", "lang": "en", "created_at": "Sat Nov 24 02:12:04 +0000 2012", "profile_use_background_image": true, "name": "B", "url": null, "following": null, "profile_link_color": "A177AB", "statuses_count": 4185, "is_translator": false}, "text": "You can't go to the Grand Canyon without handstands and pistoles!\ud83c\udfcb\ud83c\udffd\u2026 https://t.co/8pXICazob3", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472590169202689", "id": 716472590169202689, "timestamp_ms": "1459655351570", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuT4GYJcgW5uYGqeFCy8hlz6UQfbGoQiMttso0/", "indices": [69, 92], "display_url": "instagram.com/p/BDuT4GYJcgW5\u2026", "url": "https://t.co/8pXICazob3"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:11 +0000 2016", "coordinates": {"coordinates": [-112.13943708, 36.05723622], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [36.05723622, -112.13943708], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "Arizona Real Estate pro with Purcell & Associates! Avid consumer of all things fun, lover of art, music & travel! All around adventurer!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 127, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3663389343/0fcb6c3bc42ba0aad5a5ef8443ded2a1_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 13, "friends_count": 419, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "558949318", "protected": false, "id": 558949318, "favourites_count": 196, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "RodiePurcell", "profile_image_url": "http://pbs.twimg.com/profile_images/3663389343/0fcb6c3bc42ba0aad5a5ef8443ded2a1_normal.jpeg", "lang": "en", "created_at": "Fri Apr 20 21:13:18 +0000 2012", "profile_use_background_image": true, "name": "Rodie Purcell", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1136, "is_translator": false}, "text": "#BennettAndBubbles #TheVig #DinnerLikeAdults #SheCANWaitForDinnerAt8 @ The Vig Uptown https://t.co/2dEyW9qp8v", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472600784977921", "id": 716472600784977921, "timestamp_ms": "1459655354101", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuT4WViGe0/", "indices": [86, 109], "display_url": "instagram.com/p/BDuT4WViGe0/", "url": "https://t.co/2dEyW9qp8v"}], "user_mentions": [], "hashtags": [{"indices": [0, 18], "text": "BennettAndBubbles"}, {"indices": [19, 26], "text": "TheVig"}, {"indices": [27, 44], "text": "DinnerLikeAdults"}, {"indices": [45, 68], "text": "SheCANWaitForDinnerAt8"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:14 +0000 2016", "coordinates": {"coordinates": [-112.0473557, 33.5241928], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.5241928, -112.0473557], "type": "Point"}}, {"in_reply_to_status_id_str": "716462551630897152", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "124881712", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/5ZPoml14pO", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/Vincent72683021/status/716472611610361857/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsClWUEAAO4mv.jpg", "indices": [64, 87], "id": 716472607369859072, "id_str": "716472607369859072", "display_url": "pic.twitter.com/5ZPoml14pO", "media_url": "http://pbs.twimg.com/media/CfFsClWUEAAO4mv.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 20, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712166325750083584/sZdtKQ6o_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 92, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "706358650403590144", "protected": false, "id": 706358650403590144, "favourites_count": 10, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Vincent72683021", "profile_image_url": "http://pbs.twimg.com/profile_images/712166325750083584/sZdtKQ6o_normal.jpg", "lang": "en", "created_at": "Sun Mar 06 06:00:00 +0000 2016", "profile_use_background_image": true, "name": "druglord", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 13, "is_translator": false}, "text": "@omgDCOOP yo bro I had pulled him I'm screaming and crying bro https://t.co/5ZPoml14pO", "retweeted": false, "in_reply_to_screen_name": "omgDCOOP", "id_str": "716472611610361857", "id": 716472611610361857, "timestamp_ms": "1459655356682", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "DCOOP", "indices": [0, 9], "id": 124881712, "screen_name": "omgDCOOP", "id_str": "124881712"}], "hashtags": [], "media": [{"url": "https://t.co/5ZPoml14pO", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/Vincent72683021/status/716472611610361857/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsClWUEAAO4mv.jpg", "indices": [64, 87], "id": 716472607369859072, "id_str": "716472607369859072", "display_url": "pic.twitter.com/5ZPoml14pO", "media_url": "http://pbs.twimg.com/media/CfFsClWUEAAO4mv.jpg"}]}, "in_reply_to_user_id": 124881712, "favorite_count": 0, "in_reply_to_status_id": 716462551630897152, "lang": "en", "created_at": "Sun Apr 03 03:49:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/46746431/1442462742", "description": "Accredited PR consultant, author, blogger & speaker. Owner of @MahoganyXan Communications. WuTangName - Sarkastik Watcher!", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "DBE9ED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 5937, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/652735847612084224/hjhdznFP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/546175097384353792/zAQ1oYTR.png", "default_profile_image": false, "notifications": null, "listed_count": 197, "friends_count": 6068, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/546175097384353792/zAQ1oYTR.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "46746431", "protected": false, "id": 46746431, "favourites_count": 4184, "profile_sidebar_fill_color": "E6F6F9", "screen_name": "LTWoods", "profile_image_url": "http://pbs.twimg.com/profile_images/652735847612084224/hjhdznFP_normal.jpg", "lang": "en", "created_at": "Fri Jun 12 20:54:58 +0000 2009", "profile_use_background_image": true, "name": "LaTricia Woods", "url": "http://latriciawoods.com", "following": null, "profile_link_color": "CC3366", "statuses_count": 21466, "is_translator": false}, "text": "1/2 way through an extremely busy week. Looking forward to April 8.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472621936709633", "id": 716472621936709633, "timestamp_ms": "1459655359144", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:19 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3037005079/1459643073", "description": "life has a hopeful undertone", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "phx", "follow_request_sent": null, "followers_count": 803, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716421091888005120/5v-bH_Ol_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 10, "friends_count": 99, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3037005079", "protected": false, "id": 3037005079, "favourites_count": 6107, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tayIorcte", "profile_image_url": "http://pbs.twimg.com/profile_images/716421091888005120/5v-bH_Ol_normal.jpg", "lang": "en", "created_at": "Sun Feb 22 21:41:24 +0000 2015", "profile_use_background_image": true, "name": "taylor", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 96, "is_translator": false}, "text": "hahaha i'm sad again nice", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472636717400067", "id": 716472636717400067, "timestamp_ms": "1459655362668", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:22 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3584111833/1456284765", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 75, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704032430768812032/piHWYWsd_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 94, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3584111833", "protected": false, "id": 3584111833, "favourites_count": 883, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "carina_0208_", "profile_image_url": "http://pbs.twimg.com/profile_images/704032430768812032/piHWYWsd_normal.jpg", "lang": "en", "created_at": "Wed Sep 16 15:34:59 +0000 2015", "profile_use_background_image": true, "name": "Carina Rodriguez", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 141, "is_translator": false}, "text": "*Plays SoMo* Brie: wait I thought that was Kenny Chesney", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472653087903744", "id": 716472653087903744, "timestamp_ms": "1459655366571", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471677815619588", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "323100182", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/373664172/1427047263", "description": "ASU Applied Computing. Sun Devil Hockey.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Glendale, Arizona", "follow_request_sent": null, "followers_count": 191, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/616028008688660480/9UYhSaQt_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572603433648025600/kzcNEsAF.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 226, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572603433648025600/kzcNEsAF.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "333333", "id_str": "373664172", "protected": false, "id": 373664172, "favourites_count": 6037, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "MarcusVelasco26", "profile_image_url": "http://pbs.twimg.com/profile_images/616028008688660480/9UYhSaQt_normal.jpg", "lang": "en", "created_at": "Thu Sep 15 00:36:05 +0000 2011", "profile_use_background_image": true, "name": "Marcus Velasco", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 3068, "is_translator": false}, "text": "@nikkimaine told you...", "retweeted": false, "in_reply_to_screen_name": "nikkimaine", "id_str": "716472658070622208", "id": 716472658070622208, "timestamp_ms": "1459655367759", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Nikki", "indices": [0, 11], "id": 323100182, "screen_name": "nikkimaine", "id_str": "323100182"}], "hashtags": []}, "in_reply_to_user_id": 323100182, "favorite_count": 0, "in_reply_to_status_id": 716471677815619588, "lang": "en", "created_at": "Sun Apr 03 03:49:27 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472602798071810", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1317511914", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "San Tan Valley, AZ", "place_type": "city", "attributes": {}, "name": "San Tan Valley", "country": "United States", "id": "002b06ee2655168a", "bounding_box": {"coordinates": [[[-111.63454, 33.08929], [-111.63454, 33.307181], [-111.486497, 33.307181], [-111.486497, 33.08929]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/002b06ee2655168a.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1927332542/1458959809", "description": "theatre", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 304, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712088592059731968/eSTgwLiK_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 376, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1927332542", "protected": false, "id": 1927332542, "favourites_count": 2213, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "kenzieshea521", "profile_image_url": "http://pbs.twimg.com/profile_images/712088592059731968/eSTgwLiK_normal.jpg", "lang": "en", "created_at": "Wed Oct 02 16:00:30 +0000 2013", "profile_use_background_image": true, "name": "kenz", "url": "http://Instagram.com/heykenzieshea", "following": null, "profile_link_color": "0084B4", "statuses_count": 1668, "is_translator": false}, "text": "@_xandraa__ yes\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": "_xandraa__", "id_str": "716472659500859392", "id": 716472659500859392, "timestamp_ms": "1459655368100", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "xandra gunnell", "indices": [0, 11], "id": 1317511914, "screen_name": "_xandraa__", "id_str": "1317511914"}], "hashtags": []}, "in_reply_to_user_id": 1317511914, "favorite_count": 0, "in_reply_to_status_id": 716472602798071810, "lang": "und", "created_at": "Sun Apr 03 03:49:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": true, "user": {"description": "Everyone wants the truth but no one wants to be honest. The truth can hurt, but it can also heal.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 76, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/655540039837876224/01wTgv-b_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 152, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "950606341", "protected": false, "id": 950606341, "favourites_count": 344, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "cat803", "profile_image_url": "http://pbs.twimg.com/profile_images/655540039837876224/01wTgv-b_normal.jpg", "lang": "en", "created_at": "Thu Nov 15 22:49:33 +0000 2012", "profile_use_background_image": true, "name": "la Verdad", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1597, "is_translator": false}, "text": "WOMEN!! PAY ATTENTION!! https://t.co/r4Y9RZDvKm", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472665339338752", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/mer2UrgYgl", "sizes": {"large": {"w": 994, "resize": "fit", "h": 680}, "small": {"w": 340, "resize": "fit", "h": 233}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 410}}, "type": "photo", "expanded_url": "http://twitter.com/gabino_58/status/716466836338921472/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFmx_KUMAA9OsR.jpg", "indices": [11, 34], "id": 716466824682942464, "id_str": "716466824682942464", "display_url": "pic.twitter.com/mer2UrgYgl", "media_url": "http://pbs.twimg.com/media/CfFmx_KUMAA9OsR.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2353974979/1457795695", "description": "Progressive. Chicano. #ImWithHer #EstoyConElla", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Nevada, USA", "follow_request_sent": null, "followers_count": 4257, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/543466515832381440/-97heTtT_normal.png", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 168, "friends_count": 4367, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2353974979", "protected": false, "id": 2353974979, "favourites_count": 8772, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "gabino_58", "profile_image_url": "http://pbs.twimg.com/profile_images/543466515832381440/-97heTtT_normal.png", "lang": "en", "created_at": "Fri Feb 21 00:33:50 +0000 2014", "profile_use_background_image": true, "name": "Dr. G.", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 88500, "is_translator": false}, "text": "#ImWithHer https://t.co/mer2UrgYgl", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716466836338921472", "id": 716466836338921472, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [0, 10], "text": "ImWithHer"}], "media": [{"url": "https://t.co/mer2UrgYgl", "sizes": {"large": {"w": 994, "resize": "fit", "h": 680}, "small": {"w": 340, "resize": "fit", "h": 233}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 410}}, "type": "photo", "expanded_url": "http://twitter.com/gabino_58/status/716466836338921472/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFmx_KUMAA9OsR.jpg", "indices": [11, 34], "id": 716466824682942464, "id_str": "716466824682942464", "display_url": "pic.twitter.com/mer2UrgYgl", "media_url": "http://pbs.twimg.com/media/CfFmx_KUMAA9OsR.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:26:19 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472665339338752, "timestamp_ms": "1459655369492", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/gabino_58/status/716466836338921472", "indices": [24, 47], "display_url": "twitter.com/gabino_58/stat\u2026", "url": "https://t.co/r4Y9RZDvKm"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716466836338921472, "created_at": "Sun Apr 03 03:49:29 +0000 2016", "coordinates": null, "quoted_status_id_str": "716466836338921472", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/482542655/1449766498", "description": "UA \u2764\ufe0f Gamma Phi Beta", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 395, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/668490289892364288/iFGAmVX7_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/418427013/Flowers_need_bokeh_by_fhrankee.jpg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 305, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/418427013/Flowers_need_bokeh_by_fhrankee.jpg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "482542655", "protected": false, "id": 482542655, "favourites_count": 2794, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexiaasandoval", "profile_image_url": "http://pbs.twimg.com/profile_images/668490289892364288/iFGAmVX7_normal.jpg", "lang": "en", "created_at": "Sat Feb 04 01:30:21 +0000 2012", "profile_use_background_image": true, "name": "Alexia Sandoval", "url": null, "following": null, "profile_link_color": "111212", "statuses_count": 9038, "is_translator": false}, "text": "GET ICED OR DIE TRYING OKAY", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472675678363649", "id": 716472675678363649, "timestamp_ms": "1459655371957", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:31 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/618006202/1459447087", "description": "earlxsweat: I GREW UP UGLY YOU DONT KNOW MY STRUGGLE\n#feelthebern", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "phx", "follow_request_sent": null, "followers_count": 2630, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715599069381459969/h7zkiK7r_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/647250103/vt2gkrnfxj7cxp34k61a.png", "default_profile_image": false, "notifications": null, "listed_count": 29, "friends_count": 797, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/647250103/vt2gkrnfxj7cxp34k61a.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "618006202", "protected": false, "id": 618006202, "favourites_count": 16946, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "realneckdeep", "profile_image_url": "http://pbs.twimg.com/profile_images/715599069381459969/h7zkiK7r_normal.jpg", "lang": "en", "created_at": "Mon Jun 25 11:05:44 +0000 2012", "profile_use_background_image": false, "name": "serpents", "url": "https://twitter.com/sleepyeyeskrys/status/577254409693843456", "following": null, "profile_link_color": "9266CC", "statuses_count": 59018, "is_translator": false}, "text": "PRIDE WAS SO FUCKING LIT OFMDOAMAAM #PHXPRIDE", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472676533964800", "id": 716472676533964800, "timestamp_ms": "1459655372161", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [36, 45], "text": "PHXPRIDE"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4435501676/1459565224", "description": "Scottsdale Community College \u26be #2 snapchat: dmontana0216. SUH DUDE!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 276, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716114719170387971/LNmhNKsH_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 253, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "4435501676", "protected": false, "id": 4435501676, "favourites_count": 1328, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "domi_0216", "profile_image_url": "http://pbs.twimg.com/profile_images/716114719170387971/LNmhNKsH_normal.jpg", "lang": "en", "created_at": "Wed Dec 02 22:16:49 +0000 2015", "profile_use_background_image": true, "name": "Dominique Montana", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2178, "is_translator": false}, "text": "I think everyone in my family just wants to drink this month away. It's the worst month ever", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472683471306752", "id": 716472683471306752, "timestamp_ms": "1459655373815", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "715591877504831492", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1575689569", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/395441626/1443127969", "description": "I am a 74 year old White Male Single Christian that lives in Phoenix, Arizona. My goal for 2016 is help see that Donald Trump becomes our next President.", "profile_sidebar_border_color": "8A7167", "profile_background_tile": false, "profile_background_color": "402021", "verified": false, "location": "Phoenix, AZ USA", "follow_request_sent": null, "followers_count": 329, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1646739905/new_image_2_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/351016060/Writer.jpg", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 477, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/351016060/Writer.jpg", "time_zone": "Arizona", "profile_text_color": "341671", "id_str": "395441626", "protected": false, "id": 395441626, "favourites_count": 3662, "profile_sidebar_fill_color": "8A7167", "screen_name": "roy_wr", "profile_image_url": "http://pbs.twimg.com/profile_images/1646739905/new_image_2_normal.jpg", "lang": "en", "created_at": "Fri Oct 21 17:24:23 +0000 2011", "profile_use_background_image": true, "name": "Roy Patterson", "url": "http://www.facebook.com/roywrt", "following": null, "profile_link_color": "260D03", "statuses_count": 2897, "is_translator": false}, "text": "@BigStick2013 If the GOP wants a fight in Cleveland they will get one. If voters want Trump than he should get the nomination.#onlytrump", "retweeted": false, "in_reply_to_screen_name": "BigStick2013", "id_str": "716472686520602624", "id": 716472686520602624, "timestamp_ms": "1459655374542", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u2606\u2606Texas for Trump\u2606\u2606", "indices": [0, 13], "id": 1575689569, "screen_name": "BigStick2013", "id_str": "1575689569"}], "hashtags": [{"indices": [126, 136], "text": "onlytrump"}]}, "in_reply_to_user_id": 1575689569, "favorite_count": 0, "in_reply_to_status_id": 715591877504831492, "lang": "en", "created_at": "Sun Apr 03 03:49:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "548922333", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1913157451/1458518009", "description": "Ex Pinnacle Pioneer//Paris Hilton Enthusiast// @DestinneeMarie", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "DD2E44", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 834, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/707717952087265281/fctRGFyp_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000143586039/-lozPzkk.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 8, "friends_count": 446, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000143586039/-lozPzkk.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1913157451", "protected": false, "id": 1913157451, "favourites_count": 35797, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ericcaantu", "profile_image_url": "http://pbs.twimg.com/profile_images/707717952087265281/fctRGFyp_normal.jpg", "lang": "en", "created_at": "Sat Sep 28 04:53:48 +0000 2013", "profile_use_background_image": false, "name": "Kim Kardashian", "url": null, "following": null, "profile_link_color": "F5ABB5", "statuses_count": 17701, "is_translator": false}, "text": "@DestinneeMarie I'm the one in the red shirt https://t.co/nSOWmXCdBe", "retweeted": false, "in_reply_to_screen_name": "DestinneeMarie", "id_str": "716472695198625793", "quoted_status": {"in_reply_to_status_id_str": "713912551373975552", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3044758961", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3044758961/1459372032", "description": "The real life human Jimmy Neutron.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Scotland, United Kingdom", "follow_request_sent": null, "followers_count": 1507, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/683054023335919616/AnXaks9t_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 430, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "3044758961", "protected": false, "id": 3044758961, "favourites_count": 1470, "profile_sidebar_fill_color": "000000", "screen_name": "Quesadinah", "profile_image_url": "http://pbs.twimg.com/profile_images/683054023335919616/AnXaks9t_normal.png", "lang": "en", "created_at": "Thu Feb 19 00:13:19 +0000 2015", "profile_use_background_image": false, "name": "P\u00f8rky.", "url": "http://ask.fm/InPorkyWeTrust", "following": null, "profile_link_color": "9266CC", "statuses_count": 10050, "is_translator": false}, "text": "1) https://t.co/v8J0uaY7HI", "retweeted": false, "in_reply_to_screen_name": "Quesadinah", "id_str": "713912615978852352", "id": 713912615978852352, "entities": {"symbols": [], "urls": [{"expanded_url": "https://vine.co/v/OV2bKExlPEV", "indices": [3, 26], "display_url": "vine.co/v/OV2bKExlPEV", "url": "https://t.co/v8J0uaY7HI"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": 3044758961, "favorite_count": 0, "in_reply_to_status_id": 713912551373975552, "lang": "und", "created_at": "Sun Mar 27 02:16:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472695198625793, "timestamp_ms": "1459655376611", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/quesadinah/status/713912615978852352", "indices": [46, 69], "display_url": "twitter.com/quesadinah/sta\u2026", "url": "https://t.co/nSOWmXCdBe"}], "user_mentions": [{"name": "destinee.", "indices": [0, 15], "id": 548922333, "screen_name": "DestinneeMarie", "id_str": "548922333"}], "hashtags": []}, "in_reply_to_user_id": 548922333, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 713912615978852352, "created_at": "Sun Apr 03 03:49:36 +0000 2016", "coordinates": null, "quoted_status_id_str": "713912615978852352", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80700, "is_translator": false}, "text": "and made sure my credit was flawless before i even stepped into the dealership lmao", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472696410734592", "id": 716472696410734592, "timestamp_ms": "1459655376900", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:36 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Foursquare", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1978182546/1459162804", "description": null, "profile_sidebar_border_color": "181A1E", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 1174, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704162401332006912/nHZh9_xU_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 12, "friends_count": 171, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": null, "profile_text_color": "666666", "id_str": "1978182546", "protected": false, "id": 1978182546, "favourites_count": 15, "profile_sidebar_fill_color": "252429", "screen_name": "anwaarals", "profile_image_url": "http://pbs.twimg.com/profile_images/704162401332006912/nHZh9_xU_normal.jpg", "lang": "en", "created_at": "Mon Oct 21 10:16:35 +0000 2013", "profile_use_background_image": true, "name": "Anwaar K. Al-Sahlawi", "url": null, "following": null, "profile_link_color": "2FC2EF", "statuses_count": 27557, "is_translator": false}, "text": "I'm at City of Tempe in Tempe, AZ https://t.co/hys5hVE0mM", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472697149132801", "id": 716472697149132801, "timestamp_ms": "1459655377076", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.swarmapp.com/c/6SAQ3r7zoFj", "indices": [34, 57], "display_url": "swarmapp.com/c/6SAQ3r7zoFj", "url": "https://t.co/hys5hVE0mM"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:37 +0000 2016", "coordinates": {"coordinates": [-111.90909863, 33.41471421], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.41471421, -111.90909863], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2531660251/1459052553", "description": "At a low right now", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 290, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716086052453109760/rR9vpYTi_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 353, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2531660251", "protected": false, "id": 2531660251, "favourites_count": 2308, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "dsaucedo422", "profile_image_url": "http://pbs.twimg.com/profile_images/716086052453109760/rR9vpYTi_normal.jpg", "lang": "en", "created_at": "Thu May 29 04:14:49 +0000 2014", "profile_use_background_image": true, "name": "Daniel", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2772, "is_translator": false}, "text": "I'm not tryna waist another Saturday", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472699879428096", "id": 716472699879428096, "timestamp_ms": "1459655377727", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:37 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2708393009/1405300675", "description": "My faith, family and photography mean everything to me. Currently living in suburban Phoenix, my heart will always be in Chicago, my kind of town.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 27, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/488492555328188416/McckqBB7_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 148, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2708393009", "protected": false, "id": 2708393009, "favourites_count": 25, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ufwilliams", "profile_image_url": "http://pbs.twimg.com/profile_images/488492555328188416/McckqBB7_normal.jpeg", "lang": "en", "created_at": "Sun Jul 13 22:14:03 +0000 2014", "profile_use_background_image": true, "name": "Frank Williams", "url": "http://ufwilliams.wix.com/digipixbycori", "following": null, "profile_link_color": "0084B4", "statuses_count": 58, "is_translator": false}, "text": "Engagement session. @ Agritopia https://t.co/SfnmJKxz2c", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472702446485505", "id": 716472702446485505, "timestamp_ms": "1459655378339", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuT7W0n8b-/", "indices": [32, 55], "display_url": "instagram.com/p/BDuT7W0n8b-/", "url": "https://t.co/SfnmJKxz2c"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "fr", "created_at": "Sun Apr 03 03:49:38 +0000 2016", "coordinates": {"coordinates": [-111.7289681, 33.32430962], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.32430962, -111.7289681], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/uMt8iv7iXZ", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1179}, "small": {"w": 340, "resize": "fit", "h": 391}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 691}}, "type": "photo", "expanded_url": "http://twitter.com/LesslyeDoeszIt/status/716472702282784773/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsHhtUIAEBwZW.jpg", "indices": [3, 26], "id": 716472692291936257, "id_str": "716472692291936257", "display_url": "pic.twitter.com/uMt8iv7iXZ", "media_url": "http://pbs.twimg.com/media/CfFsHhtUIAEBwZW.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/230526910/1458982931", "description": "Carefree lifestyle", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "4F0606", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 2139, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713119770954993665/qdhKI1qM_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/890159860/e870292f9e70152fa5c227ac37dcd5b9.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 699, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/890159860/e870292f9e70152fa5c227ac37dcd5b9.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "666666", "id_str": "230526910", "protected": false, "id": 230526910, "favourites_count": 13434, "profile_sidebar_fill_color": "252429", "screen_name": "LesslyeDoeszIt", "profile_image_url": "http://pbs.twimg.com/profile_images/713119770954993665/qdhKI1qM_normal.jpg", "lang": "en", "created_at": "Sat Dec 25 21:33:41 +0000 2010", "profile_use_background_image": false, "name": "lesslye", "url": null, "following": null, "profile_link_color": "030303", "statuses_count": 47823, "is_translator": false}, "text": "\ud83e\udd18\ud83c\udffc https://t.co/uMt8iv7iXZ", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472702282784773", "id": 716472702282784773, "timestamp_ms": "1459655378300", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/uMt8iv7iXZ", "sizes": {"large": {"w": 1024, "resize": "fit", "h": 1179}, "small": {"w": 340, "resize": "fit", "h": 391}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 691}}, "type": "photo", "expanded_url": "http://twitter.com/LesslyeDoeszIt/status/716472702282784773/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsHhtUIAEBwZW.jpg", "indices": [3, 26], "id": 716472692291936257, "id_str": "716472692291936257", "display_url": "pic.twitter.com/uMt8iv7iXZ", "media_url": "http://pbs.twimg.com/media/CfFsHhtUIAEBwZW.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:49:38 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Queen Creek, AZ", "place_type": "city", "attributes": {}, "name": "Queen Creek", "country": "United States", "id": "01cb573821d94344", "bounding_box": {"coordinates": [[[-111.686314, 33.196614], [-111.686314, 33.288127], [-111.582748, 33.288127], [-111.582748, 33.196614]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/01cb573821d94344.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/939504835/1453782971", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "San Diego, CA", "follow_request_sent": null, "followers_count": 706, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/702730640072966144/eJHfFjb2_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 422, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "939504835", "protected": false, "id": 939504835, "favourites_count": 9678, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "LawsenOwens", "profile_image_url": "http://pbs.twimg.com/profile_images/702730640072966144/eJHfFjb2_normal.jpg", "lang": "en", "created_at": "Sat Nov 10 17:11:00 +0000 2012", "profile_use_background_image": true, "name": "lawsen owens", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 5521, "is_translator": false}, "text": "I hate feeling lonely", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472708322623490", "id": 716472708322623490, "timestamp_ms": "1459655379740", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/78723424/1458975909", "description": "just a sassy girl who likes tacos, cuddles and superhero movies. // Cole \u2765", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 248, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713935299630465024/tR3CZr0w_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/494307657725911040/InEByLdG.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 423, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/494307657725911040/InEByLdG.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "78723424", "protected": false, "id": 78723424, "favourites_count": 7047, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Ayyoo_itswexis", "profile_image_url": "http://pbs.twimg.com/profile_images/713935299630465024/tR3CZr0w_normal.jpg", "lang": "en", "created_at": "Wed Sep 30 22:17:10 +0000 2009", "profile_use_background_image": true, "name": "tryannosauruslex", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 6637, "is_translator": false}, "text": "sometimes I just miss you being my friend and loving me when I was sad.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472716262387713", "id": 716472716262387713, "timestamp_ms": "1459655381633", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716432392970305537", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "721067293", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716472565477220352/pu/vid/180x320/3Et_bp0d8DpfslcO.mp4"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716472565477220352/pu/vid/360x640/CrWjsUvfQB6Y4ZAP.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716472565477220352/pu/pl/sEDWlFblahS4KAHJ.m3u8"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716472565477220352/pu/pl/sEDWlFblahS4KAHJ.mpd"}], "aspect_ratio": [9, 16], "duration_millis": 19613}, "url": "https://t.co/JtqdBAqYoi", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "video", "expanded_url": "http://twitter.com/baby_ray11/status/716472716962897920/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472565477220352/pu/img/xI-B_XK2FX_5LjyW.jpg", "indices": [58, 81], "id": 716472565477220352, "id_str": "716472565477220352", "display_url": "pic.twitter.com/JtqdBAqYoi", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472565477220352/pu/img/xI-B_XK2FX_5LjyW.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/450947223/1458326230", "description": "Phoenix College Softball\u2764\ufe0f\u26be\ufe0f PC Bears", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 441, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708730294631669760/2WtBl7d__normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 647, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "450947223", "protected": false, "id": 450947223, "favourites_count": 6814, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "baby_ray11", "profile_image_url": "http://pbs.twimg.com/profile_images/708730294631669760/2WtBl7d__normal.jpg", "lang": "en", "created_at": "Fri Dec 30 21:18:25 +0000 2011", "profile_use_background_image": true, "name": "Raychele Hernandez", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2442, "is_translator": false}, "text": "@santossoccer96 @its_fewsich_ok both pranks were funny\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/JtqdBAqYoi", "retweeted": false, "in_reply_to_screen_name": "santossoccer96", "id_str": "716472716962897920", "id": 716472716962897920, "timestamp_ms": "1459655381800", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Santos Villasenor", "indices": [0, 15], "id": 721067293, "screen_name": "santossoccer96", "id_str": "721067293"}, {"name": "shelby", "indices": [16, 31], "id": 2648644523, "screen_name": "its_fewsich_ok", "id_str": "2648644523"}], "hashtags": [], "media": [{"url": "https://t.co/JtqdBAqYoi", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "photo", "expanded_url": "http://twitter.com/baby_ray11/status/716472716962897920/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472565477220352/pu/img/xI-B_XK2FX_5LjyW.jpg", "indices": [58, 81], "id": 716472565477220352, "id_str": "716472565477220352", "display_url": "pic.twitter.com/JtqdBAqYoi", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472565477220352/pu/img/xI-B_XK2FX_5LjyW.jpg"}]}, "in_reply_to_user_id": 721067293, "favorite_count": 0, "in_reply_to_status_id": 716432392970305537, "lang": "en", "created_at": "Sun Apr 03 03:49:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/167043550/1458260632", "description": "RIP Edward \u2764\ufe0f @harleyyyquinn_ is my dominatrix. #HillaryForPrisonNotPresident", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": "DEN \u2708\ufe0f PHX", "follow_request_sent": null, "followers_count": 2643, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 109, "friends_count": 761, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/864680904/6d9eee394cad9a82aeb5d43dccf18f4a.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "00EB00", "id_str": "167043550", "protected": false, "id": 167043550, "favourites_count": 455, "profile_sidebar_fill_color": "000000", "screen_name": "Thotcho", "profile_image_url": "http://pbs.twimg.com/profile_images/712528951319666689/lWr_4l_U_normal.jpg", "lang": "en", "created_at": "Thu Jul 15 16:28:39 +0000 2010", "profile_use_background_image": true, "name": "not a diva", "url": "https://vine.co/v/OPYaZvdYxqA", "following": null, "profile_link_color": "960087", "statuses_count": 230513, "is_translator": false}, "text": "gooby!!", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472725254983680", "id": 716472725254983680, "timestamp_ms": "1459655383777", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"description": "Pro Wrestler,all around nice guy,when in the ring I'm just a bad attitude waiting for a place to land.willing to take you for a walk on the DarkSide!", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Peoria,AZ", "follow_request_sent": null, "followers_count": 144, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/635875737501732864/FCzjCqQb_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/233351952/wolfpacklogo.jpg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 300, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/233351952/wolfpacklogo.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "276306784", "protected": false, "id": 276306784, "favourites_count": 931, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "INDYDarkside", "profile_image_url": "http://pbs.twimg.com/profile_images/635875737501732864/FCzjCqQb_normal.jpg", "lang": "en", "created_at": "Sun Apr 03 02:56:53 +0000 2011", "profile_use_background_image": true, "name": "JUST FIGHT!!!!", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 3678, "is_translator": false}, "text": "\u26a1 WWE Hall of Fame 2016 by @WWE\n\nhttps://t.co/8Lv9hRBWVn", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472727465406466", "id": 716472727465406466, "timestamp_ms": "1459655384304", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/i/moments/716405252048576512", "indices": [33, 56], "display_url": "twitter.com/i/moments/7164\u2026", "url": "https://t.co/8Lv9hRBWVn"}], "user_mentions": [{"name": "WWE", "indices": [27, 31], "id": 7517222, "screen_name": "WWE", "id_str": "7517222"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/71433914/1453792010", "description": "Anthony's honey dip.", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 491, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/698400257269305344/LE_Ih7lc_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778887446/7c356aa49a9fb1169f4fb30798d5bff7.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 122, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778887446/7c356aa49a9fb1169f4fb30798d5bff7.jpeg", "time_zone": "Arizona", "profile_text_color": "D40819", "id_str": "71433914", "protected": false, "id": 71433914, "favourites_count": 16206, "profile_sidebar_fill_color": "000000", "screen_name": "tannaXOXO", "profile_image_url": "http://pbs.twimg.com/profile_images/698400257269305344/LE_Ih7lc_normal.jpg", "lang": "en", "created_at": "Fri Sep 04 02:43:40 +0000 2009", "profile_use_background_image": true, "name": "M. Lopez", "url": null, "following": null, "profile_link_color": "D40819", "statuses_count": 46367, "is_translator": false}, "text": "I'm so proud/sad that Anthony works almost everyday and still manages football twice a week.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472736969728000", "id": 716472736969728000, "timestamp_ms": "1459655386570", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471003593838592", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2260438698", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1414484724/1459479998", "description": "it's national peanut butter & jelly day", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": "arsenal // hhs soccer", "follow_request_sent": null, "followers_count": 763, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714577396700168194/_vhOIZ7F_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 426, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "time_zone": "Arizona", "profile_text_color": "3D1957", "id_str": "1414484724", "protected": false, "id": 1414484724, "favourites_count": 13568, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "SchuttMandie", "profile_image_url": "http://pbs.twimg.com/profile_images/714577396700168194/_vhOIZ7F_normal.jpg", "lang": "en", "created_at": "Thu May 09 03:51:59 +0000 2013", "profile_use_background_image": true, "name": "mandie", "url": null, "following": null, "profile_link_color": "FF0000", "statuses_count": 15146, "is_translator": false}, "text": "@CarnahanKaelyn I miss you too come back :((", "retweeted": false, "in_reply_to_screen_name": "CarnahanKaelyn", "id_str": "716472741218504704", "id": 716472741218504704, "timestamp_ms": "1459655387583", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "kae", "indices": [0, 15], "id": 2260438698, "screen_name": "CarnahanKaelyn", "id_str": "2260438698"}], "hashtags": []}, "in_reply_to_user_id": 2260438698, "favorite_count": 0, "in_reply_to_status_id": 716471003593838592, "lang": "en", "created_at": "Sun Apr 03 03:49:47 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472597202997248", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "301021057", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80701, "is_translator": false}, "text": "@Jacti0nJ hey u af", "retweeted": false, "in_reply_to_screen_name": "Jacti0nJ", "id_str": "716472743521181696", "id": 716472743521181696, "timestamp_ms": "1459655388132", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Weave Wilkos", "indices": [0, 9], "id": 301021057, "screen_name": "Jacti0nJ", "id_str": "301021057"}], "hashtags": []}, "in_reply_to_user_id": 301021057, "favorite_count": 0, "in_reply_to_status_id": 716472597202997248, "lang": "en", "created_at": "Sun Apr 03 03:49:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/863584664/1458860614", "description": "I want it all and nothing else; give me your all and nothing else", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "z\u2600\ufe0fna", "follow_request_sent": null, "followers_count": 547, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712685687603113985/8Jd014F7_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 502, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "863584664", "protected": false, "id": 863584664, "favourites_count": 18259, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Jasmin_Dolores", "profile_image_url": "http://pbs.twimg.com/profile_images/712685687603113985/8Jd014F7_normal.jpg", "lang": "en", "created_at": "Fri Oct 05 19:50:05 +0000 2012", "profile_use_background_image": true, "name": "jassie", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 13053, "is_translator": false}, "text": "I love Saturday Night Fever", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472750886490112", "id": 716472750886490112, "timestamp_ms": "1459655389888", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/46810456/1454651572", "description": "snap: eileenmccarthy", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "FAFAFA", "verified": false, "location": "location: probably by the food", "follow_request_sent": null, "followers_count": 629, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715064046056124416/4pHatj4W_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068702162/1f55411a4ceee0900f91eb2665fe977b.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 348, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068702162/1f55411a4ceee0900f91eb2665fe977b.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "46810456", "protected": false, "id": 46810456, "favourites_count": 18667, "profile_sidebar_fill_color": "DDFFCC", "screen_name": "EileeenMcCarthy", "profile_image_url": "http://pbs.twimg.com/profile_images/715064046056124416/4pHatj4W_normal.jpg", "lang": "en", "created_at": "Sat Jun 13 02:54:55 +0000 2009", "profile_use_background_image": true, "name": "eileen like a cholo", "url": null, "following": null, "profile_link_color": "000000", "statuses_count": 8893, "is_translator": false}, "text": "I was listening to chief keef and who pulls up at the light next to me? Chief keef", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472758318682112", "id": 716472758318682112, "timestamp_ms": "1459655391660", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:51 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/526915199/1459040279", "description": "| Az | Singer | Dancer | World Traveler | positive vibes | Snapchat: jessica_arnold |", "profile_sidebar_border_color": "5ED4DC", "profile_background_tile": false, "profile_background_color": "0099B9", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 786, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713892309956476928/dzqYuq3-_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 479, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "time_zone": "Arizona", "profile_text_color": "3C3940", "id_str": "526915199", "protected": false, "id": 526915199, "favourites_count": 14558, "profile_sidebar_fill_color": "95E8EC", "screen_name": "jesssssicakelly", "profile_image_url": "http://pbs.twimg.com/profile_images/713892309956476928/dzqYuq3-_normal.jpg", "lang": "en", "created_at": "Fri Mar 16 23:56:04 +0000 2012", "profile_use_background_image": true, "name": "Jess\u2600\ufe0f", "url": "http://Instagram.com/jessicakellyarnold", "following": null, "profile_link_color": "0099B9", "statuses_count": 10051, "is_translator": false}, "text": "Texas Roadhouse tonight... RIP my stomach \ud83d\udc80", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472764148809728", "id": 716472764148809728, "timestamp_ms": "1459655393050", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/409607879/1444085186", "description": "blame it on obama", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Los &geles", "follow_request_sent": null, "followers_count": 357, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/680638448219209729/RM1o3cCs_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 91, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "409607879", "protected": false, "id": 409607879, "favourites_count": 858, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "shrollmarcus", "profile_image_url": "http://pbs.twimg.com/profile_images/680638448219209729/RM1o3cCs_normal.jpg", "lang": "en", "created_at": "Fri Nov 11 00:06:45 +0000 2011", "profile_use_background_image": true, "name": "Marcus Shroll III", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 6367, "is_translator": false}, "text": "sanjay mahboobanji talkin shit on facebook", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472766183112708", "id": 716472766183112708, "timestamp_ms": "1459655393535", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/444199873/1458972152", "description": "work with me", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "dead", "follow_request_sent": null, "followers_count": 514, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713603744617918464/OSDI5NG2_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/620969834/y2m14mcpj9ocgvpwsm9y.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 427, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/620969834/y2m14mcpj9ocgvpwsm9y.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "444199873", "protected": false, "id": 444199873, "favourites_count": 6614, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "CarlosBerumen13", "profile_image_url": "http://pbs.twimg.com/profile_images/713603744617918464/OSDI5NG2_normal.jpg", "lang": "en", "created_at": "Fri Dec 23 00:52:55 +0000 2011", "profile_use_background_image": true, "name": "^", "url": "http://carlosberumen.vsco.co", "following": null, "profile_link_color": "000000", "statuses_count": 33971, "is_translator": false}, "text": "In need of a good stargazing night", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472767214825472", "id": 716472767214825472, "timestamp_ms": "1459655393781", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"description": "54 days | cfa \u300b", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 202, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714297212348600320/yXjtFKrj_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000027588771/4cc5bafd910ba608061b6da5d6ed6466.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 189, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000027588771/4cc5bafd910ba608061b6da5d6ed6466.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1605138312", "protected": false, "id": 1605138312, "favourites_count": 3847, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JVOmaddy", "profile_image_url": "http://pbs.twimg.com/profile_images/714297212348600320/yXjtFKrj_normal.jpg", "lang": "en", "created_at": "Fri Jul 19 05:34:53 +0000 2013", "profile_use_background_image": true, "name": "Madeline", "url": null, "following": null, "profile_link_color": "000000", "statuses_count": 3519, "is_translator": false}, "text": "Real friends \ud83d\udcaf", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472773464313857", "id": 716472773464313857, "timestamp_ms": "1459655395271", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/990017006/1458370804", "description": null, "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "pallet town", "follow_request_sent": null, "followers_count": 803, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710824660254875648/zgesN6ZC_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000179684429/loP8nw6V.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 464, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000179684429/loP8nw6V.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "990017006", "protected": false, "id": 990017006, "favourites_count": 8915, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "savytho", "profile_image_url": "http://pbs.twimg.com/profile_images/710824660254875648/zgesN6ZC_normal.jpg", "lang": "en", "created_at": "Wed Dec 05 02:27:00 +0000 2012", "profile_use_background_image": true, "name": "yung knee", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 34731, "is_translator": false}, "text": "I've been at my bfs job since 5", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472779088867328", "id": 716472779088867328, "timestamp_ms": "1459655396612", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:56 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716457908159049728", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "413272850", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/383498595/1354764810", "description": "Arrested for what? Being Awesome? #Bills", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Scottsdale, AZ", "follow_request_sent": null, "followers_count": 228, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/707576902039379969/OP0IDGAe_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 1095, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "383498595", "protected": false, "id": 383498595, "favourites_count": 2171, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "TheCMee23", "profile_image_url": "http://pbs.twimg.com/profile_images/707576902039379969/OP0IDGAe_normal.jpg", "lang": "en", "created_at": "Sun Oct 02 00:29:24 +0000 2011", "profile_use_background_image": true, "name": "Chris Meehan", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 13930, "is_translator": false}, "text": "@maxyice817 @PatersonDerek Lol, soccer", "retweeted": false, "in_reply_to_screen_name": "maxyice817", "id_str": "716472784319172608", "id": 716472784319172608, "timestamp_ms": "1459655397859", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Max Nagy", "indices": [0, 11], "id": 413272850, "screen_name": "maxyice817", "id_str": "413272850"}, {"name": "Derek Paterson", "indices": [12, 26], "id": 300664686, "screen_name": "PatersonDerek", "id_str": "300664686"}], "hashtags": []}, "in_reply_to_user_id": 413272850, "favorite_count": 0, "in_reply_to_status_id": 716457908159049728, "lang": "en", "created_at": "Sun Apr 03 03:49:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716415753466089472", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "346334204", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/J4AnqUwanh", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/Vincent72683021/status/716472791894110208/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsNByUMAAVPXc.jpg", "indices": [50, 73], "id": 716472786802192384, "id_str": "716472786802192384", "display_url": "pic.twitter.com/J4AnqUwanh", "media_url": "http://pbs.twimg.com/media/CfFsNByUMAAVPXc.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 20, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712166325750083584/sZdtKQ6o_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 92, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "706358650403590144", "protected": false, "id": 706358650403590144, "favourites_count": 10, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Vincent72683021", "profile_image_url": "http://pbs.twimg.com/profile_images/712166325750083584/sZdtKQ6o_normal.jpg", "lang": "en", "created_at": "Sun Mar 06 06:00:00 +0000 2016", "profile_use_background_image": true, "name": "druglord", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 14, "is_translator": false}, "text": "@Djrobbyrob205 @YouTube yo I pulled my first boss https://t.co/J4AnqUwanh", "retweeted": false, "in_reply_to_screen_name": "Djrobbyrob205", "id_str": "716472791894110208", "id": 716472791894110208, "timestamp_ms": "1459655399665", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "THESTRESSEDKNICKSFAN", "indices": [0, 14], "id": 346334204, "screen_name": "Djrobbyrob205", "id_str": "346334204"}, {"name": "YouTube", "indices": [15, 23], "id": 10228272, "screen_name": "YouTube", "id_str": "10228272"}], "hashtags": [], "media": [{"url": "https://t.co/J4AnqUwanh", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/Vincent72683021/status/716472791894110208/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsNByUMAAVPXc.jpg", "indices": [50, 73], "id": 716472786802192384, "id_str": "716472786802192384", "display_url": "pic.twitter.com/J4AnqUwanh", "media_url": "http://pbs.twimg.com/media/CfFsNByUMAAVPXc.jpg"}]}, "in_reply_to_user_id": 346334204, "favorite_count": 0, "in_reply_to_status_id": 716415753466089472, "lang": "en", "created_at": "Sun Apr 03 03:49:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/275823799/1458451533", "description": "South Africa and Arizona origins. BA in Math, MA in Secondary Education. Sun Devil. Teacher. \u2764\ufe0f", "profile_sidebar_border_color": "DFDFDF", "profile_background_tile": false, "profile_background_color": "EBEBEB", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 0, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710263551366078464/Q9zjk_5o_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 75, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "275823799", "protected": false, "id": 275823799, "favourites_count": 2, "profile_sidebar_fill_color": "F3F3F3", "screen_name": "sincmic", "profile_image_url": "http://pbs.twimg.com/profile_images/710263551366078464/Q9zjk_5o_normal.jpg", "lang": "en", "created_at": "Sat Apr 02 02:34:20 +0000 2011", "profile_use_background_image": true, "name": "MichelleEsmeSinclair", "url": null, "following": null, "profile_link_color": "990000", "statuses_count": 2561, "is_translator": false}, "text": "dude... late night twitter is bad news... just have fun and smack the rest... lol :P", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472797917130753", "id": 716472797917130753, "timestamp_ms": "1459655401101", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "355320336", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/72417822/1459222965", "description": "writer of @intmtu \n xe/xem/xyr/xemself\nadult", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "00BACE", "verified": false, "location": "TEMPE ", "follow_request_sent": null, "followers_count": 466, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715056661854044160/vLAC0Rq__normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/583131235343466496/MUJPavA_.png", "default_profile_image": false, "notifications": null, "listed_count": 13, "friends_count": 166, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/583131235343466496/MUJPavA_.png", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "333333", "id_str": "72417822", "protected": false, "id": 72417822, "favourites_count": 14651, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "kenzieprofit", "profile_image_url": "http://pbs.twimg.com/profile_images/715056661854044160/vLAC0Rq__normal.jpg", "lang": "en", "created_at": "Mon Sep 07 23:50:29 +0000 2009", "profile_use_background_image": true, "name": "olive queen", "url": "http://theonegal.bandcamp.com", "following": null, "profile_link_color": "F18C92", "statuses_count": 30500, "is_translator": false}, "text": "@commie_twink I left my shirt in ur truck", "retweeted": false, "in_reply_to_screen_name": "commie_twink", "id_str": "716472798726631424", "id": 716472798726631424, "timestamp_ms": "1459655401294", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "trash fucker", "indices": [0, 13], "id": 355320336, "screen_name": "commie_twink", "id_str": "355320336"}], "hashtags": []}, "in_reply_to_user_id": 355320336, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716466682202423296", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2324695387", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/887054136/1432322488", "description": "Wake up early, stay up late, change the world. J.M.G \u2764\ufe0f", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1159, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715078091614371840/ZZbAeRK7_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886589759/2ad8e606eaef1a80487be0fdc49fae8e.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 825, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886589759/2ad8e606eaef1a80487be0fdc49fae8e.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "887054136", "protected": false, "id": 887054136, "favourites_count": 15308, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HaleyLangille24", "profile_image_url": "http://pbs.twimg.com/profile_images/715078091614371840/ZZbAeRK7_normal.jpg", "lang": "en", "created_at": "Wed Oct 17 15:43:35 +0000 2012", "profile_use_background_image": true, "name": "Halestorm", "url": null, "following": null, "profile_link_color": "73292E", "statuses_count": 9129, "is_translator": false}, "text": "@jordynuhrinyak there's always tomorrow night", "retweeted": false, "in_reply_to_screen_name": "jordynuhrinyak", "id_str": "716472805789806595", "id": 716472805789806595, "timestamp_ms": "1459655402978", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "jo", "indices": [0, 15], "id": 2324695387, "screen_name": "jordynuhrinyak", "id_str": "2324695387"}], "hashtags": []}, "in_reply_to_user_id": 2324695387, "favorite_count": 0, "in_reply_to_status_id": 716466682202423296, "lang": "en", "created_at": "Sun Apr 03 03:50:02 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716472594816323584/pu/pl/ftcQ9ev8U2e0Y_lL.m3u8"}, {"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716472594816323584/pu/vid/180x320/CWCH-AaXAUi-uioq.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716472594816323584/pu/pl/ftcQ9ev8U2e0Y_lL.mpd"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716472594816323584/pu/vid/360x640/8O4TatpoO8ga3nas.mp4"}], "aspect_ratio": [94, 167], "duration_millis": 9500}, "url": "https://t.co/Xcidvw8bE1", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 376, "resize": "fit", "h": 668}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 376, "resize": "fit", "h": 668}}, "type": "video", "expanded_url": "http://twitter.com/_VictoriaALEXIS/status/716472806507094016/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472594816323584/pu/img/eRFe7Qe1WDg-UUuT.jpg", "indices": [0, 23], "id": 716472594816323584, "id_str": "716472594816323584", "display_url": "pic.twitter.com/Xcidvw8bE1", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472594816323584/pu/img/eRFe7Qe1WDg-UUuT.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/219844924/1456202802", "description": "put you on 20", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Avondale, AZ", "follow_request_sent": null, "followers_count": 392, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708344095131828225/rWSvVta9_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/846635504/e36ef6d8fa6671815159259314433b94.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 98, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/846635504/e36ef6d8fa6671815159259314433b94.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "44DB55", "id_str": "219844924", "protected": false, "id": 219844924, "favourites_count": 5806, "profile_sidebar_fill_color": "000000", "screen_name": "_VictoriaALEXIS", "profile_image_url": "http://pbs.twimg.com/profile_images/708344095131828225/rWSvVta9_normal.jpg", "lang": "en", "created_at": "Fri Nov 26 01:38:54 +0000 2010", "profile_use_background_image": true, "name": "Victoria", "url": null, "following": null, "profile_link_color": "009912", "statuses_count": 41592, "is_translator": false}, "text": "https://t.co/Xcidvw8bE1", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472806507094016", "id": 716472806507094016, "timestamp_ms": "1459655403149", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/Xcidvw8bE1", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 376, "resize": "fit", "h": 668}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 376, "resize": "fit", "h": 668}}, "type": "photo", "expanded_url": "http://twitter.com/_VictoriaALEXIS/status/716472806507094016/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472594816323584/pu/img/eRFe7Qe1WDg-UUuT.jpg", "indices": [0, 23], "id": 716472594816323584, "id_str": "716472594816323584", "display_url": "pic.twitter.com/Xcidvw8bE1", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472594816323584/pu/img/eRFe7Qe1WDg-UUuT.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:50:03 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/584090842/1457910341", "description": "Hispanic as fuck", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "28AFE0", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1095, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710655091108229120/h540Xalq_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000077317230/3b0074f435f7a0040c143e2dc241526e.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 777, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000077317230/3b0074f435f7a0040c143e2dc241526e.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "584090842", "protected": false, "id": 584090842, "favourites_count": 18522, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "empressboooty", "profile_image_url": "http://pbs.twimg.com/profile_images/710655091108229120/h540Xalq_normal.jpg", "lang": "en", "created_at": "Fri May 18 19:25:34 +0000 2012", "profile_use_background_image": true, "name": "Cerinnnnn", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 69817, "is_translator": false}, "text": "You just now learned this...? https://t.co/uKOAy7nr6T", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472807761154048", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1626880849/1452930986", "description": "The future is bulletproof the aftermath is secondary", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 327, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712316071068315648/Kw25Rbbl_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 448, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1626880849", "protected": false, "id": 1626880849, "favourites_count": 11457, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ramirez_alexsis", "profile_image_url": "http://pbs.twimg.com/profile_images/712316071068315648/Kw25Rbbl_normal.jpg", "lang": "en", "created_at": "Sun Jul 28 02:46:38 +0000 2013", "profile_use_background_image": true, "name": "Serenity\u2693", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8405, "is_translator": false}, "text": "Today I learned people are fucking crazy", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716435062846140417", "id": 716435062846140417, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 01:20:04 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472807761154048, "timestamp_ms": "1459655403448", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/ramirez_alexsis/status/716435062846140417", "indices": [31, 54], "display_url": "twitter.com/ramirez_alexsi\u2026", "url": "https://t.co/uKOAy7nr6T"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716435062846140417, "created_at": "Sun Apr 03 03:50:03 +0000 2016", "coordinates": null, "quoted_status_id_str": "716435062846140417", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472758318682112", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "46810456", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/46810456/1454651572", "description": "snap: eileenmccarthy", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "FAFAFA", "verified": false, "location": "location: probably by the food", "follow_request_sent": null, "followers_count": 629, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715064046056124416/4pHatj4W_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068702162/1f55411a4ceee0900f91eb2665fe977b.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 348, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068702162/1f55411a4ceee0900f91eb2665fe977b.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "46810456", "protected": false, "id": 46810456, "favourites_count": 18667, "profile_sidebar_fill_color": "DDFFCC", "screen_name": "EileeenMcCarthy", "profile_image_url": "http://pbs.twimg.com/profile_images/715064046056124416/4pHatj4W_normal.jpg", "lang": "en", "created_at": "Sat Jun 13 02:54:55 +0000 2009", "profile_use_background_image": true, "name": "eileen like a cholo", "url": null, "following": null, "profile_link_color": "000000", "statuses_count": 8894, "is_translator": false}, "text": "@EileeenMcCarthy not really but homeboy looked just like him \ud83d\ude02\ud83d\ude02\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": "EileeenMcCarthy", "id_str": "716472828061614081", "id": 716472828061614081, "timestamp_ms": "1459655408288", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "eileen like a cholo", "indices": [0, 16], "id": 46810456, "screen_name": "EileeenMcCarthy", "id_str": "46810456"}], "hashtags": []}, "in_reply_to_user_id": 46810456, "favorite_count": 0, "in_reply_to_status_id": 716472758318682112, "lang": "en", "created_at": "Sun Apr 03 03:50:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CfFsOucUkAAo3FA.mp4"}], "aspect_ratio": [1, 1]}, "url": "https://t.co/qLtj7NQGI1", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "animated_gif", "expanded_url": "http://twitter.com/suddenlygarmo/status/716472825997975554/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFsOucUkAAo3FA.jpg", "indices": [6, 29], "id": 716472815969406976, "id_str": "716472815969406976", "display_url": "pic.twitter.com/qLtj7NQGI1", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFsOucUkAAo3FA.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/549730034/1356852934", "description": "spring break 1998 no regrets", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "CAE9EB", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 178, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659455441294897152/Ro3Ph9Pd_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/610930673/p92wkfpow7qs28r7cgi7.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 252, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/610930673/p92wkfpow7qs28r7cgi7.jpeg", "time_zone": "Central Time (US & Canada)", "profile_text_color": "333333", "id_str": "549730034", "protected": false, "id": 549730034, "favourites_count": 11947, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "suddenlygarmo", "profile_image_url": "http://pbs.twimg.com/profile_images/659455441294897152/Ro3Ph9Pd_normal.jpg", "lang": "en", "created_at": "Tue Apr 10 02:12:24 +0000 2012", "profile_use_background_image": true, "name": "vILLAGE IDOIT :(", "url": null, "following": null, "profile_link_color": "F7897B", "statuses_count": 7932, "is_translator": false}, "text": "it me https://t.co/qLtj7NQGI1", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472825997975554", "id": 716472825997975554, "timestamp_ms": "1459655407796", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/qLtj7NQGI1", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/suddenlygarmo/status/716472825997975554/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFsOucUkAAo3FA.jpg", "indices": [6, 29], "id": 716472815969406976, "id_str": "716472815969406976", "display_url": "pic.twitter.com/qLtj7NQGI1", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFsOucUkAAo3FA.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716415136446095360", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1869307429", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1122348864/1454294144", "description": "UW-Madison Class of 2020 | OH\u27a1\ufe0fAZ\u27a1\ufe0f...WI", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 446, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712168682571505664/rGzHomsW_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 295, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1122348864", "protected": false, "id": 1122348864, "favourites_count": 13827, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ClaytonReible", "profile_image_url": "http://pbs.twimg.com/profile_images/712168682571505664/rGzHomsW_normal.jpg", "lang": "en", "created_at": "Sat Jan 26 15:41:33 +0000 2013", "profile_use_background_image": true, "name": "Clayton", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8592, "is_translator": false}, "text": "@Alexa_Boudreaux not me lol", "retweeted": false, "in_reply_to_screen_name": "Alexa_Boudreaux", "id_str": "716472830137802752", "id": 716472830137802752, "timestamp_ms": "1459655408783", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "lex", "indices": [0, 16], "id": 1869307429, "screen_name": "Alexa_Boudreaux", "id_str": "1869307429"}], "hashtags": []}, "in_reply_to_user_id": 1869307429, "favorite_count": 0, "in_reply_to_status_id": 716415136446095360, "lang": "en", "created_at": "Sun Apr 03 03:50:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472755911135233", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "319850776", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80702, "is_translator": false}, "text": "\u201c@Nyxnyl: I drive a 2016 cuz I want to \ud83d\udc85\ud83c\udffe\ud83d\udc85\ud83c\udffe\ud83d\udc85\ud83c\udffe https://t.co/g7dkEvQpNt\u201d\n\nwhat car you got?", "retweeted": false, "in_reply_to_screen_name": "Nyxnyl", "id_str": "716472832637599744", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80701, "is_translator": false}, "text": "I drive a 2016 cuz im good with money, that\u2019s all lol", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472586536783873", "id": 716472586536783873, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:49:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472832637599744, "timestamp_ms": "1459655409379", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/juuulzsantana/status/716472586536783873", "indices": [46, 69], "display_url": "twitter.com/juuulzsantana/\u2026", "url": "https://t.co/g7dkEvQpNt"}], "user_mentions": [{"name": ".", "indices": [1, 8], "id": 319850776, "screen_name": "Nyxnyl", "id_str": "319850776"}], "hashtags": []}, "in_reply_to_user_id": 319850776, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": 716472755911135233, "quoted_status_id": 716472586536783873, "created_at": "Sun Apr 03 03:50:09 +0000 2016", "coordinates": null, "quoted_status_id_str": "716472586536783873", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471037240680448", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "15473574", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/14702369/1397746711", "description": "Infosec, politics, culture and privilege, Sounders, Open Source Software, Tacoma, all things Cascadian.\n\nProgress! Tolerance! Acceptance! Feels!", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Tacoma, WA", "follow_request_sent": null, "followers_count": 434, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705263484041179137/WydQyZSS_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 42, "friends_count": 856, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "14702369", "protected": false, "id": 14702369, "favourites_count": 6529, "profile_sidebar_fill_color": "000000", "screen_name": "podfish", "profile_image_url": "http://pbs.twimg.com/profile_images/705263484041179137/WydQyZSS_normal.jpg", "lang": "en", "created_at": "Thu May 08 16:38:05 +0000 2008", "profile_use_background_image": false, "name": "Steven R. Ketelsen", "url": null, "following": null, "profile_link_color": "4A913C", "statuses_count": 13467, "is_translator": false}, "text": "@SamSeder @LCMee24 @DineshDSouza #iputthatshitoneverything", "retweeted": false, "in_reply_to_screen_name": "SamSeder", "id_str": "716472840342495233", "id": 716472840342495233, "timestamp_ms": "1459655411216", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Sam Seder", "indices": [0, 9], "id": 15473574, "screen_name": "SamSeder", "id_str": "15473574"}, {"name": "Ronin\u2122", "indices": [10, 18], "id": 1113416226, "screen_name": "LCMee24", "id_str": "1113416226"}, {"name": "Dinesh D'Souza", "indices": [19, 32], "id": 91882544, "screen_name": "DineshDSouza", "id_str": "91882544"}], "hashtags": [{"indices": [33, 58], "text": "iputthatshitoneverything"}]}, "in_reply_to_user_id": 15473574, "favorite_count": 0, "in_reply_to_status_id": 716471037240680448, "lang": "und", "created_at": "Sun Apr 03 03:50:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/VWivZpJM0i", "sizes": {"large": {"w": 457, "resize": "fit", "h": 165}, "small": {"w": 340, "resize": "fit", "h": 123}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 457, "resize": "fit", "h": 165}}, "type": "photo", "expanded_url": "http://twitter.com/AriAlvarado_/status/716472843618267137/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsQEFUUAAKNGA.jpg", "indices": [23, 46], "id": 716472838958370816, "id_str": "716472838958370816", "display_url": "pic.twitter.com/VWivZpJM0i", "media_url": "http://pbs.twimg.com/media/CfFsQEFUUAAKNGA.jpg"}, {"url": "https://t.co/VWivZpJM0i", "sizes": {"small": {"w": 340, "resize": "fit", "h": 113}, "large": {"w": 550, "resize": "fit", "h": 182}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 550, "resize": "fit", "h": 182}}, "type": "photo", "expanded_url": "http://twitter.com/AriAlvarado_/status/716472843618267137/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsQEIUYAQr9Ut.jpg", "indices": [23, 46], "id": 716472838970957828, "id_str": "716472838970957828", "display_url": "pic.twitter.com/VWivZpJM0i", "media_url": "http://pbs.twimg.com/media/CfFsQEIUYAQr9Ut.jpg"}]}, "place": {"full_name": "Chompie's Deli", "place_type": "poi", "attributes": {}, "name": "Chompie's Deli", "country": "United States", "id": "07d9e44a05887001", "bounding_box": {"coordinates": [[[-111.901245, 33.297606], [-111.901245, 33.297606], [-111.901245, 33.297606], [-111.901245, 33.297606]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/07d9e44a05887001.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2837497381/1459467327", "description": "@thetomboylifee is my boyf //cds", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "w/ nat ", "follow_request_sent": null, "followers_count": 587, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716466406380834817/u_cxt7dw_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 698, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2837497381", "protected": false, "id": 2837497381, "favourites_count": 6041, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "AriAlvarado_", "profile_image_url": "http://pbs.twimg.com/profile_images/716466406380834817/u_cxt7dw_normal.jpg", "lang": "en", "created_at": "Thu Oct 02 02:30:17 +0000 2014", "profile_use_background_image": true, "name": "Ari Avocado", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 6465, "is_translator": false}, "text": "people are so sweet \u2665\ufe0f https://t.co/VWivZpJM0i", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472843618267137", "id": 716472843618267137, "timestamp_ms": "1459655411997", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/VWivZpJM0i", "sizes": {"large": {"w": 457, "resize": "fit", "h": 165}, "small": {"w": 340, "resize": "fit", "h": 123}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 457, "resize": "fit", "h": 165}}, "type": "photo", "expanded_url": "http://twitter.com/AriAlvarado_/status/716472843618267137/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsQEFUUAAKNGA.jpg", "indices": [23, 46], "id": 716472838958370816, "id_str": "716472838958370816", "display_url": "pic.twitter.com/VWivZpJM0i", "media_url": "http://pbs.twimg.com/media/CfFsQEFUUAAKNGA.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:11 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/571397184/1459311108", "description": "LHS // snap:cheyenneroose16", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 699, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715027583004504064/y2kvAhoZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 440, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "571397184", "protected": false, "id": 571397184, "favourites_count": 48975, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "CheyenneRoose", "profile_image_url": "http://pbs.twimg.com/profile_images/715027583004504064/y2kvAhoZ_normal.jpg", "lang": "en", "created_at": "Sat May 05 01:19:46 +0000 2012", "profile_use_background_image": true, "name": "C.", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8144, "is_translator": false}, "text": "I need something to do tonight", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472871376125953", "id": 716472871376125953, "timestamp_ms": "1459655418615", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:18 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472684448768000", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1611241290", "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/702156519312220160/1457150336", "description": "Here to share & look at photos & videos. My be XXX or maybe not.My posts are XXX & fitness.Dont like that dont follow me.Plain & simple", "profile_sidebar_border_color": "CC3366", "profile_background_tile": true, "profile_background_color": "FF6699", "verified": false, "location": "Glendale Az", "follow_request_sent": null, "followers_count": 103, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716447212905975808/yE7zatxW_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 36, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "362720", "id_str": "702156519312220160", "protected": false, "id": 702156519312220160, "favourites_count": 950, "profile_sidebar_fill_color": "E5507E", "screen_name": "TattooNTitties", "profile_image_url": "http://pbs.twimg.com/profile_images/716447212905975808/yE7zatxW_normal.jpg", "lang": "en", "created_at": "Tue Feb 23 15:42:14 +0000 2016", "profile_use_background_image": true, "name": "\u24c9\u24c3\u24c9 18+", "url": "http://www.amazon.com/gp/registry/wishlist/ref=nav_youraccount_wl?ie=UTF8&requiresSignIn=1", "following": null, "profile_link_color": "B40B43", "statuses_count": 939, "is_translator": false}, "text": "@SnapchatMilfs Nope", "retweeted": false, "in_reply_to_screen_name": "SnapchatMilfs", "id_str": "716472893417267201", "id": 716472893417267201, "timestamp_ms": "1459655423870", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "@SnapchatMilfs", "indices": [0, 14], "id": 1611241290, "screen_name": "SnapchatMilfs", "id_str": "1611241290"}], "hashtags": []}, "in_reply_to_user_id": 1611241290, "favorite_count": 0, "in_reply_to_status_id": 716472684448768000, "lang": "en", "created_at": "Sun Apr 03 03:50:23 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/360868889/1457213651", "description": "Nothin like you niggas #BossMovesOnly", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Toledo OH \u2708\ufe0f Phoenix AZ \u2600\ufe0f", "follow_request_sent": null, "followers_count": 3650, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716446519436513280/LXyExRQP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/318127854/nicki-minaj-covers-elle-may-2011-01_large.jpg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 2577, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/318127854/nicki-minaj-covers-elle-may-2011-01_large.jpg", "time_zone": "Quito", "profile_text_color": "615B61", "id_str": "360868889", "protected": false, "id": 360868889, "favourites_count": 3552, "profile_sidebar_fill_color": "000000", "screen_name": "_KingVelle_", "profile_image_url": "http://pbs.twimg.com/profile_images/716446519436513280/LXyExRQP_normal.jpg", "lang": "en", "created_at": "Tue Aug 23 22:03:08 +0000 2011", "profile_use_background_image": true, "name": "Velle", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 45408, "is_translator": false}, "text": "My last time reaching out", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472899343765504", "id": 716472899343765504, "timestamp_ms": "1459655425283", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3188842992/1457457557", "description": "cool beans sc: twashburn3", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 270, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712122321423638528/iLiD1aHv_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 420, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3188842992", "protected": false, "id": 3188842992, "favourites_count": 1619, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "TreyWashburn_3", "profile_image_url": "http://pbs.twimg.com/profile_images/712122321423638528/iLiD1aHv_normal.jpg", "lang": "en", "created_at": "Fri May 08 15:30:39 +0000 2015", "profile_use_background_image": true, "name": "trigga trey", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 820, "is_translator": false}, "text": "Ugh I don't even know anymore\ud83d\ude1e", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472899834503168", "id": 716472899834503168, "timestamp_ms": "1459655425400", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2716271159/1459063627", "description": "saved China, no big deal", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 150, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713991068409315329/pKZj_c1__normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 120, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "2716271159", "protected": false, "id": 2716271159, "favourites_count": 3661, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "KealaniFaulkner", "profile_image_url": "http://pbs.twimg.com/profile_images/713991068409315329/pKZj_c1__normal.jpg", "lang": "en", "created_at": "Fri Jul 18 02:37:09 +0000 2014", "profile_use_background_image": true, "name": "Fa Mulan", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2608, "is_translator": false}, "text": "I understand why I have no friends. It's because I'd rather stay home, bored, than hang out with people.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472900295864320", "id": 716472900295864320, "timestamp_ms": "1459655425510", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3131453037/1459580951", "description": "@curvedjason \u2661", "profile_sidebar_border_color": "181A1E", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 273, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709657415097065472/T6eu0HiF_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 220, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": null, "profile_text_color": "666666", "id_str": "3131453037", "protected": false, "id": 3131453037, "favourites_count": 9238, "profile_sidebar_fill_color": "252429", "screen_name": "_haileerose21", "profile_image_url": "http://pbs.twimg.com/profile_images/709657415097065472/T6eu0HiF_normal.jpg", "lang": "en", "created_at": "Fri Apr 03 03:50:29 +0000 2015", "profile_use_background_image": true, "name": "hailee \u2661", "url": null, "following": null, "profile_link_color": "2FC2EF", "statuses_count": 5722, "is_translator": false}, "text": "Why would I ask for days off of work if I basically get told no? \ud83d\ude12", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472903504502784", "id": 716472903504502784, "timestamp_ms": "1459655426275", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472685342003200", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "31546738", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/338170681/1459193418", "description": "ASU 19' Game Day Director at the Programming and Activities Board West Campus", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "701303", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 161, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714679239098949632/QfHwDIKa_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 305, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "338170681", "protected": false, "id": 338170681, "favourites_count": 2197, "profile_sidebar_fill_color": "000000", "screen_name": "szamora25", "profile_image_url": "http://pbs.twimg.com/profile_images/714679239098949632/QfHwDIKa_normal.jpg", "lang": "en", "created_at": "Tue Jul 19 05:21:00 +0000 2011", "profile_use_background_image": true, "name": "sunburntdevil", "url": "http://1-800-hotline-bling.com", "following": null, "profile_link_color": "FAB81E", "statuses_count": 1221, "is_translator": false}, "text": "@barisamugarin i know I'm just messing with you lmao", "retweeted": false, "in_reply_to_screen_name": "barisamugarin", "id_str": "716472905194803200", "id": 716472905194803200, "timestamp_ms": "1459655426678", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Marisa Bugarin", "indices": [0, 14], "id": 31546738, "screen_name": "barisamugarin", "id_str": "31546738"}], "hashtags": []}, "in_reply_to_user_id": 31546738, "favorite_count": 0, "in_reply_to_status_id": 716472685342003200, "lang": "en", "created_at": "Sun Apr 03 03:50:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "passionate, conservative, innovative, free market enthusiast of financial independence through limited, constitutional government", "profile_sidebar_border_color": "829D5E", "profile_background_tile": false, "profile_background_color": "352726", "verified": false, "location": "Phoenix", "follow_request_sent": null, "followers_count": 14192, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/501159742836727808/6GeBWpkC_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 314, "friends_count": 13944, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3E4415", "id_str": "20826129", "protected": false, "id": 20826129, "favourites_count": 119, "profile_sidebar_fill_color": "99CC33", "screen_name": "tasteofaz", "profile_image_url": "http://pbs.twimg.com/profile_images/501159742836727808/6GeBWpkC_normal.png", "lang": "en", "created_at": "Sat Feb 14 02:22:28 +0000 2009", "profile_use_background_image": true, "name": "AZ Dreamer", "url": null, "following": null, "profile_link_color": "D02B55", "statuses_count": 218272, "is_translator": false}, "text": "Is Ted Cruz a Philanderer, Unfaithful 2 Heidi, DC Madam/Ashley Madison Client? https://t.co/D8AHiuQ1ZL Vote WISELY #OnlyTRUMP #WIPrimary", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472912216129536", "id": 716472912216129536, "timestamp_ms": "1459655428352", "entities": {"symbols": [], "urls": [{"expanded_url": "http://tl.gd/n_1soh0dv", "indices": [79, 102], "display_url": "tl.gd/n_1soh0dv", "url": "https://t.co/D8AHiuQ1ZL"}], "user_mentions": [], "hashtags": [{"indices": [115, 125], "text": "OnlyTRUMP"}, {"indices": [126, 136], "text": "WIPrimary"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:28 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/47x5RoqMMc", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/cinderellaffair/status/716472922102104064/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsTldUMAAqlxC.jpg", "indices": [117, 140], "id": 716472899457003520, "id_str": "716472899457003520", "display_url": "pic.twitter.com/47x5RoqMMc", "media_url": "http://pbs.twimg.com/media/CfFsTldUMAAqlxC.jpg"}]}, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/787949844/1455498433", "description": "Making Prom affordable for Arizona teens with a free dress boutique every year.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 725, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/699037319555391488/WDkdjL6q_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 2844, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "787949844", "protected": false, "id": 787949844, "favourites_count": 27, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "cinderellaffair", "profile_image_url": "http://pbs.twimg.com/profile_images/699037319555391488/WDkdjL6q_normal.jpg", "lang": "en", "created_at": "Tue Aug 28 22:08:41 +0000 2012", "profile_use_background_image": true, "name": "Cinderella Affair", "url": "http://www.cinderellaaffair.org", "following": null, "profile_link_color": "0084B4", "statuses_count": 116, "is_translator": false}, "text": "Another awesome day helping 260 princesses find their prom dress, shoes, jewelry and purses! #cinderellaaffair #prom https://t.co/47x5RoqMMc", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472922102104064", "id": 716472922102104064, "timestamp_ms": "1459655430709", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [93, 110], "text": "cinderellaaffair"}, {"indices": [111, 116], "text": "prom"}], "media": [{"url": "https://t.co/47x5RoqMMc", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/cinderellaffair/status/716472922102104064/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsTldUMAAqlxC.jpg", "indices": [117, 140], "id": 716472899457003520, "id_str": "716472899457003520", "display_url": "pic.twitter.com/47x5RoqMMc", "media_url": "http://pbs.twimg.com/media/CfFsTldUMAAqlxC.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2610613638/1437282742", "description": "he need some milk", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Show Low, AZ", "follow_request_sent": null, "followers_count": 186, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715428196640890880/AEZtujz8_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 360, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2610613638", "protected": false, "id": 2610613638, "favourites_count": 1796, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "_WYATTKENNEDY_", "profile_image_url": "http://pbs.twimg.com/profile_images/715428196640890880/AEZtujz8_normal.jpg", "lang": "en", "created_at": "Mon Jul 07 23:12:25 +0000 2014", "profile_use_background_image": true, "name": "wyatt kennedy", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1363, "is_translator": false}, "text": "Someone, anyone, text me 9283687220", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472931182772224", "id": 716472931182772224, "timestamp_ms": "1459655432874", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/297663736/1457713963", "description": "No One Can Take, What GOD Has Given \u2764\ufe0fLourdes\u2764\ufe0f #PatriotsNation #Suns #ASU #CreepLife", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Glendale, AZ", "follow_request_sent": null, "followers_count": 629, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716330870701883392/1TdpRKhJ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/503673510934216704/9IEC1VLs.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 17, "friends_count": 716, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/503673510934216704/9IEC1VLs.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "297663736", "protected": false, "id": 297663736, "favourites_count": 122, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Teescrazylife", "profile_image_url": "http://pbs.twimg.com/profile_images/716330870701883392/1TdpRKhJ_normal.jpg", "lang": "en", "created_at": "Thu May 12 22:05:14 +0000 2011", "profile_use_background_image": true, "name": "Terrance", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 46595, "is_translator": false}, "text": "\ud83d\udc40 https://t.co/XhRxRp8Fke", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472932168392705", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "2946878791", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/3jEMC3De9I", "sizes": {"large": {"w": 946, "resize": "fit", "h": 1182}, "small": {"w": 340, "resize": "fit", "h": 425}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 750}}, "type": "photo", "expanded_url": "http://twitter.com/karrueche/status/716309863882600448/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfDYBYoUAAA46vF.jpg", "indices": [14, 37], "id": 716309859054911488, "id_str": "716309859054911488", "display_url": "pic.twitter.com/3jEMC3De9I", "media_url": "http://pbs.twimg.com/media/CfDYBYoUAAA46vF.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/31355401/1428020660", "description": "where vietnam & the hood meet :) IG @karrueche Snapchat: ohkarrueche http://Facebook.com/itskarrueche karrueche@gmail.com", "profile_sidebar_border_color": "030303", "profile_background_tile": false, "profile_background_color": "121111", "verified": true, "location": "Los Angeles.", "follow_request_sent": null, "followers_count": 728744, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/583786619750055937/gwtfA9CH_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/274938748/tumblr_lmytqbrV031qfl5zoo1_500.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1420, "friends_count": 863, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/274938748/tumblr_lmytqbrV031qfl5zoo1_500.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "050303", "id_str": "31355401", "protected": false, "id": 31355401, "favourites_count": 3031, "profile_sidebar_fill_color": "D9A523", "screen_name": "karrueche", "profile_image_url": "http://pbs.twimg.com/profile_images/583786619750055937/gwtfA9CH_normal.jpg", "lang": "en", "created_at": "Wed Apr 15 06:17:47 +0000 2009", "profile_use_background_image": true, "name": "Karrueche Tran", "url": "http://youtube.com/karruechet", "following": null, "profile_link_color": "030303", "statuses_count": 22227, "is_translator": false}, "text": "@ModelisteMag https://t.co/3jEMC3De9I", "retweeted": false, "in_reply_to_screen_name": "ModelisteMag", "id_str": "716309863882600448", "id": 716309863882600448, "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Modeliste Magazine", "indices": [0, 13], "id": 2946878791, "screen_name": "ModelisteMag", "id_str": "2946878791"}], "hashtags": [], "media": [{"url": "https://t.co/3jEMC3De9I", "sizes": {"large": {"w": 946, "resize": "fit", "h": 1182}, "small": {"w": 340, "resize": "fit", "h": 425}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 750}}, "type": "photo", "expanded_url": "http://twitter.com/karrueche/status/716309863882600448/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfDYBYoUAAA46vF.jpg", "indices": [14, 37], "id": 716309859054911488, "id_str": "716309859054911488", "display_url": "pic.twitter.com/3jEMC3De9I", "media_url": "http://pbs.twimg.com/media/CfDYBYoUAAA46vF.jpg"}]}, "in_reply_to_user_id": 2946878791, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sat Apr 02 17:02:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716472932168392705, "timestamp_ms": "1459655433109", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/karrueche/status/716309863882600448", "indices": [2, 25], "display_url": "twitter.com/karrueche/stat\u2026", "url": "https://t.co/XhRxRp8Fke"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716309863882600448, "created_at": "Sun Apr 03 03:50:33 +0000 2016", "coordinates": null, "quoted_status_id_str": "716309863882600448", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1297397599/1449548081", "description": "Highline CC Mens soccer Barbrothers Seattle IG:@barbrothers_seattle", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "soccer and calisthenics ", "follow_request_sent": null, "followers_count": 504, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/539977405843009536/6AZYIzwc_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 298, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1297397599", "protected": false, "id": 1297397599, "favourites_count": 11053, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tinoslish", "profile_image_url": "http://pbs.twimg.com/profile_images/539977405843009536/6AZYIzwc_normal.jpeg", "lang": "en", "created_at": "Mon Mar 25 02:36:28 +0000 2013", "profile_use_background_image": true, "name": "T. Slish", "url": "https://m.youtube.com/channel/UCt5rpg_OuMDnymi-FNitHSg", "following": null, "profile_link_color": "0084B4", "statuses_count": 10301, "is_translator": false}, "text": "You can't knock the hustle it's way too strong", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472933711917064", "id": 716472933711917064, "timestamp_ms": "1459655433477", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472736969728000", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "71433914", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/71433914/1453792010", "description": "Anthony's honey dip.", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 491, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/698400257269305344/LE_Ih7lc_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778887446/7c356aa49a9fb1169f4fb30798d5bff7.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 122, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778887446/7c356aa49a9fb1169f4fb30798d5bff7.jpeg", "time_zone": "Arizona", "profile_text_color": "D40819", "id_str": "71433914", "protected": false, "id": 71433914, "favourites_count": 16206, "profile_sidebar_fill_color": "000000", "screen_name": "tannaXOXO", "profile_image_url": "http://pbs.twimg.com/profile_images/698400257269305344/LE_Ih7lc_normal.jpg", "lang": "en", "created_at": "Fri Sep 04 02:43:40 +0000 2009", "profile_use_background_image": true, "name": "M. Lopez", "url": null, "following": null, "profile_link_color": "D40819", "statuses_count": 46368, "is_translator": false}, "text": "Proud because that's my hardworking baby. \ud83d\ude18\ud83d\udcaa\ud83c\udffd but sad because he never gets to do anything.", "retweeted": false, "in_reply_to_screen_name": "tannaXOXO", "id_str": "716472938875133952", "id": 716472938875133952, "timestamp_ms": "1459655434708", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": 71433914, "favorite_count": 0, "in_reply_to_status_id": 716472736969728000, "lang": "en", "created_at": "Sun Apr 03 03:50:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716432392970305537", "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "721067293", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716472757496651777/pu/pl/q5fR10cM5fx6-1_A.m3u8"}, {"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716472757496651777/pu/vid/180x320/uWbGOZ1E6GjC2kiU.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716472757496651777/pu/pl/q5fR10cM5fx6-1_A.mpd"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716472757496651777/pu/vid/360x640/VqZDB_kyi37Ewe1U.mp4"}], "aspect_ratio": [9, 16], "duration_millis": 18012}, "url": "https://t.co/ZgZfMdDa7r", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "video", "expanded_url": "http://twitter.com/baby_ray11/status/716472943073595392/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472757496651777/pu/img/xewKPnCoeANHlkTa.jpg", "indices": [57, 80], "id": 716472757496651777, "id_str": "716472757496651777", "display_url": "pic.twitter.com/ZgZfMdDa7r", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472757496651777/pu/img/xewKPnCoeANHlkTa.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/450947223/1458326230", "description": "Phoenix College Softball\u2764\ufe0f\u26be\ufe0f PC Bears", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 441, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708730294631669760/2WtBl7d__normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 647, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "450947223", "protected": false, "id": 450947223, "favourites_count": 6814, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "baby_ray11", "profile_image_url": "http://pbs.twimg.com/profile_images/708730294631669760/2WtBl7d__normal.jpg", "lang": "en", "created_at": "Fri Dec 30 21:18:25 +0000 2011", "profile_use_background_image": true, "name": "Raychele Hernandez", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2443, "is_translator": false}, "text": "@santossoccer96 @its_fewsich_ok both pranks were funny\ud83d\ude02\ud83d\ude02 https://t.co/ZgZfMdDa7r", "retweeted": false, "in_reply_to_screen_name": "santossoccer96", "id_str": "716472943073595392", "id": 716472943073595392, "timestamp_ms": "1459655435709", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Santos Villasenor", "indices": [0, 15], "id": 721067293, "screen_name": "santossoccer96", "id_str": "721067293"}, {"name": "shelby", "indices": [16, 31], "id": 2648644523, "screen_name": "its_fewsich_ok", "id_str": "2648644523"}], "hashtags": [], "media": [{"url": "https://t.co/ZgZfMdDa7r", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "photo", "expanded_url": "http://twitter.com/baby_ray11/status/716472943073595392/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472757496651777/pu/img/xewKPnCoeANHlkTa.jpg", "indices": [57, 80], "id": 716472757496651777, "id_str": "716472757496651777", "display_url": "pic.twitter.com/ZgZfMdDa7r", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472757496651777/pu/img/xewKPnCoeANHlkTa.jpg"}]}, "in_reply_to_user_id": 721067293, "favorite_count": 0, "in_reply_to_status_id": 716432392970305537, "lang": "en", "created_at": "Sun Apr 03 03:50:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/258407245/1353522828", "description": "George Mason grad, formerly of Fox Sports in LA now CSN & MASN in DC, Go Caps Go - Natitude!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Washington, DC", "follow_request_sent": null, "followers_count": 384, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/528736871116189696/goF6hJm0_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 1070, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "258407245", "protected": false, "id": 258407245, "favourites_count": 1919, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "millerpenaltybx", "profile_image_url": "http://pbs.twimg.com/profile_images/528736871116189696/goF6hJm0_normal.jpeg", "lang": "en", "created_at": "Sun Feb 27 17:17:09 +0000 2011", "profile_use_background_image": true, "name": "Adam Miller", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 896, "is_translator": false}, "text": "Ovechkin 8 shot attempts (3 on goal - all in 2nd period, 4 blocked, 1 missed net), 3 hits in 12:01 thru 2 per. #CapitalsTalk @MayHockeyCSN", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472952288481289", "id": 716472952288481289, "timestamp_ms": "1459655437906", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Alan May", "indices": [125, 138], "id": 200229705, "screen_name": "MayHockeyCSN", "id_str": "200229705"}], "hashtags": [{"indices": [111, 124], "text": "CapitalsTalk"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:37 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "San Tan Valley, AZ", "place_type": "city", "attributes": {}, "name": "San Tan Valley", "country": "United States", "id": "002b06ee2655168a", "bounding_box": {"coordinates": [[[-111.63454, 33.08929], [-111.63454, 33.307181], [-111.486497, 33.307181], [-111.486497, 33.08929]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/002b06ee2655168a.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/173287296/1443931492", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 213, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2199363940/image_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 560, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "173287296", "protected": false, "id": 173287296, "favourites_count": 55, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "rayadote1", "profile_image_url": "http://pbs.twimg.com/profile_images/2199363940/image_normal.jpg", "lang": "en", "created_at": "Sun Aug 01 00:37:18 +0000 2010", "profile_use_background_image": true, "name": "juan cisneros", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 489, "is_translator": false}, "text": "Vamos rayados!!!", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472956830912512", "id": 716472956830912512, "timestamp_ms": "1459655438989", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "es", "created_at": "Sun Apr 03 03:50:38 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2402750521/1458200287", "description": "#KamuiKillas\u3299\ufe0f Used to be the trillest now they got the Illust...", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "SC: las_finest", "follow_request_sent": null, "followers_count": 244, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711486252340551684/WPsHnfas_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 220, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": null, "profile_text_color": "000000", "id_str": "2402750521", "protected": false, "id": 2402750521, "favourites_count": 3093, "profile_sidebar_fill_color": "000000", "screen_name": "Lostnillust", "profile_image_url": "http://pbs.twimg.com/profile_images/711486252340551684/WPsHnfas_normal.jpg", "lang": "en", "created_at": "Sat Mar 22 05:49:42 +0000 2014", "profile_use_background_image": true, "name": "\u018a\u0454$\u0454\u03b1\u03b7\u2122", "url": null, "following": null, "profile_link_color": "6A0888", "statuses_count": 1997, "is_translator": false}, "text": "3148", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472956449230848", "id": 716472956449230848, "timestamp_ms": "1459655438898", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:50:38 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716472843228196864/pu/vid/640x360/AJaLCOcTkhDfO-TT.mp4"}, {"content_type": "video/mp4", "bitrate": 2176000, "url": "https://video.twimg.com/ext_tw_video/716472843228196864/pu/vid/1280x720/xEMhHfc0K7q2xWD_.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716472843228196864/pu/pl/PI3Sb8Nb5I2LW2FC.mpd"}, {"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716472843228196864/pu/vid/320x180/P5J5ZnHgvR9jSVZs.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716472843228196864/pu/pl/PI3Sb8Nb5I2LW2FC.m3u8"}], "aspect_ratio": [16, 9], "duration_millis": 14038}, "url": "https://t.co/DfKqcFdGe3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "video", "expanded_url": "http://twitter.com/dcarskadden/status/716472957141262337/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472843228196864/pu/img/DXrJezdCAEquU8Re.jpg", "indices": [64, 87], "id": 716472843228196864, "id_str": "716472843228196864", "display_url": "pic.twitter.com/DfKqcFdGe3", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472843228196864/pu/img/DXrJezdCAEquU8Re.jpg"}]}, "place": {"full_name": "Luke Air Force Base", "place_type": "poi", "attributes": {}, "name": "Luke Air Force Base", "country": "United States", "id": "07d9e7ad2b884000", "bounding_box": {"coordinates": [[[-112.358222, 33.539638], [-112.358222, 33.539638], [-112.358222, 33.539638], [-112.358222, 33.539638]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/07d9e7ad2b884000.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/150855595/1436494637", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Zanesville, Ohio", "follow_request_sent": null, "followers_count": 40, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/482988587676610560/WNqrPU2W_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 125, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "150855595", "protected": false, "id": 150855595, "favourites_count": 126, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "dcarskadden", "profile_image_url": "http://pbs.twimg.com/profile_images/482988587676610560/WNqrPU2W_normal.jpeg", "lang": "en", "created_at": "Wed Jun 02 00:39:01 +0000 2010", "profile_use_background_image": true, "name": "Dan Carskadden", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 761, "is_translator": false}, "text": "Great to see the Thunderbirds today at Luke AFB #usa. #AirForce https://t.co/DfKqcFdGe3", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472957141262337", "id": 716472957141262337, "timestamp_ms": "1459655439063", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [48, 52], "text": "usa"}, {"indices": [54, 63], "text": "AirForce"}], "media": [{"url": "https://t.co/DfKqcFdGe3", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/dcarskadden/status/716472957141262337/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716472843228196864/pu/img/DXrJezdCAEquU8Re.jpg", "indices": [64, 87], "id": 716472843228196864, "id_str": "716472843228196864", "display_url": "pic.twitter.com/DfKqcFdGe3", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716472843228196864/pu/img/DXrJezdCAEquU8Re.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3239169673/1459175352", "description": "That one girl Jersey Jenn from Maskerpeicetheater. Check out me and many others on Maskedblogster's link below.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 63, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714459327491350530/9tqef8RN_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 227, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3239169673", "protected": false, "id": 3239169673, "favourites_count": 260, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "jerseyjenn919", "profile_image_url": "http://pbs.twimg.com/profile_images/714459327491350530/9tqef8RN_normal.jpg", "lang": "en", "created_at": "Sun Jun 07 18:32:45 +0000 2015", "profile_use_background_image": true, "name": "Jersey Jenn", "url": "http://abnormalentertainment.blogspot.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 578, "is_translator": false}, "text": "Fun fact. Fireball whiskey and vanilla coke are not good together. #BadDecisionsWeekend #Drinktillyoucantfeelwhatswrong", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472966297456640", "id": 716472966297456640, "timestamp_ms": "1459655441246", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [67, 87], "text": "BadDecisionsWeekend"}, {"indices": [88, 119], "text": "Drinktillyoucantfeelwhatswrong"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3131453037/1459580951", "description": "@curvedjason \u2661", "profile_sidebar_border_color": "181A1E", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 273, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709657415097065472/T6eu0HiF_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 220, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": null, "profile_text_color": "666666", "id_str": "3131453037", "protected": false, "id": 3131453037, "favourites_count": 9238, "profile_sidebar_fill_color": "252429", "screen_name": "_haileerose21", "profile_image_url": "http://pbs.twimg.com/profile_images/709657415097065472/T6eu0HiF_normal.jpg", "lang": "en", "created_at": "Fri Apr 03 03:50:29 +0000 2015", "profile_use_background_image": true, "name": "hailee \u2661", "url": null, "following": null, "profile_link_color": "2FC2EF", "statuses_count": 5723, "is_translator": false}, "text": "It's not my fault everyone wants to quit \ud83d\ude12", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472970240069632", "id": 716472970240069632, "timestamp_ms": "1459655442186", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471183076564992", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "21987731", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/14702369/1397746711", "description": "Infosec, politics, culture and privilege, Sounders, Open Source Software, Tacoma, all things Cascadian.\n\nProgress! Tolerance! Acceptance! Feels!", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Tacoma, WA", "follow_request_sent": null, "followers_count": 434, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705263484041179137/WydQyZSS_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 42, "friends_count": 856, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "14702369", "protected": false, "id": 14702369, "favourites_count": 6530, "profile_sidebar_fill_color": "000000", "screen_name": "podfish", "profile_image_url": "http://pbs.twimg.com/profile_images/705263484041179137/WydQyZSS_normal.jpg", "lang": "en", "created_at": "Thu May 08 16:38:05 +0000 2008", "profile_use_background_image": false, "name": "Steven R. Ketelsen", "url": null, "following": null, "profile_link_color": "4A913C", "statuses_count": 13468, "is_translator": false}, "text": "@kevin_zamira remember you said this, ok?", "retweeted": false, "in_reply_to_screen_name": "kevin_zamira", "id_str": "716472971418738688", "id": 716472971418738688, "timestamp_ms": "1459655442467", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Kevin Zamira", "indices": [0, 13], "id": 21987731, "screen_name": "kevin_zamira", "id_str": "21987731"}], "hashtags": []}, "in_reply_to_user_id": 21987731, "favorite_count": 0, "in_reply_to_status_id": 716471183076564992, "lang": "en", "created_at": "Sun Apr 03 03:50:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Queen Creek, AZ", "place_type": "city", "attributes": {}, "name": "Queen Creek", "country": "United States", "id": "01cb573821d94344", "bounding_box": {"coordinates": [[[-111.686314, 33.196614], [-111.686314, 33.288127], [-111.582748, 33.288127], [-111.582748, 33.196614]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/01cb573821d94344.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2658452285/1458277202", "description": "I'm a sarcastic bitch that you'll end up loving //alec w.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "qchs", "follow_request_sent": null, "followers_count": 556, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715728547524911105/4ZpHaKXO_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 315, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2658452285", "protected": false, "id": 2658452285, "favourites_count": 3516, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "m7hernandez", "profile_image_url": "http://pbs.twimg.com/profile_images/715728547524911105/4ZpHaKXO_normal.jpg", "lang": "en", "created_at": "Tue Jul 01 02:46:06 +0000 2014", "profile_use_background_image": true, "name": "mo", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2331, "is_translator": false}, "text": "let's hang out", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472988166565888", "id": 716472988166565888, "timestamp_ms": "1459655446460", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:46 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472719403974657", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "27937239", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/451568121/1454885724", "description": "Five Star Sports 1. Diabetes survivor! Sports Lover Extraordinaire! GCU student #GoLopes, Lyft Driver! Arizona Sports Always!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 395, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/703440359502680065/06WtkyoX_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 18, "friends_count": 1956, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "451568121", "protected": false, "id": 451568121, "favourites_count": 4060, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "729LIMO", "profile_image_url": "http://pbs.twimg.com/profile_images/703440359502680065/06WtkyoX_normal.jpg", "lang": "en", "created_at": "Sat Dec 31 17:56:55 +0000 2011", "profile_use_background_image": true, "name": "FiveStarSports1", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 21174, "is_translator": false}, "text": "@Gambo987 @GabbyGambo Congratulations! #DVProud", "retweeted": false, "in_reply_to_screen_name": "Gambo987", "id_str": "716472995682787329", "id": 716472995682787329, "timestamp_ms": "1459655448252", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "John Gambadoro", "indices": [0, 9], "id": 27937239, "screen_name": "Gambo987", "id_str": "27937239"}, {"name": "Hoodrat", "indices": [10, 21], "id": 612124130, "screen_name": "GabbyGambo", "id_str": "612124130"}], "hashtags": [{"indices": [39, 47], "text": "DVProud"}]}, "in_reply_to_user_id": 27937239, "favorite_count": 0, "in_reply_to_status_id": 716472719403974657, "lang": "en", "created_at": "Sun Apr 03 03:50:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3246945583/1458509672", "description": "i love avocados and art and animals // az", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 79, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713812839828422656/0g5mtIms_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 186, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3246945583", "protected": false, "id": 3246945583, "favourites_count": 939, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "rachaellaurae", "profile_image_url": "http://pbs.twimg.com/profile_images/713812839828422656/0g5mtIms_normal.jpg", "lang": "en", "created_at": "Tue Jun 16 15:10:36 +0000 2015", "profile_use_background_image": true, "name": "rach", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 135, "is_translator": false}, "text": "Apparently the show Victorious is a biography of Ben Franklin", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472998882988032", "id": 716472998882988032, "timestamp_ms": "1459655449015", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2435677070/1459575563", "description": "Senior | Club One Volleyball | Colossians 3:23", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "State fourty-eight", "follow_request_sent": null, "followers_count": 161, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715239637342531585/6ISTAa2C_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 121, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2435677070", "protected": false, "id": 2435677070, "favourites_count": 4173, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "madsrahn", "profile_image_url": "http://pbs.twimg.com/profile_images/715239637342531585/6ISTAa2C_normal.jpg", "lang": "en", "created_at": "Wed Apr 09 16:23:35 +0000 2014", "profile_use_background_image": true, "name": "\u2022Mads\u2022", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3065, "is_translator": false}, "text": "well I just had my breakdown for the week, time to go back to acting like i don't feel anything at all good bye", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716472999411523584", "id": 716472999411523584, "timestamp_ms": "1459655449141", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2556546621/1456150089", "description": "obsessed with tattoos", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 300, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704072127775780864/8oGURJ_7_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 821, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2556546621", "protected": false, "id": 2556546621, "favourites_count": 4405, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "reed98_reed", "profile_image_url": "http://pbs.twimg.com/profile_images/704072127775780864/8oGURJ_7_normal.jpg", "lang": "en", "created_at": "Wed May 21 02:01:12 +0000 2014", "profile_use_background_image": true, "name": "j", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 7026, "is_translator": false}, "text": "I'm just making it through this wedding then rushing to Phoenix to be with my sister", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473005702942721", "id": 716473005702942721, "timestamp_ms": "1459655450641", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:50 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716464951297093632", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1242248143", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "class of 2k16 maybe lol and young metro dont trust you.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 367, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714324138450620417/Tuwjv2wE_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 491, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "2152020548", "protected": false, "id": 2152020548, "favourites_count": 6889, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "maritzaaa_148", "profile_image_url": "http://pbs.twimg.com/profile_images/714324138450620417/Tuwjv2wE_normal.jpg", "lang": "en", "created_at": "Thu Oct 24 01:40:47 +0000 2013", "profile_use_background_image": true, "name": "Maritza.", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4489, "is_translator": false}, "text": "@Analeyvaa_ the crib", "retweeted": false, "in_reply_to_screen_name": "Analeyvaa_", "id_str": "716473008810885120", "id": 716473008810885120, "timestamp_ms": "1459655451382", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Ana.", "indices": [0, 11], "id": 1242248143, "screen_name": "Analeyvaa_", "id_str": "1242248143"}], "hashtags": []}, "in_reply_to_user_id": 1242248143, "favorite_count": 0, "in_reply_to_status_id": 716464951297093632, "lang": "en", "created_at": "Sun Apr 03 03:50:51 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/515020533/1459535903", "description": "The force is Probably not strong with you. I'll be the Louis to your Clark", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "BADFCD", "verified": false, "location": "Starkiller Base ", "follow_request_sent": null, "followers_count": 533, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716405699593375745/qQz_-R79_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/690060832105992193/QcUL4h2e.jpg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 449, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/690060832105992193/QcUL4h2e.jpg", "time_zone": null, "profile_text_color": "000000", "id_str": "515020533", "protected": false, "id": 515020533, "favourites_count": 10556, "profile_sidebar_fill_color": "000000", "screen_name": "ElleMorenoo", "profile_image_url": "http://pbs.twimg.com/profile_images/716405699593375745/qQz_-R79_normal.jpg", "lang": "en", "created_at": "Mon Mar 05 02:46:17 +0000 2012", "profile_use_background_image": true, "name": "Liz", "url": null, "following": null, "profile_link_color": "FF0000", "statuses_count": 19701, "is_translator": false}, "text": "Dude, I just made the best sugar cookies", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473015412719616", "id": 716473015412719616, "timestamp_ms": "1459655452956", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:52 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716399520704167936", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2434585272", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/633215811/1456290578", "description": "two job shawty", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "chi \u2708\ufe0f az", "follow_request_sent": null, "followers_count": 829, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/671512065425588224/RF4P-bag_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000020034637/81ea39cdb2fde625960d3a88c90d7971.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 15, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000020034637/81ea39cdb2fde625960d3a88c90d7971.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "633215811", "protected": false, "id": 633215811, "favourites_count": 98253, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "joleezymac", "profile_image_url": "http://pbs.twimg.com/profile_images/671512065425588224/RF4P-bag_normal.jpg", "lang": "en", "created_at": "Wed Jul 11 19:01:20 +0000 2012", "profile_use_background_image": true, "name": "momma jo", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 88428, "is_translator": false}, "text": "@zacchioomarissa fucking same", "retweeted": false, "in_reply_to_screen_name": "zacchioomarissa", "id_str": "716473024308862976", "id": 716473024308862976, "timestamp_ms": "1459655455077", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "VER-ZACCHI", "indices": [0, 16], "id": 2434585272, "screen_name": "zacchioomarissa", "id_str": "2434585272"}], "hashtags": []}, "in_reply_to_user_id": 2434585272, "favorite_count": 0, "in_reply_to_status_id": 716399520704167936, "lang": "en", "created_at": "Sun Apr 03 03:50:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80703, "is_translator": false}, "text": "my car has reached 1,000 miles today, my baby is aging. started at 35 miles breh", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473024531136513", "id": 716473024531136513, "timestamp_ms": "1459655455130", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/296594532/1456126605", "description": "I Dream in Color & be your own dad", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "FFB0DC", "verified": false, "location": "mhs senior", "follow_request_sent": null, "followers_count": 511, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714675197912227841/2qZmcMQ5_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000065666533/c2853ace182f45a52e59870cfa63e311.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 504, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000065666533/c2853ace182f45a52e59870cfa63e311.png", "time_zone": "Arizona", "profile_text_color": "9BAFFF", "id_str": "296594532", "protected": false, "id": 296594532, "favourites_count": 9668, "profile_sidebar_fill_color": "F6F1EF", "screen_name": "robbyraises", "profile_image_url": "http://pbs.twimg.com/profile_images/714675197912227841/2qZmcMQ5_normal.jpg", "lang": "en", "created_at": "Wed May 11 02:10:47 +0000 2011", "profile_use_background_image": false, "name": "ROBERT", "url": "https://soundcloud.com/robbyraises", "following": null, "profile_link_color": "FFB0DC", "statuses_count": 16815, "is_translator": false}, "text": "I want to go bet on horses", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473032387092480", "id": 716473032387092480, "timestamp_ms": "1459655457003", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471847076802560", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3193529316", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2377962129/1459035320", "description": "Tell me why you hatin? Tell me why you really mad? #LongLiveChillll #UNMLobo", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 819, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714270651062874112/GmoiKlP6_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 535, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2377962129", "protected": false, "id": 2377962129, "favourites_count": 4206, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ItsSimplySteph_", "profile_image_url": "http://pbs.twimg.com/profile_images/714270651062874112/GmoiKlP6_normal.jpg", "lang": "en", "created_at": "Mon Mar 03 03:32:37 +0000 2014", "profile_use_background_image": true, "name": "Queen Stephh", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 32233, "is_translator": false}, "text": "@youngbuckjay1 Hahahaha u bug you noodle head", "retweeted": false, "in_reply_to_screen_name": "youngbuckjay1", "id_str": "716473033754423296", "id": 716473033754423296, "timestamp_ms": "1459655457329", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "FR\u00d6ST", "indices": [0, 14], "id": 3193529316, "screen_name": "youngbuckjay1", "id_str": "3193529316"}], "hashtags": []}, "in_reply_to_user_id": 3193529316, "favorite_count": 0, "in_reply_to_status_id": 716471847076802560, "lang": "tl", "created_at": "Sun Apr 03 03:50:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716367572459859968", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2185042128", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2739616518/1439093536", "description": "CDS '16 \u2600 it's too late to turn back now", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "The Forest, Dante's Inferno ", "follow_request_sent": null, "followers_count": 135, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/693862042172674048/_sqJqNNI_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 158, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2739616518", "protected": false, "id": 2739616518, "favourites_count": 2787, "profile_sidebar_fill_color": "000000", "screen_name": "amnaadele", "profile_image_url": "http://pbs.twimg.com/profile_images/693862042172674048/_sqJqNNI_normal.jpg", "lang": "en", "created_at": "Sun Aug 17 12:49:57 +0000 2014", "profile_use_background_image": false, "name": "amna", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 1874, "is_translator": false}, "text": "@eddiecalrow you drop .02lbs of dead skin cells every day", "retweeted": false, "in_reply_to_screen_name": "eddiecalrow", "id_str": "716473035444752385", "id": 716473035444752385, "timestamp_ms": "1459655457732", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Fresh Prince", "indices": [0, 12], "id": 2185042128, "screen_name": "eddiecalrow", "id_str": "2185042128"}], "hashtags": []}, "in_reply_to_user_id": 2185042128, "favorite_count": 0, "in_reply_to_status_id": 716367572459859968, "lang": "en", "created_at": "Sun Apr 03 03:50:57 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/585138185/1459125285", "description": "sagittarius", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "040505", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 558, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713975503187742720/J-gUb3SY_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034262070/a223d8d687a851afcf89468b4650e227.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 326, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034262070/a223d8d687a851afcf89468b4650e227.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "585138185", "protected": false, "id": 585138185, "favourites_count": 17071, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "natalyavizzy", "profile_image_url": "http://pbs.twimg.com/profile_images/713975503187742720/J-gUb3SY_normal.jpg", "lang": "en", "created_at": "Sat May 19 22:21:03 +0000 2012", "profile_use_background_image": true, "name": "natalya vizzerra", "url": null, "following": null, "profile_link_color": "0FFACB", "statuses_count": 11060, "is_translator": false}, "text": "Make Me Proud by Drakes makes me so happy", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473043980136448", "id": 716473043980136448, "timestamp_ms": "1459655459767", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:50:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472938875133952", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "71433914", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/71433914/1453792010", "description": "Anthony's honey dip.", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 491, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/698400257269305344/LE_Ih7lc_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778887446/7c356aa49a9fb1169f4fb30798d5bff7.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 122, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778887446/7c356aa49a9fb1169f4fb30798d5bff7.jpeg", "time_zone": "Arizona", "profile_text_color": "D40819", "id_str": "71433914", "protected": false, "id": 71433914, "favourites_count": 16206, "profile_sidebar_fill_color": "000000", "screen_name": "tannaXOXO", "profile_image_url": "http://pbs.twimg.com/profile_images/698400257269305344/LE_Ih7lc_normal.jpg", "lang": "en", "created_at": "Fri Sep 04 02:43:40 +0000 2009", "profile_use_background_image": true, "name": "M. Lopez", "url": null, "following": null, "profile_link_color": "D40819", "statuses_count": 46369, "is_translator": false}, "text": "Like we were invited to three parties but forever tired lol.", "retweeted": false, "in_reply_to_screen_name": "tannaXOXO", "id_str": "716473049286066176", "id": 716473049286066176, "timestamp_ms": "1459655461032", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": 71433914, "favorite_count": 0, "in_reply_to_status_id": 716472938875133952, "lang": "en", "created_at": "Sun Apr 03 03:51:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716460051272105988", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "51904734", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/297663736/1457713963", "description": "No One Can Take, What GOD Has Given \u2764\ufe0fLourdes\u2764\ufe0f #PatriotsNation #Suns #ASU #CreepLife", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Glendale, AZ", "follow_request_sent": null, "followers_count": 629, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716330870701883392/1TdpRKhJ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/503673510934216704/9IEC1VLs.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 17, "friends_count": 716, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/503673510934216704/9IEC1VLs.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "297663736", "protected": false, "id": 297663736, "favourites_count": 122, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Teescrazylife", "profile_image_url": "http://pbs.twimg.com/profile_images/716330870701883392/1TdpRKhJ_normal.jpg", "lang": "en", "created_at": "Thu May 12 22:05:14 +0000 2011", "profile_use_background_image": true, "name": "Terrance", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 46596, "is_translator": false}, "text": "@OreoOverHoes nah, just a bunch of bad ass kids running around", "retweeted": false, "in_reply_to_screen_name": "OreoOverHoes", "id_str": "716473056202346496", "id": 716473056202346496, "timestamp_ms": "1459655462681", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u272dA Cornball\u272d", "indices": [0, 13], "id": 51904734, "screen_name": "OreoOverHoes", "id_str": "51904734"}], "hashtags": []}, "in_reply_to_user_id": 51904734, "favorite_count": 0, "in_reply_to_status_id": 716460051272105988, "lang": "en", "created_at": "Sun Apr 03 03:51:02 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2710505143/1459655220", "description": "leaving", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "022330", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 95, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716472020435742720/cZJH7Vxv_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 236, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2710505143", "protected": false, "id": 2710505143, "favourites_count": 302, "profile_sidebar_fill_color": "000000", "screen_name": "secretham34", "profile_image_url": "http://pbs.twimg.com/profile_images/716472020435742720/cZJH7Vxv_normal.jpg", "lang": "en", "created_at": "Tue Aug 05 22:33:38 +0000 2014", "profile_use_background_image": true, "name": "bye", "url": "http://www.youtube.com/thesecretham", "following": null, "profile_link_color": "0084B4", "statuses_count": 1243, "is_translator": false}, "text": "Nobody fucking likes me anymore", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473070060318720", "id": 716473070060318720, "timestamp_ms": "1459655465985", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472915269521408", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "319850776", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80704, "is_translator": false}, "text": "@Nyxnyl that\u2019s cold lol I got a 2016 Camry", "retweeted": false, "in_reply_to_screen_name": "Nyxnyl", "id_str": "716473075768762368", "id": 716473075768762368, "timestamp_ms": "1459655467346", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": ".", "indices": [0, 7], "id": 319850776, "screen_name": "Nyxnyl", "id_str": "319850776"}], "hashtags": []}, "in_reply_to_user_id": 319850776, "favorite_count": 0, "in_reply_to_status_id": 716472915269521408, "lang": "en", "created_at": "Sun Apr 03 03:51:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471439537233920", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1064042478", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/440533540/1385359050", "description": "Older women be like damn you mature.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 752, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711799981972127744/T8CtiBtP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/700708534/4c397cf0e57e2dcb64bbdbafd6aba3a6.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 17, "friends_count": 993, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/700708534/4c397cf0e57e2dcb64bbdbafd6aba3a6.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "440533540", "protected": false, "id": 440533540, "favourites_count": 16636, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "edgar_gumby", "profile_image_url": "http://pbs.twimg.com/profile_images/711799981972127744/T8CtiBtP_normal.jpg", "lang": "en", "created_at": "Mon Dec 19 03:38:49 +0000 2011", "profile_use_background_image": true, "name": "Edgar", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 46109, "is_translator": false}, "text": "@Mathieu_Era what's it under?", "retweeted": false, "in_reply_to_screen_name": "Mathieu_Era", "id_str": "716473080642555904", "id": 716473080642555904, "timestamp_ms": "1459655468508", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Tyrann Mathieu", "indices": [0, 12], "id": 1064042478, "screen_name": "Mathieu_Era", "id_str": "1064042478"}], "hashtags": []}, "in_reply_to_user_id": 1064042478, "favorite_count": 0, "in_reply_to_status_id": 716471439537233920, "lang": "en", "created_at": "Sun Apr 03 03:51:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472340289163264", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "509613642", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Goodyear, AZ", "place_type": "city", "attributes": {}, "name": "Goodyear", "country": "United States", "id": "00fae4950337e465", "bounding_box": {"coordinates": [[[-112.508916, 33.317555], [-112.508916, 33.50819], [-112.341035, 33.50819], [-112.341035, 33.317555]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/00fae4950337e465.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2393057700/1453849172", "description": "Huskers,Dolphins,Cubs,and Kurt Busch fan.Still love R.E.M.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Goodyear,AZ ", "follow_request_sent": null, "followers_count": 582, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 32, "friends_count": 590, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2393057700", "protected": false, "id": 2393057700, "favourites_count": 34265, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "HunterHusker", "profile_image_url": "http://pbs.twimg.com/profile_images/715714168205119492/bE2mOYZ4_normal.jpg", "lang": "en", "created_at": "Sun Mar 16 17:44:41 +0000 2014", "profile_use_background_image": true, "name": "Jamie Hunter", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 12155, "is_translator": false}, "text": "@MargiCulp @RowdyBun me too on my 5th beer celebrating @RowdyBun birthday!!", "retweeted": false, "in_reply_to_screen_name": "MargiCulp", "id_str": "716473090461437952", "id": 716473090461437952, "timestamp_ms": "1459655470849", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Margi Culp", "indices": [0, 10], "id": 509613642, "screen_name": "MargiCulp", "id_str": "509613642"}, {"name": "Mandy Bullard", "indices": [11, 20], "id": 38963042, "screen_name": "RowdyBun", "id_str": "38963042"}, {"name": "Mandy Bullard", "indices": [55, 64], "id": 38963042, "screen_name": "RowdyBun", "id_str": "38963042"}], "hashtags": []}, "in_reply_to_user_id": 509613642, "favorite_count": 0, "in_reply_to_status_id": 716472340289163264, "lang": "en", "created_at": "Sun Apr 03 03:51:10 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/178979001/1413780870", "description": "CA -- AZ \u2022 Arizona State University \u2022 Spirit Squad", "profile_sidebar_border_color": "DBE9ED", "profile_background_tile": false, "profile_background_color": "DBE9ED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 2311, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701536917360238593/PK_VVRow_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 513, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "178979001", "protected": false, "id": 178979001, "favourites_count": 6589, "profile_sidebar_fill_color": "E6F6F9", "screen_name": "JayleeMerrill", "profile_image_url": "http://pbs.twimg.com/profile_images/701536917360238593/PK_VVRow_normal.jpg", "lang": "en", "created_at": "Mon Aug 16 05:15:12 +0000 2010", "profile_use_background_image": true, "name": "Jaylee Merrill", "url": null, "following": null, "profile_link_color": "CC3366", "statuses_count": 3675, "is_translator": false}, "text": "That's my baby \ud83d\udc4f\ud83c\udffc https://t.co/9Yd5DaCrdL", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473107423354880", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Spredfast app", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/Wor6NR5b7b", "sizes": {"small": {"w": 340, "resize": "fit", "h": 170}, "large": {"w": 1024, "resize": "fit", "h": 512}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/NFL/status/716471560501137408/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg", "indices": [95, 118], "id": 716471559226048513, "id_str": "716471559226048513", "display_url": "pic.twitter.com/Wor6NR5b7b", "media_url": "http://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/19426551/1455214702", "description": "Official Twitter account of the National Football League.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "FFFFFF", "verified": true, "location": null, "follow_request_sent": null, "followers_count": 17072804, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/696734415813120000/1QlOcYT7_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/783952246/66e217ec60a9c3c977295fb8b7ae1601.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 44008, "friends_count": 2040, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/783952246/66e217ec60a9c3c977295fb8b7ae1601.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "19426551", "protected": false, "id": 19426551, "favourites_count": 1160, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "NFL", "profile_image_url": "http://pbs.twimg.com/profile_images/696734415813120000/1QlOcYT7_normal.jpg", "lang": "en", "created_at": "Sat Jan 24 01:28:06 +0000 2009", "profile_use_background_image": true, "name": "NFL", "url": "http://www.nfl.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 115721, "is_translator": false}, "text": "3 WRs\n2 RBs\n1 TE\n1 QB\nPotential offensive draft steals (via @NFL_CFB): https://t.co/C79BMT5rX8 https://t.co/Wor6NR5b7b", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471560501137408", "id": 716471560501137408, "entities": {"symbols": [], "urls": [{"expanded_url": "http://on.nfl.com/1PP93dl", "indices": [71, 94], "display_url": "on.nfl.com/1PP93dl", "url": "https://t.co/C79BMT5rX8"}], "user_mentions": [{"name": "CollegeFootball 24/7", "indices": [60, 68], "id": 1895278116, "screen_name": "NFL_CFB", "id_str": "1895278116"}], "hashtags": [], "media": [{"url": "https://t.co/Wor6NR5b7b", "sizes": {"small": {"w": 340, "resize": "fit", "h": 170}, "large": {"w": 1024, "resize": "fit", "h": 512}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/NFL/status/716471560501137408/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg", "indices": [95, 118], "id": 716471559226048513, "id_str": "716471559226048513", "display_url": "pic.twitter.com/Wor6NR5b7b", "media_url": "http://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:06 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473107423354880, "timestamp_ms": "1459655474893", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/nfl/status/716471560501137408", "indices": [18, 41], "display_url": "twitter.com/nfl/status/716\u2026", "url": "https://t.co/9Yd5DaCrdL"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716471560501137408, "created_at": "Sun Apr 03 03:51:14 +0000 2016", "coordinates": null, "quoted_status_id_str": "716471560501137408", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/eJHvY0nw9G", "sizes": {"small": {"w": 340, "resize": "fit", "h": 195}, "large": {"w": 600, "resize": "fit", "h": 344}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 344}}, "type": "photo", "expanded_url": "http://twitter.com/IBeGoodNow/status/716473113920151552/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsgCJUYAArpdN.jpg", "indices": [115, 138], "id": 716473113316188160, "id_str": "716473113316188160", "display_url": "pic.twitter.com/eJHvY0nw9G", "media_url": "http://pbs.twimg.com/media/CfFsgCJUYAArpdN.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/25205736/1452833110", "description": "Promoting & Following DonaldJTrump", "profile_sidebar_border_color": "373737", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "USA", "follow_request_sent": null, "followers_count": 1634, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/686509796128731136/gA4I7rUK_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/318336511/x26aef85853f1e136ecc519e91b57b47.jpg", "default_profile_image": false, "notifications": null, "listed_count": 62, "friends_count": 434, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/318336511/x26aef85853f1e136ecc519e91b57b47.jpg", "time_zone": "Arizona", "profile_text_color": "FDB31C", "id_str": "25205736", "protected": false, "id": 25205736, "favourites_count": 9111, "profile_sidebar_fill_color": "373737", "screen_name": "IBeGoodNow", "profile_image_url": "http://pbs.twimg.com/profile_images/686509796128731136/gA4I7rUK_normal.jpg", "lang": "en", "created_at": "Thu Mar 19 01:22:22 +0000 2009", "profile_use_background_image": true, "name": "TRUMPistheMAN!", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 19603, "is_translator": false}, "text": "EVERYONE! A MUST WATCH! \"MERKEL DANCING!!!\" WOW\nAngela Merkel's Snake Dance\n https://t.co/pFoItDMD8q via @YouTube https://t.co/eJHvY0nw9G", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473113920151552", "id": 716473113920151552, "timestamp_ms": "1459655476442", "entities": {"symbols": [], "urls": [{"expanded_url": "https://youtu.be/Jl5CuCmePBw", "indices": [78, 101], "display_url": "youtu.be/Jl5CuCmePBw", "url": "https://t.co/pFoItDMD8q"}], "user_mentions": [{"name": "YouTube", "indices": [106, 114], "id": 10228272, "screen_name": "YouTube", "id_str": "10228272"}], "hashtags": [], "media": [{"url": "https://t.co/eJHvY0nw9G", "sizes": {"small": {"w": 340, "resize": "fit", "h": 195}, "large": {"w": 600, "resize": "fit", "h": 344}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 344}}, "type": "photo", "expanded_url": "http://twitter.com/IBeGoodNow/status/716473113920151552/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsgCJUYAArpdN.jpg", "indices": [115, 138], "id": 716473113316188160, "id_str": "716473113316188160", "display_url": "pic.twitter.com/eJHvY0nw9G", "media_url": "http://pbs.twimg.com/media/CfFsgCJUYAArpdN.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:16 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Foursquare", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/70335233/1441583808", "description": "exciting, engertic, and sweet", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": "Denver, Colorado", "follow_request_sent": null, "followers_count": 93, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/640675038417387520/znBxPa-k_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 159, "utc_offset": -21600, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "19574F", "id_str": "70335233", "protected": false, "id": 70335233, "favourites_count": 10, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "Albertunm3", "profile_image_url": "http://pbs.twimg.com/profile_images/640675038417387520/znBxPa-k_normal.jpg", "lang": "en", "created_at": "Mon Aug 31 07:09:10 +0000 2009", "profile_use_background_image": true, "name": "Albert Dimagiba", "url": null, "following": null, "profile_link_color": "FF0000", "statuses_count": 3855, "is_translator": false}, "text": "I'm at Steele Indian School Park - @phoenixparks for Phoenix Pride Festival in Phoenix, AZ https://t.co/1SCAkFuWko", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473135764279296", "id": 716473135764279296, "timestamp_ms": "1459655481650", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.swarmapp.com/c/5vOYaCwbvvv", "indices": [91, 114], "display_url": "swarmapp.com/c/5vOYaCwbvvv", "url": "https://t.co/1SCAkFuWko"}], "user_mentions": [{"name": "Phoenix Parks & Rec", "indices": [35, 48], "id": 45966098, "screen_name": "PhoenixParks", "id_str": "45966098"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:21 +0000 2016", "coordinates": {"coordinates": [-112.06912854, 33.49889314], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.49889314, -112.06912854], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Queen Creek, AZ", "place_type": "city", "attributes": {}, "name": "Queen Creek", "country": "United States", "id": "01cb573821d94344", "bounding_box": {"coordinates": [[[-111.686314, 33.196614], [-111.686314, 33.288127], [-111.582748, 33.288127], [-111.582748, 33.196614]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/01cb573821d94344.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1106619835/1459641120", "description": "AFC // BLACK SMOKE SR. LEVEL 4.2 \u2655 & combs highschool, SENIOR 2016, i love my bffls \u2763HAPPY HAPPY HAPPY :-)", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "E6129C", "verified": false, "location": "San Tan Valley, AZ \u262e", "follow_request_sent": null, "followers_count": 753, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715535367290523648/vLUmNg20_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000166768990/n3fQxqaM.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 788, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000166768990/n3fQxqaM.jpeg", "time_zone": null, "profile_text_color": "333333", "id_str": "1106619835", "protected": false, "id": 1106619835, "favourites_count": 7717, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Beyonnaraerees", "profile_image_url": "http://pbs.twimg.com/profile_images/715535367290523648/vLUmNg20_normal.jpg", "lang": "en", "created_at": "Sun Jan 20 16:03:47 +0000 2013", "profile_use_background_image": true, "name": "Queen B", "url": "http://dt.gofund.me/gpk48fb8&rcid=597c56259ecc4ddb9bd00eede91c2af5", "following": null, "profile_link_color": "009999", "statuses_count": 11314, "is_translator": false}, "text": "Me and Nik grabbed the same French fry @ in n out & we had a moment", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473139698401281", "id": 716473139698401281, "timestamp_ms": "1459655482588", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:22 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1339450964/1456696145", "description": "dont frick with my sass", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Frederick, CO", "follow_request_sent": null, "followers_count": 270, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704176408013119492/FtZaZ2kc_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 156, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1339450964", "protected": false, "id": 1339450964, "favourites_count": 1827, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "balmancarson", "profile_image_url": "http://pbs.twimg.com/profile_images/704176408013119492/FtZaZ2kc_normal.jpg", "lang": "en", "created_at": "Tue Apr 09 15:15:28 +0000 2013", "profile_use_background_image": true, "name": "carson balman", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 797, "is_translator": false}, "text": "Sorry \ud83d\ude07\ud83d\ude07 https://t.co/hR8jqh829N", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473155745751040", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/441634181/1445402490", "description": "Frederick \u25b6\ufe0f NJC \u25b6\ufe0f NMSU IG J_JAYB3", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Las Cruces, NM", "follow_request_sent": null, "followers_count": 948, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712511039703805955/qKEaj8NR_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 873, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "441634181", "protected": false, "id": 441634181, "favourites_count": 14612, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "J_JAYB3", "profile_image_url": "http://pbs.twimg.com/profile_images/712511039703805955/qKEaj8NR_normal.jpg", "lang": "en", "created_at": "Tue Dec 20 08:27:31 +0000 2011", "profile_use_background_image": true, "name": "Jaron Balman", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 16224, "is_translator": false}, "text": "Not gonna lie pretty peanut butter and jealous my sisters got to go to see J Biebs in concert \ud83d\ude11", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "715748042067091457", "id": 715748042067091457, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Fri Apr 01 03:50:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473155745751040, "timestamp_ms": "1459655486414", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/j_jayb3/status/715748042067091457", "indices": [9, 32], "display_url": "twitter.com/j_jayb3/status\u2026", "url": "https://t.co/hR8jqh829N"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 715748042067091457, "created_at": "Sun Apr 03 03:51:26 +0000 2016", "coordinates": null, "quoted_status_id_str": "715748042067091457", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/3Kp1IAUZ0N", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/stevielynne2/status/716473155259228161/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsh18UEAAe5n1.jpg", "indices": [86, 109], "id": 716473144400154624, "id_str": "716473144400154624", "display_url": "pic.twitter.com/3Kp1IAUZ0N", "media_url": "http://pbs.twimg.com/media/CfFsh18UEAAe5n1.jpg"}, {"url": "https://t.co/3Kp1IAUZ0N", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/stevielynne2/status/716473155259228161/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsh2LUkAAGx3S.jpg", "indices": [86, 109], "id": 716473144463101952, "id_str": "716473144463101952", "display_url": "pic.twitter.com/3Kp1IAUZ0N", "media_url": "http://pbs.twimg.com/media/CfFsh2LUkAAGx3S.jpg"}, {"url": "https://t.co/3Kp1IAUZ0N", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/stevielynne2/status/716473155259228161/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsh5cVIAA1ymB.jpg", "indices": [86, 109], "id": 716473145339748352, "id_str": "716473145339748352", "display_url": "pic.twitter.com/3Kp1IAUZ0N", "media_url": "http://pbs.twimg.com/media/CfFsh5cVIAA1ymB.jpg"}, {"url": "https://t.co/3Kp1IAUZ0N", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/stevielynne2/status/716473155259228161/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsh9bUEAAQaOr.jpg", "indices": [86, 109], "id": 716473146409226240, "id_str": "716473146409226240", "display_url": "pic.twitter.com/3Kp1IAUZ0N", "media_url": "http://pbs.twimg.com/media/CfFsh9bUEAAQaOr.jpg"}]}, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3182470700/1451264560", "description": "California allstars clique || Anton is my cute boyfriend \u2764\ufe0f", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 135, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/683003643717488640/KLN9A95n_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 201, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3182470700", "protected": false, "id": 3182470700, "favourites_count": 994, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "stevielynne2", "profile_image_url": "http://pbs.twimg.com/profile_images/683003643717488640/KLN9A95n_normal.jpg", "lang": "en", "created_at": "Sat May 02 05:36:35 +0000 2015", "profile_use_background_image": true, "name": "stevie\u2744\ufe0f", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 876, "is_translator": false}, "text": "Awhh appreciation post for my cat and the best boyfriend in the world\ud83d\ude0d @perezanton188 https://t.co/3Kp1IAUZ0N", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473155259228161", "id": 716473155259228161, "timestamp_ms": "1459655486298", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Anton", "indices": [71, 85], "id": 3237660549, "screen_name": "perezanton188", "id_str": "3237660549"}], "hashtags": [], "media": [{"url": "https://t.co/3Kp1IAUZ0N", "sizes": {"small": {"w": 340, "resize": "fit", "h": 605}, "large": {"w": 750, "resize": "fit", "h": 1334}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/stevielynne2/status/716473155259228161/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsh18UEAAe5n1.jpg", "indices": [86, 109], "id": 716473144400154624, "id_str": "716473144400154624", "display_url": "pic.twitter.com/3Kp1IAUZ0N", "media_url": "http://pbs.twimg.com/media/CfFsh18UEAAe5n1.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": "150664007", "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/SJu1b1l5Nw", "sizes": {"small": {"w": 340, "resize": "fit", "h": 299}, "large": {"w": 558, "resize": "fit", "h": 490}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 558, "resize": "fit", "h": 490}}, "type": "photo", "expanded_url": "http://twitter.com/samccone/status/716473166965506048/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsjHEUkAAWhUp.jpg", "indices": [17, 40], "id": 716473166177013760, "id_str": "716473166177013760", "display_url": "pic.twitter.com/SJu1b1l5Nw", "media_url": "http://pbs.twimg.com/media/CfFsjHEUkAAWhUp.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": "Enftwarr Sogineee @google", "profile_sidebar_border_color": "E07B00", "profile_background_tile": false, "profile_background_color": "050505", "verified": false, "location": "Mountain View, CA", "follow_request_sent": null, "followers_count": 2808, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3275266259/5ceb1b3f831115bd62e85b24ba5d8e4f_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 110, "friends_count": 97, "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Central Time (US & Canada)", "profile_text_color": "ADADAD", "id_str": "17198118", "protected": false, "id": 17198118, "favourites_count": 6551, "profile_sidebar_fill_color": "10181C", "screen_name": "samccone", "profile_image_url": "http://pbs.twimg.com/profile_images/3275266259/5ceb1b3f831115bd62e85b24ba5d8e4f_normal.jpeg", "lang": "en", "created_at": "Wed Nov 05 21:30:36 +0000 2008", "profile_use_background_image": false, "name": "Sam Saccone", "url": "http://github.com/samccone", "following": null, "profile_link_color": "9266CC", "statuses_count": 10222, "is_translator": false}, "text": "@thealphanerd +1 https://t.co/SJu1b1l5Nw", "retweeted": false, "in_reply_to_screen_name": "thealphanerd", "id_str": "716473166965506048", "id": 716473166965506048, "timestamp_ms": "1459655489089", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u00af\\_(\u30c4)_/\u00af", "indices": [0, 13], "id": 150664007, "screen_name": "thealphanerd", "id_str": "150664007"}], "hashtags": [], "media": [{"url": "https://t.co/SJu1b1l5Nw", "sizes": {"small": {"w": 340, "resize": "fit", "h": 299}, "large": {"w": 558, "resize": "fit", "h": 490}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 558, "resize": "fit", "h": 490}}, "type": "photo", "expanded_url": "http://twitter.com/samccone/status/716473166965506048/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsjHEUkAAWhUp.jpg", "indices": [17, 40], "id": 716473166177013760, "id_str": "716473166177013760", "display_url": "pic.twitter.com/SJu1b1l5Nw", "media_url": "http://pbs.twimg.com/media/CfFsjHEUkAAWhUp.jpg"}]}, "in_reply_to_user_id": 150664007, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:51:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2277510870/1454546723", "description": "Raymond, Regina & Royce \u2764\ufe0f", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arendelle ", "follow_request_sent": null, "followers_count": 122, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711799667453898752/Epr_YvuK_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 119, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2277510870", "protected": false, "id": 2277510870, "favourites_count": 2665, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Gina__George", "profile_image_url": "http://pbs.twimg.com/profile_images/711799667453898752/Epr_YvuK_normal.jpg", "lang": "en", "created_at": "Sun Jan 05 11:48:43 +0000 2014", "profile_use_background_image": true, "name": "Regina George", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2586, "is_translator": false}, "text": "Who tf do you think your talking to ? \ud83e\udd14\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473178239807488", "id": 716473178239807488, "timestamp_ms": "1459655491777", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:31 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "San Tan Valley, AZ", "place_type": "city", "attributes": {}, "name": "San Tan Valley", "country": "United States", "id": "002b06ee2655168a", "bounding_box": {"coordinates": [[[-111.63454, 33.08929], [-111.63454, 33.307181], [-111.486497, 33.307181], [-111.486497, 33.08929]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/002b06ee2655168a.json"}, "is_quote_status": false, "user": {"description": "\u2022R.I.P Joseph, Cannella & Jarred\u2022 Puerto Rican & Honduran\u2022", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "XO \u2661", "follow_request_sent": null, "followers_count": 1488, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714957301988327424/_CQ_gPEM_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/742916536/f62824e410cfaf17d2d6323ef9b91da3.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 360, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/742916536/f62824e410cfaf17d2d6323ef9b91da3.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "509083758", "protected": false, "id": 509083758, "favourites_count": 41327, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Danieeelllaaaaa", "profile_image_url": "http://pbs.twimg.com/profile_images/714957301988327424/_CQ_gPEM_normal.jpg", "lang": "en", "created_at": "Wed Feb 29 18:16:56 +0000 2012", "profile_use_background_image": true, "name": "little daniela \u2661", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 60409, "is_translator": false}, "text": "I just want to sip on some wine all night & smoke a couple of blunts to the face.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473180009930753", "id": 716473180009930753, "timestamp_ms": "1459655492199", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/885126498/1455293394", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 917, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716465742292459524/zBiPSgLw_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 370, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "885126498", "protected": false, "id": 885126498, "favourites_count": 12213, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "RegannDanielle", "profile_image_url": "http://pbs.twimg.com/profile_images/716465742292459524/zBiPSgLw_normal.jpg", "lang": "en", "created_at": "Tue Oct 16 19:31:11 +0000 2012", "profile_use_background_image": true, "name": "Regan", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 19547, "is_translator": false}, "text": "great", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473188545273856", "id": 716473188545273856, "timestamp_ms": "1459655494234", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472746536927232", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "1263674252", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1099058876/1420903630", "description": "Former Firefighter, Occasional Goofball, Full Time Taco Lover. Keeper of @EverfreeNetwork. Did things for @EquestriaLA. Voted 2016 Most Likely to Brunch So Hard", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "031440", "verified": false, "location": "Indio, CA", "follow_request_sent": null, "followers_count": 2288, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/701137789664915456/ew2Gs1zU_normal.png", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623702370547974144/bjAs1ZBQ.jpg", "default_profile_image": false, "notifications": null, "listed_count": 35, "friends_count": 372, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623702370547974144/bjAs1ZBQ.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3D7296", "id_str": "1099058876", "protected": false, "id": 1099058876, "favourites_count": 77124, "profile_sidebar_fill_color": "3AA6B2", "screen_name": "KiniroTonada", "profile_image_url": "http://pbs.twimg.com/profile_images/701137789664915456/ew2Gs1zU_normal.png", "lang": "en", "created_at": "Thu Jan 17 19:21:10 +0000 2013", "profile_use_background_image": true, "name": "Kiniro", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 54492, "is_translator": false}, "text": "@bravelyblue foof and foof", "retweeted": false, "in_reply_to_screen_name": "bravelyblue", "id_str": "716473189769949184", "id": 716473189769949184, "timestamp_ms": "1459655494526", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Bravely", "indices": [0, 12], "id": 1263674252, "screen_name": "bravelyblue", "id_str": "1263674252"}], "hashtags": []}, "in_reply_to_user_id": 1263674252, "favorite_count": 0, "in_reply_to_status_id": 716472746536927232, "lang": "en", "created_at": "Sun Apr 03 03:51:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/367276087/1457672952", "description": "Trust in the LORD with all your heart and lean not on your own understanding. Proverbs 3:5 | Instagram: lmorales6", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 501, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713262537941196800/VO7Wai5f_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 393, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "367276087", "protected": false, "id": 367276087, "favourites_count": 10570, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "LiamMorales6", "profile_image_url": "http://pbs.twimg.com/profile_images/713262537941196800/VO7Wai5f_normal.jpg", "lang": "en", "created_at": "Sat Sep 03 17:58:35 +0000 2011", "profile_use_background_image": true, "name": "Liam Morales", "url": "http://8tracks.com/lmorales6", "following": null, "profile_link_color": "0084B4", "statuses_count": 9751, "is_translator": false}, "text": "Michael Jackson is still GOAT", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473190784978944", "id": 716473190784978944, "timestamp_ms": "1459655494768", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1136053566/1457932705", "description": "let's go see the world. hhs senior '16", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": "somewhere in the clouds", "follow_request_sent": null, "followers_count": 431, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713266822645096448/VSoAR9fg_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 299, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": null, "profile_text_color": "333333", "id_str": "1136053566", "protected": false, "id": 1136053566, "favourites_count": 14989, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "idnc4god3", "profile_image_url": "http://pbs.twimg.com/profile_images/713266822645096448/VSoAR9fg_normal.jpg", "lang": "en", "created_at": "Thu Jan 31 05:04:16 +0000 2013", "profile_use_background_image": true, "name": "samantha rae", "url": "http://raephotographs.vsco.co", "following": null, "profile_link_color": "ABB8C2", "statuses_count": 10709, "is_translator": false}, "text": "fin, noggin duuuude \ud83d\udc22", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473200117284865", "id": 716473200117284865, "timestamp_ms": "1459655496993", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:36 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/23713800/1459648007", "description": "You think you know but you have no idea. This is the true life of a 30 yr old city girl whose just making her way thru life... #CowboysNation #DbacksNation", "profile_sidebar_border_color": "002A5B", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "MTAZ", "follow_request_sent": null, "followers_count": 330, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715416791355232256/K18lrRWo_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/89414665/nvdallascowboys.br.jpg", "default_profile_image": false, "notifications": null, "listed_count": 12, "friends_count": 800, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/89414665/nvdallascowboys.br.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "23713800", "protected": false, "id": 23713800, "favourites_count": 15001, "profile_sidebar_fill_color": "BAC3C9", "screen_name": "hmr1985az", "profile_image_url": "http://pbs.twimg.com/profile_images/715416791355232256/K18lrRWo_normal.jpg", "lang": "en", "created_at": "Wed Mar 11 03:15:10 +0000 2009", "profile_use_background_image": true, "name": "Heather", "url": "http://www.instagram.com/hmr1985az", "following": null, "profile_link_color": "104684", "statuses_count": 23868, "is_translator": false}, "text": "The calm before the storm. Can not wait!\n#JoinTheEvolution #GoDbacks\u2026 https://t.co/R9uuqjXRW8", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473204752191488", "id": 716473204752191488, "timestamp_ms": "1459655498098", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuUJ9Mou5qu37V5QL7FMWQU4WwDnybBiDnHOA0/", "indices": [70, 93], "display_url": "instagram.com/p/BDuUJ9Mou5qu\u2026", "url": "https://t.co/R9uuqjXRW8"}], "user_mentions": [], "hashtags": [{"indices": [41, 58], "text": "JoinTheEvolution"}, {"indices": [59, 68], "text": "GoDbacks"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:38 +0000 2016", "coordinates": {"coordinates": [-112.06685, 33.4452], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.4452, -112.06685], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/163884087/1458243111", "description": "don't tweet if you don't want a reaction....", "profile_sidebar_border_color": "BABAB2", "profile_background_tile": true, "profile_background_color": "FFFFFF", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 373, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711342974441893889/BgPM-Aes_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/371789707/nicki-minaj-booty-naked-mixtape-tagged-copy.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 420, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/371789707/nicki-minaj-booty-naked-mixtape-tagged-copy.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "120F12", "id_str": "163884087", "protected": false, "id": 163884087, "favourites_count": 4718, "profile_sidebar_fill_color": "BABAB2", "screen_name": "ELtrue11", "profile_image_url": "http://pbs.twimg.com/profile_images/711342974441893889/BgPM-Aes_normal.jpg", "lang": "en", "created_at": "Wed Jul 07 14:26:52 +0000 2010", "profile_use_background_image": true, "name": "Bruh...", "url": "http://readabook.com", "following": null, "profile_link_color": "2891E2", "statuses_count": 9134, "is_translator": false}, "text": "Your last bitch still got you on second base.... https://t.co/JmQjL0rHX1", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473212574404608", "quoted_status": {"in_reply_to_status_id_str": "716472375487770625", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "163884087", "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/63073288/1399403800", "description": "Take this good advice, cuz they gon judge you fa life.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "EDF2F5", "verified": false, "location": "ASU SUN DEVIL", "follow_request_sent": null, "followers_count": 401, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/568198652082913281/1agX562X_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534472344740188160/nrv5lHKW.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 573, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534472344740188160/nrv5lHKW.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "63073288", "protected": false, "id": 63073288, "favourites_count": 476, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "JabbzNoTyson", "profile_image_url": "http://pbs.twimg.com/profile_images/568198652082913281/1agX562X_normal.jpeg", "lang": "en", "created_at": "Wed Aug 05 08:23:13 +0000 2009", "profile_use_background_image": true, "name": "Khalil", "url": null, "following": null, "profile_link_color": "11507A", "statuses_count": 7214, "is_translator": false}, "text": "@ELtrue11 yo hair look like baseball mound dirt", "retweeted": false, "in_reply_to_screen_name": "ELtrue11", "id_str": "716472933149839360", "id": 716472933149839360, "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Bruh...", "indices": [0, 9], "id": 163884087, "screen_name": "ELtrue11", "id_str": "163884087"}], "hashtags": []}, "in_reply_to_user_id": 163884087, "favorite_count": 0, "in_reply_to_status_id": 716472375487770625, "lang": "en", "created_at": "Sun Apr 03 03:50:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473212574404608, "timestamp_ms": "1459655499963", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/jabbznotyson/status/716472933149839360", "indices": [49, 72], "display_url": "twitter.com/jabbznotyson/s\u2026", "url": "https://t.co/JmQjL0rHX1"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716472933149839360, "created_at": "Sun Apr 03 03:51:39 +0000 2016", "coordinates": null, "quoted_status_id_str": "716472933149839360", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716473011629469697/pu/vid/180x320/2aVp7We7iECJIBJ4.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716473011629469697/pu/pl/1tG-7ifm2DRd7Bzx.m3u8"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716473011629469697/pu/pl/1tG-7ifm2DRd7Bzx.mpd"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716473011629469697/pu/vid/360x640/ndFWJ_1r4NkiZKZB.mp4"}], "aspect_ratio": [9, 16], "duration_millis": 6872}, "url": "https://t.co/mCzM04KXoN", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "video", "expanded_url": "http://twitter.com/starlightgav/status/716473220845572096/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716473011629469697/pu/img/Ah3qenPPVPzeVCoy.jpg", "indices": [14, 37], "id": 716473011629469697, "id_str": "716473011629469697", "display_url": "pic.twitter.com/mCzM04KXoN", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716473011629469697/pu/img/Ah3qenPPVPzeVCoy.jpg"}]}, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/168182464/1458836687", "description": "we bleed like watercolors and drunken pastels down the stairway", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": false, "profile_background_color": "ACDED6", "verified": false, "location": "they/them", "follow_request_sent": null, "followers_count": 417, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712759089151868929/7hqsS9D4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 15, "friends_count": 822, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "168182464", "protected": false, "id": 168182464, "favourites_count": 15793, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "starlightgav", "profile_image_url": "http://pbs.twimg.com/profile_images/712759089151868929/7hqsS9D4_normal.jpg", "lang": "en", "created_at": "Sun Jul 18 16:43:31 +0000 2010", "profile_use_background_image": true, "name": "buchanan", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 25687, "is_translator": false}, "text": "GAY IS OKAY \ud83d\udc93 https://t.co/mCzM04KXoN", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473220845572096", "id": 716473220845572096, "timestamp_ms": "1459655501935", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/mCzM04KXoN", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 360, "resize": "fit", "h": 640}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 640}}, "type": "photo", "expanded_url": "http://twitter.com/starlightgav/status/716473220845572096/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716473011629469697/pu/img/Ah3qenPPVPzeVCoy.jpg", "indices": [14, 37], "id": 716473011629469697, "id_str": "716473011629469697", "display_url": "pic.twitter.com/mCzM04KXoN", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716473011629469697/pu/img/Ah3qenPPVPzeVCoy.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/367276087/1457672952", "description": "Trust in the LORD with all your heart and lean not on your own understanding. Proverbs 3:5 | Instagram: lmorales6", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 501, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713262537941196800/VO7Wai5f_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 393, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "367276087", "protected": false, "id": 367276087, "favourites_count": 10570, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "LiamMorales6", "profile_image_url": "http://pbs.twimg.com/profile_images/713262537941196800/VO7Wai5f_normal.jpg", "lang": "en", "created_at": "Sat Sep 03 17:58:35 +0000 2011", "profile_use_background_image": true, "name": "Liam Morales", "url": "http://8tracks.com/lmorales6", "following": null, "profile_link_color": "0084B4", "statuses_count": 9752, "is_translator": false}, "text": "Anytime his songs Coke", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473226516246528", "id": 716473226516246528, "timestamp_ms": "1459655503287", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/384108538/1456684505", "description": "#gobeavs #canucks #trailblazers #GoBucs #quakes74 #padres Oregon Native #NRA #Constitution #HumanRights Goonies is the greatest movie ever!", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "4A913C", "verified": false, "location": "Lebanon, OR", "follow_request_sent": null, "followers_count": 721, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714653224381378560/XTKFoU9K_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/677149127382138882/skRR82dD.jpg", "default_profile_image": false, "notifications": null, "listed_count": 41, "friends_count": 470, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/677149127382138882/skRR82dD.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "384108538", "protected": false, "id": 384108538, "favourites_count": 13514, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "DavidJMays", "profile_image_url": "http://pbs.twimg.com/profile_images/714653224381378560/XTKFoU9K_normal.jpg", "lang": "en", "created_at": "Mon Oct 03 02:46:50 +0000 2011", "profile_use_background_image": true, "name": "Beat UCONN", "url": null, "following": null, "profile_link_color": "FA743E", "statuses_count": 30873, "is_translator": false}, "text": "This #48hours episode is crazy.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473229531959296", "id": 716473229531959296, "timestamp_ms": "1459655504006", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [5, 13], "text": "48hours"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/715740096/1446435794", "description": "But when you drive slow and stop for gas all the time and grab dinner and hit traffic (ugh thank god for traffic) the hours add up and the moments slip away", "profile_sidebar_border_color": "F0A830", "profile_background_tile": true, "profile_background_color": "FCEBB6", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 1234, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713848197353963520/av1AjPMz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459939787135127553/GEXCPTMh.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 861, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459939787135127553/GEXCPTMh.png", "time_zone": "Arizona", "profile_text_color": "5E412F", "id_str": "715740096", "protected": false, "id": 715740096, "favourites_count": 18, "profile_sidebar_fill_color": "78C0A8", "screen_name": "BrownGoddess_Ki", "profile_image_url": "http://pbs.twimg.com/profile_images/713848197353963520/av1AjPMz_normal.jpg", "lang": "en", "created_at": "Wed Jul 25 08:43:49 +0000 2012", "profile_use_background_image": false, "name": "KI", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 13631, "is_translator": false}, "text": "\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https://t.co/tO0M04KnHX", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473231121588224", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2599258549/1458325199", "description": "Beyonc\u00e9 is coming..", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Hotel Cortez", "follow_request_sent": null, "followers_count": 3205, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710886430621347840/h6ERdky0_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 23, "friends_count": 766, "utc_offset": -14400, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "000000", "id_str": "2599258549", "protected": false, "id": 2599258549, "favourites_count": 22389, "profile_sidebar_fill_color": "000000", "screen_name": "_BluRay__", "profile_image_url": "http://pbs.twimg.com/profile_images/710886430621347840/h6ERdky0_normal.jpg", "lang": "en", "created_at": "Wed Jul 02 06:11:56 +0000 2014", "profile_use_background_image": false, "name": "Ray", "url": "https://youtu.be/VvOrIW6q45k", "following": null, "profile_link_color": "ABB8C2", "statuses_count": 71931, "is_translator": false}, "text": "The full video \ud83d\ude2d\ud83d\ude2d\u26b0 https://t.co/q19YKn6Qvw", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716306758872866816", "id": 716306758872866816, "entities": {"symbols": [], "urls": [{"expanded_url": "https://amp.twimg.com/v/6cd1296d-7aef-4094-b390-e055385e63c9", "indices": [19, 42], "display_url": "amp.twimg.com/v/6cd1296d-7ae\u2026", "url": "https://t.co/q19YKn6Qvw"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sat Apr 02 16:50:14 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473231121588224, "timestamp_ms": "1459655504385", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/_bluray__/status/716306758872866816", "indices": [4, 27], "display_url": "twitter.com/_bluray__/stat\u2026", "url": "https://t.co/tO0M04KnHX"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716306758872866816, "created_at": "Sun Apr 03 03:51:44 +0000 2016", "coordinates": null, "quoted_status_id_str": "716306758872866816", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472611350253568", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2872566996", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2229024158/1449004253", "description": "\u2022Kayden \u202220 Lounge Nail Bar \u2022GCC Cheerleader \u2022Rick Dane Murry \u2022Snapchat: bethanyboooop", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 487, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715596410117234689/XLf2XYcI_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 699, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2229024158", "protected": false, "id": 2229024158, "favourites_count": 3800, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "bendyybethany", "profile_image_url": "http://pbs.twimg.com/profile_images/715596410117234689/XLf2XYcI_normal.jpg", "lang": "en", "created_at": "Wed Dec 04 00:08:19 +0000 2013", "profile_use_background_image": true, "name": "Bethany\u2764\ufe0f", "url": "http://bethanykirk.isagenix.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 5234, "is_translator": false}, "text": "@JamieEmilyy love you so much sugarplum. \ud83d\udc9c", "retweeted": false, "in_reply_to_screen_name": "JamieEmilyy", "id_str": "716473251678040065", "id": 716473251678040065, "timestamp_ms": "1459655509286", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Jamie Scott", "indices": [0, 12], "id": 2872566996, "screen_name": "JamieEmilyy", "id_str": "2872566996"}], "hashtags": []}, "in_reply_to_user_id": 2872566996, "favorite_count": 0, "in_reply_to_status_id": 716472611350253568, "lang": "en", "created_at": "Sun Apr 03 03:51:49 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2281592690/1459062331", "description": "I own that big house in Tempe. Snapchat: jayy_drew", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 799, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713976016130220032/FS9yXt_N_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 217, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2281592690", "protected": false, "id": 2281592690, "favourites_count": 7737, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ItsJayy_drew", "profile_image_url": "http://pbs.twimg.com/profile_images/713976016130220032/FS9yXt_N_normal.jpg", "lang": "en", "created_at": "Wed Jan 08 04:46:30 +0000 2014", "profile_use_background_image": true, "name": "Jaedendrew", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 22565, "is_translator": false}, "text": "Taco shops downtown", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473272993341441", "id": 716473272993341441, "timestamp_ms": "1459655514368", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716457433384689664", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2473076516", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4460166493/1453230995", "description": "James Harden slander ain't tolerated.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "HTX", "follow_request_sent": null, "followers_count": 227, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704890453376770048/7cgaDYzb_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 289, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "4460166493", "protected": false, "id": 4460166493, "favourites_count": 6559, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "CryLawson", "profile_image_url": "http://pbs.twimg.com/profile_images/704890453376770048/7cgaDYzb_normal.jpg", "lang": "en", "created_at": "Sat Dec 05 04:16:13 +0000 2015", "profile_use_background_image": true, "name": "hopkins intellect", "url": "http://iStanForJamesHarden.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 8019, "is_translator": false}, "text": "@allaccess_nba MVP tho", "retweeted": false, "in_reply_to_screen_name": "allaccess_nba", "id_str": "716473278831824896", "id": 716473278831824896, "timestamp_ms": "1459655515760", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Easy Money", "indices": [0, 14], "id": 2473076516, "screen_name": "allaccess_nba", "id_str": "2473076516"}], "hashtags": []}, "in_reply_to_user_id": 2473076516, "favorite_count": 0, "in_reply_to_status_id": 716457433384689664, "lang": "ht", "created_at": "Sun Apr 03 03:51:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/267287866/1457055941", "description": "sc // lydster_16", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 220, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/705558235785244672/BTTSiZxc_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/600377509/3hbfrkzx7vt8h69nysp4.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 104, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/600377509/3hbfrkzx7vt8h69nysp4.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "267287866", "protected": false, "id": 267287866, "favourites_count": 2966, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "Lydster_16", "profile_image_url": "http://pbs.twimg.com/profile_images/705558235785244672/BTTSiZxc_normal.jpg", "lang": "en", "created_at": "Wed Mar 16 17:15:27 +0000 2011", "profile_use_background_image": true, "name": "lydster_16", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 2000, "is_translator": false}, "text": "Love me forever or never", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473282745098241", "id": 716473282745098241, "timestamp_ms": "1459655516693", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:51:56 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2710505143/1459655220", "description": "leaving", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "022330", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 95, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716472020435742720/cZJH7Vxv_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 236, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2710505143", "protected": false, "id": 2710505143, "favourites_count": 302, "profile_sidebar_fill_color": "000000", "screen_name": "secretham34", "profile_image_url": "http://pbs.twimg.com/profile_images/716472020435742720/cZJH7Vxv_normal.jpg", "lang": "en", "created_at": "Tue Aug 05 22:33:38 +0000 2014", "profile_use_background_image": true, "name": "bye", "url": "http://www.youtube.com/thesecretham", "following": null, "profile_link_color": "0084B4", "statuses_count": 1244, "is_translator": false}, "text": "I USED TO THINK PEOPLE LIKED ME", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473297370615808", "id": 716473297370615808, "timestamp_ms": "1459655520180", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:00 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Foursquare", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/31432471/1353199078", "description": "ServiceNow Developer, Entrepreneur, Full Time RVer - not necessarily in that order.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Thornton, CO", "follow_request_sent": null, "followers_count": 239, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709104619104956416/EIcOFUbn_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 167, "utc_offset": -21600, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "000000", "id_str": "31432471", "protected": false, "id": 31432471, "favourites_count": 129, "profile_sidebar_fill_color": "000000", "screen_name": "jonathonbarton", "profile_image_url": "http://pbs.twimg.com/profile_images/709104619104956416/EIcOFUbn_normal.jpg", "lang": "en", "created_at": "Wed Apr 15 15:24:51 +0000 2009", "profile_use_background_image": false, "name": "Jonathon Barton", "url": "http://www.jonathonbarton.net", "following": null, "profile_link_color": "000077", "statuses_count": 3425, "is_translator": false}, "text": "MAC SABBATH! \ud83d\ude0e (@ Crescent Ballroom - @crescentphx for Mac Sabbath and Okilly Dokilly in Phoenix, AZ) https://t.co/FtDoHbs32i", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473301338570752", "id": 716473301338570752, "timestamp_ms": "1459655521126", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.swarmapp.com/c/6XsSRqclnVF", "indices": [102, 125], "display_url": "swarmapp.com/c/6XsSRqclnVF", "url": "https://t.co/FtDoHbs32i"}], "user_mentions": [{"name": "Crescent Ballroom", "indices": [38, 50], "id": 339981741, "screen_name": "CrescentPHX", "id_str": "339981741"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:01 +0000 2016", "coordinates": {"coordinates": [-112.07665354, 33.45179743], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.45179743, -112.07665354], "type": "Point"}}, {"in_reply_to_status_id_str": "715443134746877952", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2461452080", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/395441626/1443127969", "description": "I am a 74 year old White Male Single Christian that lives in Phoenix, Arizona. My goal for 2016 is help see that Donald Trump becomes our next President.", "profile_sidebar_border_color": "8A7167", "profile_background_tile": false, "profile_background_color": "402021", "verified": false, "location": "Phoenix, AZ USA", "follow_request_sent": null, "followers_count": 329, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1646739905/new_image_2_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/351016060/Writer.jpg", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 477, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/351016060/Writer.jpg", "time_zone": "Arizona", "profile_text_color": "341671", "id_str": "395441626", "protected": false, "id": 395441626, "favourites_count": 3665, "profile_sidebar_fill_color": "8A7167", "screen_name": "roy_wr", "profile_image_url": "http://pbs.twimg.com/profile_images/1646739905/new_image_2_normal.jpg", "lang": "en", "created_at": "Fri Oct 21 17:24:23 +0000 2011", "profile_use_background_image": true, "name": "Roy Patterson", "url": "http://www.facebook.com/roywrt", "following": null, "profile_link_color": "260D03", "statuses_count": 2898, "is_translator": false}, "text": "@_HankRearden Two sick puppies.#nevervotingforlyingted", "retweeted": false, "in_reply_to_screen_name": "_HankRearden", "id_str": "716473311643852801", "id": 716473311643852801, "timestamp_ms": "1459655523583", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "American Hank", "indices": [0, 13], "id": 2461452080, "screen_name": "_HankRearden", "id_str": "2461452080"}], "hashtags": [{"indices": [31, 54], "text": "nevervotingforlyingted"}]}, "in_reply_to_user_id": 2461452080, "favorite_count": 0, "in_reply_to_status_id": 715443134746877952, "lang": "en", "created_at": "Sun Apr 03 03:52:03 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Surprise, AZ", "place_type": "city", "attributes": {}, "name": "Surprise", "country": "United States", "id": "4894f2226f25db16", "bounding_box": {"coordinates": [[[-112.46036, 33.579566], [-112.46036, 33.713743], [-112.298534, 33.713743], [-112.298534, 33.579566]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/4894f2226f25db16.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/608406113/1459175660", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "12EBD5", "verified": false, "location": "w/Q", "follow_request_sent": null, "followers_count": 590, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713251894492139520/vxF0nkK1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624870010/zv1vgt2vickfseqjwyx4.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 378, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624870010/zv1vgt2vickfseqjwyx4.png", "time_zone": null, "profile_text_color": "333333", "id_str": "608406113", "protected": false, "id": 608406113, "favourites_count": 10146, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "becca_violet", "profile_image_url": "http://pbs.twimg.com/profile_images/713251894492139520/vxF0nkK1_normal.jpg", "lang": "en", "created_at": "Thu Jun 14 19:16:04 +0000 2012", "profile_use_background_image": true, "name": "Becca", "url": null, "following": null, "profile_link_color": "231124", "statuses_count": 6108, "is_translator": false}, "text": "HAPPY BIRTHDAY @eryk_lynn \ud83d\udc95", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473328035180545", "id": 716473328035180545, "timestamp_ms": "1459655527491", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Erykah", "indices": [15, 25], "id": 975441564, "screen_name": "eryk_lynn", "id_str": "975441564"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2710505143/1459655220", "description": "leaving", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "022330", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 95, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716472020435742720/cZJH7Vxv_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 236, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/655960202563313664/2SeD6rG0.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2710505143", "protected": false, "id": 2710505143, "favourites_count": 302, "profile_sidebar_fill_color": "000000", "screen_name": "secretham34", "profile_image_url": "http://pbs.twimg.com/profile_images/716472020435742720/cZJH7Vxv_normal.jpg", "lang": "en", "created_at": "Tue Aug 05 22:33:38 +0000 2014", "profile_use_background_image": true, "name": "bye", "url": "http://www.youtube.com/thesecretham", "following": null, "profile_link_color": "0084B4", "statuses_count": 1245, "is_translator": false}, "text": "THIS SUCKS", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473363380641792", "id": 716473363380641792, "timestamp_ms": "1459655535918", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:15 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/360868889/1457213651", "description": "Nothin like you niggas #BossMovesOnly", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Toledo OH \u2708\ufe0f Phoenix AZ \u2600\ufe0f", "follow_request_sent": null, "followers_count": 3650, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716446519436513280/LXyExRQP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/318127854/nicki-minaj-covers-elle-may-2011-01_large.jpg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 2577, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/318127854/nicki-minaj-covers-elle-may-2011-01_large.jpg", "time_zone": "Quito", "profile_text_color": "615B61", "id_str": "360868889", "protected": false, "id": 360868889, "favourites_count": 3552, "profile_sidebar_fill_color": "000000", "screen_name": "_KingVelle_", "profile_image_url": "http://pbs.twimg.com/profile_images/716446519436513280/LXyExRQP_normal.jpg", "lang": "en", "created_at": "Tue Aug 23 22:03:08 +0000 2011", "profile_use_background_image": true, "name": "Velle", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 45409, "is_translator": false}, "text": "It's lit \ud83e\udd11", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473369420410880", "id": 716473369420410880, "timestamp_ms": "1459655537358", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:17 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471623562305536", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "318111309", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/211251084/1458277595", "description": "Taylor Swift enthusiast", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 391, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710672986894827520/VGe4-lR1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/334805422/perfect.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 184, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/334805422/perfect.jpg", "time_zone": "Arizona", "profile_text_color": "96917B", "id_str": "211251084", "protected": false, "id": 211251084, "favourites_count": 9212, "profile_sidebar_fill_color": "F09E9E", "screen_name": "missywilb", "profile_image_url": "http://pbs.twimg.com/profile_images/710672986894827520/VGe4-lR1_normal.jpg", "lang": "en", "created_at": "Tue Nov 02 18:57:54 +0000 2010", "profile_use_background_image": true, "name": "missy", "url": null, "following": null, "profile_link_color": "7FA386", "statuses_count": 14175, "is_translator": false}, "text": "@AbbeyCadabra_ I'm so disappointed \ud83d\ude2d", "retweeted": false, "in_reply_to_screen_name": "AbbeyCadabra_", "id_str": "716473382817017856", "id": 716473382817017856, "timestamp_ms": "1459655540552", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Abbey", "indices": [0, 14], "id": 318111309, "screen_name": "AbbeyCadabra_", "id_str": "318111309"}], "hashtags": []}, "in_reply_to_user_id": 318111309, "favorite_count": 0, "in_reply_to_status_id": 716471623562305536, "lang": "en", "created_at": "Sun Apr 03 03:52:20 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472702282784773", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "230526910", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/188424733/1459323281", "description": "University of Arizona. sc: ledaisyyy", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "000000", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 2732, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716466935957815298/rKpoIa9j_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691240946/995de626e3c5797c3a00461e5dc4ce48.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 19, "friends_count": 821, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691240946/995de626e3c5797c3a00461e5dc4ce48.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "188424733", "protected": false, "id": 188424733, "favourites_count": 17024, "profile_sidebar_fill_color": "000000", "screen_name": "ledaisyyy", "profile_image_url": "http://pbs.twimg.com/profile_images/716466935957815298/rKpoIa9j_normal.jpg", "lang": "en", "created_at": "Wed Sep 08 18:11:10 +0000 2010", "profile_use_background_image": true, "name": "Daisy Aguilar", "url": "http://Instagram.com/daisyaguilarr", "following": null, "profile_link_color": "F78FDD", "statuses_count": 39048, "is_translator": false}, "text": "@LesslyeDoeszIt my pretties \ud83d\udc98", "retweeted": false, "in_reply_to_screen_name": "LesslyeDoeszIt", "id_str": "716473383391592448", "id": 716473383391592448, "timestamp_ms": "1459655540689", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "lesslye", "indices": [0, 15], "id": 230526910, "screen_name": "LesslyeDoeszIt", "id_str": "230526910"}], "hashtags": []}, "in_reply_to_user_id": 230526910, "favorite_count": 0, "in_reply_to_status_id": 716472702282784773, "lang": "en", "created_at": "Sun Apr 03 03:52:20 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/lRFlMyVE6E", "sizes": {"small": {"w": 340, "resize": "fit", "h": 480}, "large": {"w": 640, "resize": "fit", "h": 904}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 848}}, "type": "photo", "expanded_url": "http://twitter.com/nealip/status/716473389683113984/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsvXHUMAAYmV8.jpg", "indices": [115, 138], "id": 716473376642969600, "id_str": "716473376642969600", "display_url": "pic.twitter.com/lRFlMyVE6E", "media_url": "http://pbs.twimg.com/media/CfFsvXHUMAAYmV8.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/34120405/1454466377", "description": "Architect/Urban Designer/Director of west coast office of Torti Gallas and Partners LinkedIn: http://lnkd.in/C7-zX6 #in", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Los Angeles, CA", "follow_request_sent": null, "followers_count": 387, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/672178835245240320/HOgIYsm3_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 19, "friends_count": 392, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "34120405", "protected": false, "id": 34120405, "favourites_count": 98, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "nealip", "profile_image_url": "http://pbs.twimg.com/profile_images/672178835245240320/HOgIYsm3_normal.jpg", "lang": "en", "created_at": "Wed Apr 22 01:03:50 +0000 2009", "profile_use_background_image": true, "name": "Neal Payton", "url": "http://tortigallas.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 981, "is_translator": false}, "text": "If you r at #apa16 pls consider attending my session\n\"Using New Urbanism to Create an Authentic Downtown\" Mon. 9AM https://t.co/lRFlMyVE6E", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473389683113984", "id": 716473389683113984, "timestamp_ms": "1459655542189", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [12, 18], "text": "apa16"}], "media": [{"url": "https://t.co/lRFlMyVE6E", "sizes": {"small": {"w": 340, "resize": "fit", "h": 480}, "large": {"w": 640, "resize": "fit", "h": 904}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 848}}, "type": "photo", "expanded_url": "http://twitter.com/nealip/status/716473389683113984/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFsvXHUMAAYmV8.jpg", "indices": [115, 138], "id": 716473376642969600, "id_str": "716473376642969600", "display_url": "pic.twitter.com/lRFlMyVE6E", "media_url": "http://pbs.twimg.com/media/CfFsvXHUMAAYmV8.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:22 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472772403179524", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "249795433", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/230526910/1458982931", "description": "Carefree lifestyle", "profile_sidebar_border_color": "000000", "profile_background_tile": true, "profile_background_color": "4F0606", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 2139, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713119770954993665/qdhKI1qM_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/890159860/e870292f9e70152fa5c227ac37dcd5b9.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 699, "utc_offset": -21600, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/890159860/e870292f9e70152fa5c227ac37dcd5b9.jpeg", "time_zone": "Mountain Time (US & Canada)", "profile_text_color": "666666", "id_str": "230526910", "protected": false, "id": 230526910, "favourites_count": 13436, "profile_sidebar_fill_color": "252429", "screen_name": "LesslyeDoeszIt", "profile_image_url": "http://pbs.twimg.com/profile_images/713119770954993665/qdhKI1qM_normal.jpg", "lang": "en", "created_at": "Sat Dec 25 21:33:41 +0000 2010", "profile_use_background_image": false, "name": "lesslye", "url": null, "following": null, "profile_link_color": "030303", "statuses_count": 47826, "is_translator": false}, "text": "@_alexwest you're sweet!", "retweeted": false, "in_reply_to_screen_name": "_alexwest", "id_str": "716473392191307776", "id": 716473392191307776, "timestamp_ms": "1459655542787", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "A.", "indices": [0, 10], "id": 249795433, "screen_name": "_alexwest", "id_str": "249795433"}], "hashtags": []}, "in_reply_to_user_id": 249795433, "favorite_count": 0, "in_reply_to_status_id": 716472772403179524, "lang": "en", "created_at": "Sun Apr 03 03:52:22 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/203204547/1401036228", "description": "Da Blue Bat!\r\nhttp://furaffinity.net/user/faye88/", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "352726", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 2473, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/703021997677129728/B8n4qWfn_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/713520109/34091416f85374e0445a25d9abc6eb23.png", "default_profile_image": false, "notifications": null, "listed_count": 22, "friends_count": 447, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/713520109/34091416f85374e0445a25d9abc6eb23.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3E4415", "id_str": "203204547", "protected": false, "id": 203204547, "favourites_count": 12595, "profile_sidebar_fill_color": "99CC33", "screen_name": "blue_bat_butt", "profile_image_url": "http://pbs.twimg.com/profile_images/703021997677129728/B8n4qWfn_normal.jpg", "lang": "en", "created_at": "Fri Oct 15 19:23:15 +0000 2010", "profile_use_background_image": true, "name": "Batopia", "url": null, "following": null, "profile_link_color": "4A913C", "statuses_count": 24210, "is_translator": false}, "text": "cat.exe has stopped working https://t.co/6uxfNYK40b @Sirodbcollie", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473393487286272", "id": 716473393487286272, "timestamp_ms": "1459655543096", "entities": {"symbols": [], "urls": [{"expanded_url": "https://imgur.com/gallery/y2NsObg", "indices": [28, 51], "display_url": "imgur.com/gallery/y2NsObg", "url": "https://t.co/6uxfNYK40b"}], "user_mentions": [{"name": "SiRoD", "indices": [52, 65], "id": 43489263, "screen_name": "Sirodbcollie", "id_str": "43489263"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:23 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3163115966/1457378385", "description": "(uh-rae-uh)\n Leo \u264c\nSC : araya.santoro\ndv cheer", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "probably @ cheer", "follow_request_sent": null, "followers_count": 127, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 352, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3163115966", "protected": false, "id": 3163115966, "favourites_count": 2155, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "agsan095", "profile_image_url": "http://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "lang": "en", "created_at": "Sun Apr 19 00:40:18 +0000 2015", "profile_use_background_image": true, "name": "snooks", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1188, "is_translator": false}, "text": "I actually just don't accept food from monkeys\ud83d\udc38\u2615 https://t.co/FODnG6R5Sl", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473399300632576", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CfFqPcDUMAEbutV.mp4"}], "aspect_ratio": [4, 3]}, "url": "https://t.co/2oz5sgTUEW", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 360, "resize": "fit", "h": 270}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 270}}, "type": "animated_gif", "expanded_url": "http://twitter.com/inshaIlah/status/716470716724547584/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFqPcDUMAEbutV.jpg", "indices": [75, 98], "id": 716470629189300225, "id_str": "716470629189300225", "display_url": "pic.twitter.com/2oz5sgTUEW", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFqPcDUMAEbutV.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1213884528/1459443931", "description": "When you realize there is nothing lacking, the whole world belongs to you. - \u8001\u5b50", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Maryland", "follow_request_sent": null, "followers_count": 312, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715282065005088768/aYDFt9CQ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/438468094848032768/q0CNRzKR.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 93, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/438468094848032768/q0CNRzKR.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "1213884528", "protected": false, "id": 1213884528, "favourites_count": 510, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "inshaIlah", "profile_image_url": "http://pbs.twimg.com/profile_images/715282065005088768/aYDFt9CQ_normal.jpg", "lang": "en", "created_at": "Sat Feb 23 22:55:35 +0000 2013", "profile_use_background_image": true, "name": "usfund", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 78, "is_translator": false}, "text": "when you make food for someone but they already ate out before coming home https://t.co/2oz5sgTUEW", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470716724547584", "id": 716470716724547584, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/2oz5sgTUEW", "sizes": {"small": {"w": 340, "resize": "fit", "h": 255}, "large": {"w": 360, "resize": "fit", "h": 270}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 360, "resize": "fit", "h": 270}}, "type": "photo", "expanded_url": "http://twitter.com/inshaIlah/status/716470716724547584/photo/1", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CfFqPcDUMAEbutV.jpg", "indices": [75, 98], "id": 716470629189300225, "id_str": "716470629189300225", "display_url": "pic.twitter.com/2oz5sgTUEW", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CfFqPcDUMAEbutV.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:41:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473399300632576, "timestamp_ms": "1459655544482", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/inshaIlah/status/716470716724547584", "indices": [49, 72], "display_url": "twitter.com/inshaIlah/stat\u2026", "url": "https://t.co/FODnG6R5Sl"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470716724547584, "created_at": "Sun Apr 03 03:52:24 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470716724547584", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716473149546586112", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2980348899", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/369042017/1441259923", "description": "22 seasons ago we've brought you news music gaming and more we are committed to continue to do this so please celebrate with us through June 2016", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Phoenix Arizona", "follow_request_sent": null, "followers_count": 410, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/453062587316314112/No5YZz-3_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 938, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "369042017", "protected": false, "id": 369042017, "favourites_count": 525, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "thedjwillyshow", "profile_image_url": "http://pbs.twimg.com/profile_images/453062587316314112/No5YZz-3_normal.jpeg", "lang": "en", "created_at": "Tue Sep 06 17:23:12 +0000 2011", "profile_use_background_image": true, "name": "DJ WILLY SHOW (PHX)", "url": "http://www.youtube.com/willynewsps3q", "following": null, "profile_link_color": "009999", "statuses_count": 19871, "is_translator": false}, "text": "@petracat09 hey Petra", "retweeted": false, "in_reply_to_screen_name": "petracat09", "id_str": "716473403524325376", "id": 716473403524325376, "timestamp_ms": "1459655545489", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "PetraCat", "indices": [0, 11], "id": 2980348899, "screen_name": "petracat09", "id_str": "2980348899"}], "hashtags": []}, "in_reply_to_user_id": 2980348899, "favorite_count": 0, "in_reply_to_status_id": 716473149546586112, "lang": "pt", "created_at": "Sun Apr 03 03:52:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/FvsSuIi752", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/Padooling/status/716473402614108160/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFswHlUEAA4aCN.jpg", "indices": [92, 115], "id": 716473389653692416, "id_str": "716473389653692416", "display_url": "pic.twitter.com/FvsSuIi752", "media_url": "http://pbs.twimg.com/media/CfFswHlUEAA4aCN.jpg"}]}, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/365211821/1359080186", "description": "Published author of The Protectors Saga. Loves Supernatural, Dr. Who, Chuck Taylors, my three annoying dogs, skittles, and about a thousand other things", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 7821, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1854106881/pp_twitter__normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/528378758621712384/xo8nU4Xl.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 177, "friends_count": 7000, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/528378758621712384/xo8nU4Xl.jpeg", "time_zone": null, "profile_text_color": "714891", "id_str": "365211821", "protected": false, "id": 365211821, "favourites_count": 246, "profile_sidebar_fill_color": "030405", "screen_name": "Padooling", "profile_image_url": "http://pbs.twimg.com/profile_images/1854106881/pp_twitter__normal.jpg", "lang": "en", "created_at": "Wed Aug 31 01:38:20 +0000 2011", "profile_use_background_image": true, "name": "P.M. Dooling", "url": "http://paigedooling.blogspot.com/", "following": null, "profile_link_color": "DB5C5C", "statuses_count": 6338, "is_translator": false}, "text": "Most of my #writing breaks involve food...or dogs...or dogs staring at me while I eat food! https://t.co/FvsSuIi752", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473402614108160", "id": 716473402614108160, "timestamp_ms": "1459655545272", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [11, 19], "text": "writing"}], "media": [{"url": "https://t.co/FvsSuIi752", "sizes": {"small": {"w": 340, "resize": "fit", "h": 340}, "large": {"w": 1024, "resize": "fit", "h": 1024}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 600}}, "type": "photo", "expanded_url": "http://twitter.com/Padooling/status/716473402614108160/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFswHlUEAA4aCN.jpg", "indices": [92, 115], "id": 716473389653692416, "id_str": "716473389653692416", "display_url": "pic.twitter.com/FvsSuIi752", "media_url": "http://pbs.twimg.com/media/CfFswHlUEAA4aCN.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:25 +0000 2016", "coordinates": {"coordinates": [-112.1656742, 33.5890028], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.5890028, -112.1656742], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2377962129/1459035320", "description": "Tell me why you hatin? Tell me why you really mad? #LongLiveChillll #UNMLobo", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 819, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714270651062874112/GmoiKlP6_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 535, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2377962129", "protected": false, "id": 2377962129, "favourites_count": 4206, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "ItsSimplySteph_", "profile_image_url": "http://pbs.twimg.com/profile_images/714270651062874112/GmoiKlP6_normal.jpg", "lang": "en", "created_at": "Mon Mar 03 03:32:37 +0000 2014", "profile_use_background_image": true, "name": "Queen Stephh", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 32234, "is_translator": false}, "text": "\u2648\ufe0f\ud83e\udd18\ud83c\udffc\ud83e\udd11- baddest little thang swear to god. Shawty look like Selena Gomez and has the voice of an angel \ud83d\ude05\ud83d\udc9f", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473405571096576", "id": 716473405571096576, "timestamp_ms": "1459655545977", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2723264429/1459615165", "description": "love lots & love all \u2022 GWHS Varsity \u26be\ufe0f #6", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 231, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712513947660890112/KPv-0P5v_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 203, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Mazatlan", "profile_text_color": "000000", "id_str": "2723264429", "protected": false, "id": 2723264429, "favourites_count": 4231, "profile_sidebar_fill_color": "000000", "screen_name": "kylienfox", "profile_image_url": "http://pbs.twimg.com/profile_images/712513947660890112/KPv-0P5v_normal.jpg", "lang": "en", "created_at": "Thu Jul 24 19:02:30 +0000 2014", "profile_use_background_image": false, "name": "kylie \u2728", "url": "http://lds.org", "following": null, "profile_link_color": "F5ABB5", "statuses_count": 2012, "is_translator": false}, "text": "I want to be happy", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473412214894593", "id": 716473412214894593, "timestamp_ms": "1459655547561", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:27 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3250043082", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2739616518/1439093536", "description": "CDS '16 \u2600 it's too late to turn back now", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "The Forest, Dante's Inferno ", "follow_request_sent": null, "followers_count": 135, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/693862042172674048/_sqJqNNI_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 158, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "2739616518", "protected": false, "id": 2739616518, "favourites_count": 2788, "profile_sidebar_fill_color": "000000", "screen_name": "amnaadele", "profile_image_url": "http://pbs.twimg.com/profile_images/693862042172674048/_sqJqNNI_normal.jpg", "lang": "en", "created_at": "Sun Aug 17 12:49:57 +0000 2014", "profile_use_background_image": false, "name": "amna", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 1875, "is_translator": false}, "text": "@ericklemus989 ...Sooo", "retweeted": false, "in_reply_to_screen_name": "ericklemus989", "id_str": "716473425145913344", "id": 716473425145913344, "timestamp_ms": "1459655550644", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Erick Lemus", "indices": [0, 14], "id": 3250043082, "screen_name": "ericklemus989", "id_str": "3250043082"}], "hashtags": []}, "in_reply_to_user_id": 3250043082, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:52:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/523679197/1456772662", "description": "DHS varsity cheer & BCP\u2763 #dwyerstrong", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": false, "profile_background_color": "ACDED6", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 1353, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714978052518907904/dPeMYjAz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 7, "friends_count": 480, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "523679197", "protected": false, "id": 523679197, "favourites_count": 25040, "profile_sidebar_fill_color": "F6F6F6", "screen_name": "haley_vial", "profile_image_url": "http://pbs.twimg.com/profile_images/714978052518907904/dPeMYjAz_normal.jpg", "lang": "en", "created_at": "Tue Mar 13 21:11:12 +0000 2012", "profile_use_background_image": true, "name": "hales", "url": null, "following": null, "profile_link_color": "038543", "statuses_count": 27442, "is_translator": false}, "text": "Fuck", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473425691222016", "id": 716473425691222016, "timestamp_ms": "1459655550774", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/367276087/1457672952", "description": "Trust in the LORD with all your heart and lean not on your own understanding. Proverbs 3:5 | Instagram: lmorales6", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 501, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713262537941196800/VO7Wai5f_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 393, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "367276087", "protected": false, "id": 367276087, "favourites_count": 10570, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "LiamMorales6", "profile_image_url": "http://pbs.twimg.com/profile_images/713262537941196800/VO7Wai5f_normal.jpg", "lang": "en", "created_at": "Sat Sep 03 17:58:35 +0000 2011", "profile_use_background_image": true, "name": "Liam Morales", "url": "http://8tracks.com/lmorales6", "following": null, "profile_link_color": "0084B4", "statuses_count": 9752, "is_translator": false}, "text": "Anytime his songs come on it's a party", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473431647072256", "id": 716473431647072256, "timestamp_ms": "1459655552194", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2842050427/1459546028", "description": "AZ\u27a1\ufe0fUT snapchat: bryleewrightt insta: Brylee_wright15", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 254, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708044320314490881/4Ulj4gZa_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 325, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2842050427", "protected": false, "id": 2842050427, "favourites_count": 2199, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "wright_brylee", "profile_image_url": "http://pbs.twimg.com/profile_images/708044320314490881/4Ulj4gZa_normal.jpg", "lang": "en", "created_at": "Mon Oct 06 05:38:47 +0000 2014", "profile_use_background_image": true, "name": "Brylee wright", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8471, "is_translator": false}, "text": "My dad went camping and left me and bay at the house and he has literally called me every 30 mins. WE ARE FINE!", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473434226556933", "id": 716473434226556933, "timestamp_ms": "1459655552809", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716467206226329601", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "3027533874", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/154985361/1459076340", "description": "#ASU'19 | \u0637\u0627\u0644\u0628 \u0641\u064a \u062c\u0627\u0645\u0639\u0629 \u0623\u0631\u064a\u0632\u0648\u0646\u0627", "profile_sidebar_border_color": "BDDCAD", "profile_background_tile": false, "profile_background_color": "9AE4E8", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 378, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716287249470464001/h2M6W1rF_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 412, "utc_offset": 10800, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "time_zone": "Kuwait", "profile_text_color": "333333", "id_str": "154985361", "protected": false, "id": 154985361, "favourites_count": 191, "profile_sidebar_fill_color": "DDFFCC", "screen_name": "hmk_6", "profile_image_url": "http://pbs.twimg.com/profile_images/716287249470464001/h2M6W1rF_normal.jpg", "lang": "en", "created_at": "Sat Jun 12 19:53:42 +0000 2010", "profile_use_background_image": true, "name": "\u062d\u0645\u0648\u062f \u0627\u0644\u062b\u0646\u064a\u0627\u0646", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 6007, "is_translator": false}, "text": "@jhj_15 #\u0645\u062a\u0635\u062f\u0631_\u0644\u0627_\u062a\u0643\u0644\u0645\u0646\u064a", "retweeted": false, "in_reply_to_screen_name": "jhj_15", "id_str": "716473434549538816", "id": 716473434549538816, "timestamp_ms": "1459655552886", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u062c\u0627\u0633\u0645 \u0627\u0644\u0634\u0645\u0631\u064a", "indices": [0, 7], "id": 3027533874, "screen_name": "jhj_15", "id_str": "3027533874"}], "hashtags": [{"indices": [8, 24], "text": "\u0645\u062a\u0635\u062f\u0631_\u0644\u0627_\u062a\u0643\u0644\u0645\u0646\u064a"}]}, "in_reply_to_user_id": 3027533874, "favorite_count": 0, "in_reply_to_status_id": 716467206226329601, "lang": "und", "created_at": "Sun Apr 03 03:52:32 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/311718410/1458366623", "description": "life's tough, get a helmet", "profile_sidebar_border_color": "F0A830", "profile_background_tile": true, "profile_background_color": "FCEBB6", "verified": false, "location": "San Diego, CA", "follow_request_sent": null, "followers_count": 580, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715289772458004480/BA63cVBs_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000000531500/99d9657256debd256b702e75ba4fc50c.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 497, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000000531500/99d9657256debd256b702e75ba4fc50c.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "5E412F", "id_str": "311718410", "protected": false, "id": 311718410, "favourites_count": 17314, "profile_sidebar_fill_color": "78C0A8", "screen_name": "kellyyyyh", "profile_image_url": "http://pbs.twimg.com/profile_images/715289772458004480/BA63cVBs_normal.jpg", "lang": "en", "created_at": "Sun Jun 05 23:06:52 +0000 2011", "profile_use_background_image": true, "name": "kel", "url": "http://asukkg.tumblr.com", "following": null, "profile_link_color": "CE7834", "statuses_count": 6985, "is_translator": false}, "text": "do u ever want to delete all social media", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473438454480897", "id": 716473438454480897, "timestamp_ms": "1459655553817", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/393218064/1459016568", "description": "stubborn & spend a lot of money", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "20 az", "follow_request_sent": null, "followers_count": 750, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713794062176894976/P3Qo_0mG_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000041410644/af418d3e72384fa5a24e81b2af611e77.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 513, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000041410644/af418d3e72384fa5a24e81b2af611e77.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "D0786E", "id_str": "393218064", "protected": false, "id": 393218064, "favourites_count": 11247, "profile_sidebar_fill_color": "C39768", "screen_name": "bnvalenzx", "profile_image_url": "http://pbs.twimg.com/profile_images/713794062176894976/P3Qo_0mG_normal.jpg", "lang": "en", "created_at": "Tue Oct 18 06:10:23 +0000 2011", "profile_use_background_image": false, "name": "brrri", "url": "http://diamondbblood.tumblr.com", "following": null, "profile_link_color": "A80A0A", "statuses_count": 31556, "is_translator": false}, "text": "I wanna sleep for 16 hours now", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473441805664256", "id": 716473441805664256, "timestamp_ms": "1459655554616", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2691740226/1456374826", "description": "Montana State University", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Bozeman, Montana", "follow_request_sent": null, "followers_count": 347, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/695040504400969728/3WQuXKrN_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 242, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "000000", "id_str": "2691740226", "protected": false, "id": 2691740226, "favourites_count": 13595, "profile_sidebar_fill_color": "000000", "screen_name": "MikaelaaBrooke", "profile_image_url": "http://pbs.twimg.com/profile_images/695040504400969728/3WQuXKrN_normal.jpg", "lang": "en", "created_at": "Wed Jul 30 04:13:58 +0000 2014", "profile_use_background_image": false, "name": "mik", "url": null, "following": null, "profile_link_color": "DB2CB2", "statuses_count": 1676, "is_translator": false}, "text": "No text back is probably one of the most frustrating things \ud83d\ude43", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473444359995392", "id": 716473444359995392, "timestamp_ms": "1459655555225", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:35 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1033453440/1457286895", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 576, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716083623988822016/b2LnE339_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 12, "friends_count": 447, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "1033453440", "protected": false, "id": 1033453440, "favourites_count": 23824, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "gabejh123", "profile_image_url": "http://pbs.twimg.com/profile_images/716083623988822016/b2LnE339_normal.jpg", "lang": "en", "created_at": "Mon Dec 24 21:07:02 +0000 2012", "profile_use_background_image": true, "name": "curve me", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 33201, "is_translator": false}, "text": "I need an adderall https://t.co/sgSUdIc1z5", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473445597339649", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/710224697510612992/1458357209", "description": "SHAKY WARRIOR", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Gilbert, AZ", "follow_request_sent": null, "followers_count": 63, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710353143624630272/VzLMCMzO_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 69, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "710224697510612992", "protected": false, "id": 710224697510612992, "favourites_count": 181, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "3Zooted5U", "profile_image_url": "http://pbs.twimg.com/profile_images/710353143624630272/VzLMCMzO_normal.jpg", "lang": "en", "created_at": "Wed Mar 16 22:02:18 +0000 2016", "profile_use_background_image": true, "name": "Gage", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 112, "is_translator": false}, "text": "Alright boys and girls it's that time of night again. If you aren't completely destroyed from last night I better see you at my house.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716459989921964032", "id": 716459989921964032, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 02:59:07 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473445597339649, "timestamp_ms": "1459655555520", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/3zooted5u/status/716459989921964032", "indices": [19, 42], "display_url": "twitter.com/3zooted5u/stat\u2026", "url": "https://t.co/sgSUdIc1z5"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716459989921964032, "created_at": "Sun Apr 03 03:52:35 +0000 2016", "coordinates": null, "quoted_status_id_str": "716459989921964032", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Paradise Valley, AZ", "place_type": "city", "attributes": {}, "name": "Paradise Valley", "country": "United States", "id": "9a99329bbb5d8bba", "bounding_box": {"coordinates": [[[-112.014232, 33.508746], [-112.014232, 33.582629], [-111.916817, 33.582629], [-111.916817, 33.508746]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/9a99329bbb5d8bba.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/605897136/1458706354", "description": "i feel violent all the time inside of me (@angelxbabie)", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "ABB8C2", "verified": false, "location": "seattle", "follow_request_sent": null, "followers_count": 143, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/712492418843545600/oFrBuuzh_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/837081006/61f6111143eed310ded157d202259d09.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 81, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/837081006/61f6111143eed310ded157d202259d09.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "605897136", "protected": false, "id": 605897136, "favourites_count": 13260, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "clifbarangel", "profile_image_url": "http://pbs.twimg.com/profile_images/712492418843545600/oFrBuuzh_normal.jpg", "lang": "en", "created_at": "Mon Jun 11 22:55:23 +0000 2012", "profile_use_background_image": false, "name": "\u2729", "url": "http://withpurpose.bandcamp.com/album/i-dont-care-about-you-anymore-i-just-want-pasta", "following": null, "profile_link_color": "F58EA8", "statuses_count": 8368, "is_translator": false}, "text": "the cutest compliment I've ever received is \"I love how you and your friends are, you all act really cute w each other\" SO MUCH LUV", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473462890438657", "id": 716473462890438657, "timestamp_ms": "1459655559643", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471096304750592", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "241719933", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Mesa, AZ", "place_type": "city", "attributes": {}, "name": "Mesa", "country": "United States", "id": "44d207663001f00b", "bounding_box": {"coordinates": [[[-111.894548, 33.306275], [-111.894548, 33.505234], [-111.580583, 33.505234], [-111.580583, 33.306275]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/44d207663001f00b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/308744593/1356596369", "description": "All-American sprinter for UNI", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Cedar Falls", "follow_request_sent": null, "followers_count": 363, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/474676805794680832/oQXrgOfl_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/275092212/uni_2.jpg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 292, "utc_offset": -18000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/275092212/uni_2.jpg", "time_zone": "Central Time (US & Canada)", "profile_text_color": "333333", "id_str": "308744593", "protected": false, "id": 308744593, "favourites_count": 4655, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "VVhitelightning", "profile_image_url": "http://pbs.twimg.com/profile_images/474676805794680832/oQXrgOfl_normal.jpeg", "lang": "en", "created_at": "Tue May 31 22:53:02 +0000 2011", "profile_use_background_image": true, "name": "Derek Clayton Kramer", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 5885, "is_translator": false}, "text": "@CjKramer24 @DaltronPrime ever since I needed UNC to not win the tournament for our school's bracket pool", "retweeted": false, "in_reply_to_screen_name": "CjKramer24", "id_str": "716473470805094400", "id": 716473470805094400, "timestamp_ms": "1459655561530", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Corey Kramer", "indices": [0, 11], "id": 241719933, "screen_name": "CjKramer24", "id_str": "241719933"}, {"name": "Dalton Derthick, SPT", "indices": [12, 25], "id": 142004404, "screen_name": "DaltronPrime", "id_str": "142004404"}], "hashtags": []}, "in_reply_to_user_id": 241719933, "favorite_count": 0, "in_reply_to_status_id": 716471096304750592, "lang": "en", "created_at": "Sun Apr 03 03:52:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716472322270429184", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "35338685", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/773918994/1387070445", "description": "Senior Columnist for @autoracing1, also write for http://TheRacingScribe.com. Redskins fan #httr, #mufc supporter. Opinions my own.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Rockville, MD", "follow_request_sent": null, "followers_count": 1313, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/681103208920551424/xZ-yvpfu_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 38, "friends_count": 998, "utc_offset": -10800, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Atlantic Time (Canada)", "profile_text_color": "333333", "id_str": "773918994", "protected": false, "id": 773918994, "favourites_count": 209, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "BrianC_AR1", "profile_image_url": "http://pbs.twimg.com/profile_images/681103208920551424/xZ-yvpfu_normal.jpg", "lang": "en", "created_at": "Wed Aug 22 15:35:31 +0000 2012", "profile_use_background_image": true, "name": "Brian Carroccio", "url": "http://www.autoracing1.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 14387, "is_translator": false}, "text": "@lynnweinberg @JosephRemiB I think joe needs to watch more Fox News", "retweeted": false, "in_reply_to_screen_name": "lynnweinberg", "id_str": "716473484163960836", "id": 716473484163960836, "timestamp_ms": "1459655564715", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Lynn Weinberg", "indices": [0, 13], "id": 35338685, "screen_name": "lynnweinberg", "id_str": "35338685"}, {"name": "Joe Remi", "indices": [14, 26], "id": 47296192, "screen_name": "JosephRemiB", "id_str": "47296192"}], "hashtags": []}, "in_reply_to_user_id": 35338685, "favorite_count": 0, "in_reply_to_status_id": 716472322270429184, "lang": "en", "created_at": "Sun Apr 03 03:52:44 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3163115966/1457378385", "description": "(uh-rae-uh)\n Leo \u264c\nSC : araya.santoro\ndv cheer", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "probably @ cheer", "follow_request_sent": null, "followers_count": 127, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 352, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3163115966", "protected": false, "id": 3163115966, "favourites_count": 2156, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "agsan095", "profile_image_url": "http://pbs.twimg.com/profile_images/706212221345337344/TZK3wEcZ_normal.jpg", "lang": "en", "created_at": "Sun Apr 19 00:40:18 +0000 2015", "profile_use_background_image": true, "name": "snooks", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1189, "is_translator": false}, "text": "\ud83d\udc40 https://t.co/KNGjLHPj1d", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473487926276096", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1901273544/1395768749", "description": "You're literally being so rude right now just follow me *Parody Account / Fan Account* *we do not own content posted*", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 862911, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/448507951041376256/Or_GJUYO_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 580, "friends_count": 2, "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Central Time (US & Canada)", "profile_text_color": "333333", "id_str": "1901273544", "protected": false, "id": 1901273544, "favourites_count": 0, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "KardashianReact", "profile_image_url": "http://pbs.twimg.com/profile_images/448507951041376256/Or_GJUYO_normal.jpeg", "lang": "en", "created_at": "Tue Sep 24 18:05:52 +0000 2013", "profile_use_background_image": true, "name": "Kardashian Reactions", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 17492, "is_translator": false}, "text": "do you ever get a weird crush on someone that\u2019s not even attractive but you\u2019re just attracted to them and you don\u2019t know why", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470815840055296", "id": 716470815840055296, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:42:08 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473487926276096, "timestamp_ms": "1459655565612", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/KardashianReact/status/716470815840055296", "indices": [2, 25], "display_url": "twitter.com/KardashianReac\u2026", "url": "https://t.co/KNGjLHPj1d"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470815840055296, "created_at": "Sun Apr 03 03:52:45 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470815840055296", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/956706499/1457878931", "description": "Gilbert High '17. jeep nation. Virgo", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "87CAE6", "verified": false, "location": "im tall", "follow_request_sent": null, "followers_count": 390, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711064490532470785/p4sUyjNP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 422, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", "time_zone": "Arizona", "profile_text_color": "362720", "id_str": "956706499", "protected": false, "id": 956706499, "favourites_count": 6077, "profile_sidebar_fill_color": "E5507E", "screen_name": "danceaholic2299", "profile_image_url": "http://pbs.twimg.com/profile_images/711064490532470785/p4sUyjNP_normal.jpg", "lang": "en", "created_at": "Mon Nov 19 03:53:38 +0000 2012", "profile_use_background_image": true, "name": "Brianna Bingham", "url": null, "following": null, "profile_link_color": "0AF5E5", "statuses_count": 5449, "is_translator": false}, "text": "I just loveee how you can make me feel like crap in the matter of seconds. it's so great", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473507375230976", "id": 716473507375230976, "timestamp_ms": "1459655570249", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:50 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2277510870/1454546723", "description": "Raymond, Regina & Royce \u2764\ufe0f", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arendelle ", "follow_request_sent": null, "followers_count": 122, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711799667453898752/Epr_YvuK_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 119, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2277510870", "protected": false, "id": 2277510870, "favourites_count": 2665, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Gina__George", "profile_image_url": "http://pbs.twimg.com/profile_images/711799667453898752/Epr_YvuK_normal.jpg", "lang": "en", "created_at": "Sun Jan 05 11:48:43 +0000 2014", "profile_use_background_image": true, "name": "Regina George", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 2587, "is_translator": false}, "text": "Why do you message me after, I just had a dream about you killing me last night \ud83d\ude05", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473511343050753", "id": 716473511343050753, "timestamp_ms": "1459655571195", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:51 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1440169362/1459365328", "description": "XVII", "profile_sidebar_border_color": "D3D2CF", "profile_background_tile": false, "profile_background_color": "EC8478", "verified": false, "location": "Santa Cruz, Sonora", "follow_request_sent": null, "followers_count": 612, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716267329282121730/wgSM2_jk_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/553603580398034944/bpo1OlEi.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 453, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/553603580398034944/bpo1OlEi.jpeg", "time_zone": "Arizona", "profile_text_color": "634047", "id_str": "1440169362", "protected": false, "id": 1440169362, "favourites_count": 1108, "profile_sidebar_fill_color": "E3E2DE", "screen_name": "ReynaKosterlitz", "profile_image_url": "http://pbs.twimg.com/profile_images/716267329282121730/wgSM2_jk_normal.jpg", "lang": "es", "created_at": "Sun May 19 04:31:03 +0000 2013", "profile_use_background_image": false, "name": "Rusa", "url": null, "following": null, "profile_link_color": "EC8478", "statuses_count": 10631, "is_translator": false}, "text": "Eh escuchado como mil veces ese audio .", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473525180047360", "id": 716473525180047360, "timestamp_ms": "1459655574494", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "es", "created_at": "Sun Apr 03 03:52:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2556546621/1456150089", "description": "obsessed with tattoos", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 300, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/704072127775780864/8oGURJ_7_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 821, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2556546621", "protected": false, "id": 2556546621, "favourites_count": 4405, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "reed98_reed", "profile_image_url": "http://pbs.twimg.com/profile_images/704072127775780864/8oGURJ_7_normal.jpg", "lang": "en", "created_at": "Wed May 21 02:01:12 +0000 2014", "profile_use_background_image": true, "name": "j", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 7028, "is_translator": false}, "text": "second mom made my night by just telling me I looked pretty \ud83d\ude29\ud83d\udc96", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473529391140864", "id": 716473529391140864, "timestamp_ms": "1459655575498", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/366417845/1433472229", "description": "IG: Cecewils23 AZ\u2708 LB", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 643, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/624542709550714880/79TixAXM_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000093267207/2c393a8cb85a4f7b93e49cc1c52e1e0e.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 570, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000093267207/2c393a8cb85a4f7b93e49cc1c52e1e0e.jpeg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "366417845", "protected": false, "id": 366417845, "favourites_count": 9207, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "CecilyWilson", "profile_image_url": "http://pbs.twimg.com/profile_images/624542709550714880/79TixAXM_normal.jpg", "lang": "en", "created_at": "Fri Sep 02 04:13:35 +0000 2011", "profile_use_background_image": true, "name": "Cece", "url": "http://twitter.com/CecilyWilson", "following": null, "profile_link_color": "0084B4", "statuses_count": 15882, "is_translator": false}, "text": "My sister is like the biggest person that gets on my nerves\ud83d\ude20\ud83d\ude12", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473530431344642", "id": 716473530431344642, "timestamp_ms": "1459655575746", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:52:55 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/7qFhBCnorX", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 1024, "resize": "fit", "h": 1820}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/98sassy/status/716473545425981440/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFs4n_UEAQf8er.jpg", "indices": [6, 29], "id": 716473535791632388, "id_str": "716473535791632388", "display_url": "pic.twitter.com/7qFhBCnorX", "media_url": "http://pbs.twimg.com/media/CfFs4n_UEAQf8er.jpg"}]}, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/339589751/1457326883", "description": "rad | spencer a. | utah state university | http://lds.org", "profile_sidebar_border_color": "BDDCAD", "profile_background_tile": false, "profile_background_color": "9AE4E8", "verified": false, "location": "salt lake city, ut", "follow_request_sent": null, "followers_count": 371, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/699483053396131840/tCPOcd2q_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 232, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "339589751", "protected": false, "id": 339589751, "favourites_count": 13739, "profile_sidebar_fill_color": "DDFFCC", "screen_name": "98sassy", "profile_image_url": "http://pbs.twimg.com/profile_images/699483053396131840/tCPOcd2q_normal.jpg", "lang": "en", "created_at": "Thu Jul 21 10:26:51 +0000 2011", "profile_use_background_image": true, "name": "victoria stapley", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 7916, "is_translator": false}, "text": "..... https://t.co/7qFhBCnorX", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473545425981440", "id": 716473545425981440, "timestamp_ms": "1459655579321", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/7qFhBCnorX", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 1024, "resize": "fit", "h": 1820}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/98sassy/status/716473545425981440/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFs4n_UEAQf8er.jpg", "indices": [6, 29], "id": 716473535791632388, "id_str": "716473535791632388", "display_url": "pic.twitter.com/7qFhBCnorX", "media_url": "http://pbs.twimg.com/media/CfFs4n_UEAQf8er.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:52:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716444094134784001", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "703355061351505920", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/517251222/1443647662", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 520, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/602264270571606016/HtIKOaf1_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 539, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "517251222", "protected": false, "id": 517251222, "favourites_count": 7537, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "BallerBrown3", "profile_image_url": "http://pbs.twimg.com/profile_images/602264270571606016/HtIKOaf1_normal.jpg", "lang": "en", "created_at": "Wed Mar 07 05:37:55 +0000 2012", "profile_use_background_image": true, "name": "Ethan Brown", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 13729, "is_translator": false}, "text": "@ktcozart and because we clinched a playoff spot. Thank you Chicago!", "retweeted": false, "in_reply_to_screen_name": "ktcozart", "id_str": "716473553151926273", "id": 716473553151926273, "timestamp_ms": "1459655581163", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Katie Cozart", "indices": [0, 9], "id": 703355061351505920, "screen_name": "ktcozart", "id_str": "703355061351505920"}], "hashtags": []}, "in_reply_to_user_id": 703355061351505920, "favorite_count": 0, "in_reply_to_status_id": 716444094134784001, "lang": "en", "created_at": "Sun Apr 03 03:53:01 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/808232772/1459213457", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Arizona, USA", "follow_request_sent": null, "followers_count": 632, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715979104059785216/BdnOsdZz_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 306, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "808232772", "protected": false, "id": 808232772, "favourites_count": 15517, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JanthonyCanas", "profile_image_url": "http://pbs.twimg.com/profile_images/715979104059785216/BdnOsdZz_normal.jpg", "lang": "en", "created_at": "Fri Sep 07 05:25:28 +0000 2012", "profile_use_background_image": true, "name": "Jay", "url": "http://instagram.com/canasjanthony", "following": null, "profile_link_color": "0084B4", "statuses_count": 14472, "is_translator": false}, "text": "Lmaoo", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473561280421888", "id": 716473561280421888, "timestamp_ms": "1459655583101", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "ht", "created_at": "Sun Apr 03 03:53:03 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716470129278607360", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "971149698", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/220815041/1459281923", "description": "look him in the eye aim no higher summon all the courage you require then count", "profile_sidebar_border_color": "65B0DA", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 360, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/284383189/images.jpg", "default_profile_image": false, "notifications": null, "listed_count": 6, "friends_count": 1125, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/284383189/images.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "3D1957", "id_str": "220815041", "protected": false, "id": 220815041, "favourites_count": 6853, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "Megsmatagges", "profile_image_url": "http://pbs.twimg.com/profile_images/715614009366433792/mBv7x3Tk_normal.jpg", "lang": "en", "created_at": "Sun Nov 28 22:32:52 +0000 2010", "profile_use_background_image": true, "name": "\u24c2 e g s", "url": null, "following": null, "profile_link_color": "3B94D9", "statuses_count": 26677, "is_translator": false}, "text": "@liamgalleher LITERALLY THOUGH", "retweeted": false, "in_reply_to_screen_name": "liamgalleher", "id_str": "716473572437299201", "id": 716473572437299201, "timestamp_ms": "1459655585761", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Liam", "indices": [0, 13], "id": 971149698, "screen_name": "liamgalleher", "id_str": "971149698"}], "hashtags": []}, "in_reply_to_user_id": 971149698, "favorite_count": 0, "in_reply_to_status_id": 716470129278607360, "lang": "en", "created_at": "Sun Apr 03 03:53:05 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Avondale, AZ", "place_type": "city", "attributes": {}, "name": "Avondale", "country": "United States", "id": "0015d9147cee6907", "bounding_box": {"coordinates": [[[-112.357999, 33.384785], [-112.357999, 33.493806], [-112.272424, 33.493806], [-112.272424, 33.384785]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0015d9147cee6907.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2535780911/1459534118", "description": "Good things don't happen to good people/FTP", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "chillin", "follow_request_sent": null, "followers_count": 456, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713544432239448064/dldATGHk_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 282, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2535780911", "protected": false, "id": 2535780911, "favourites_count": 13335, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "BurrolaAnthony", "profile_image_url": "http://pbs.twimg.com/profile_images/713544432239448064/dldATGHk_normal.jpg", "lang": "en", "created_at": "Thu May 08 20:41:57 +0000 2014", "profile_use_background_image": true, "name": "UZUMAKI\u00ae\u00ae", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 16306, "is_translator": false}, "text": "Aka me https://t.co/4GkhuQm3X2", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473581480194048", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2799103600/1459485623", "description": "oh word? || kim \u2661", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "az", "follow_request_sent": null, "followers_count": 1783, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713135728461414401/SiZ0IZhz_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 12, "friends_count": 467, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "2799103600", "protected": false, "id": 2799103600, "favourites_count": 29874, "profile_sidebar_fill_color": "000000", "screen_name": "zurfav", "profile_image_url": "http://pbs.twimg.com/profile_images/713135728461414401/SiZ0IZhz_normal.jpg", "lang": "en", "created_at": "Wed Oct 01 22:33:57 +0000 2014", "profile_use_background_image": false, "name": "z", "url": null, "following": null, "profile_link_color": "ABB8C2", "statuses_count": 23414, "is_translator": false}, "text": "go and get you a real one", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716453896206422018", "id": 716453896206422018, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 02:34:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473581480194048, "timestamp_ms": "1459655587917", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/zurfav/status/716453896206422018", "indices": [7, 30], "display_url": "twitter.com/zurfav/status/\u2026", "url": "https://t.co/4GkhuQm3X2"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "in", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716453896206422018, "created_at": "Sun Apr 03 03:53:07 +0000 2016", "coordinates": null, "quoted_status_id_str": "716453896206422018", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2410082796/1455767751", "description": "sweet Jesus on ice skates.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "pheonix, Arizona", "follow_request_sent": null, "followers_count": 473, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/700166812793643008/RfybY8VY_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 345, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2410082796", "protected": false, "id": 2410082796, "favourites_count": 2438, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "CundaryNick", "profile_image_url": "http://pbs.twimg.com/profile_images/700166812793643008/RfybY8VY_normal.jpg", "lang": "en", "created_at": "Tue Mar 25 04:45:09 +0000 2014", "profile_use_background_image": true, "name": "nicholas", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 3707, "is_translator": false}, "text": "Wow", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473586588889089", "id": 716473586588889089, "timestamp_ms": "1459655589135", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:53:09 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/614567911/1459122397", "description": "Loading | sc: t_knightt", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "KHS", "follow_request_sent": null, "followers_count": 1594, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715430991087534080/MsB1vY2j_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000079537293/b44ea2058dc419889d17ae89338cfa25.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 1096, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000079537293/b44ea2058dc419889d17ae89338cfa25.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "614567911", "protected": false, "id": 614567911, "favourites_count": 22705, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Trigidy_Troy24", "profile_image_url": "http://pbs.twimg.com/profile_images/715430991087534080/MsB1vY2j_normal.jpg", "lang": "en", "created_at": "Thu Jun 21 20:49:44 +0000 2012", "profile_use_background_image": true, "name": "Trigidy", "url": "http://youtu.be/qSq4BvdztfY", "following": null, "profile_link_color": "0084B4", "statuses_count": 25530, "is_translator": false}, "text": "if you can keep a snap streak w me for 100 days I'll love u 5ever", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473599792549888", "id": 716473599792549888, "timestamp_ms": "1459655592283", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:12 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": true, "user": {"description": "Conservative, Lifetime NRA member. God Guns & Country. I stand with Israel! #NRA,#2A, #MolonLabe.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 86, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/703948122091749376/3-f1RFwr_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 74, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "703946997695270913", "protected": false, "id": 703946997695270913, "favourites_count": 1981, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alvinator4u", "profile_image_url": "http://pbs.twimg.com/profile_images/703948122091749376/3-f1RFwr_normal.jpg", "lang": "en", "created_at": "Sun Feb 28 14:16:57 +0000 2016", "profile_use_background_image": true, "name": "Alvin Sedig", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 1291, "is_translator": false}, "text": "Exactly! https://t.co/bfgh4pIIOj", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473609225527296", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter Web Client", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/2figQnPNGK", "sizes": {"large": {"w": 557, "resize": "fit", "h": 320}, "small": {"w": 340, "resize": "fit", "h": 195}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 557, "resize": "fit", "h": 320}}, "type": "photo", "expanded_url": "http://twitter.com/LindaSuhler/status/716470148383674368/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFpzaSUYAICl3t.jpg", "indices": [113, 136], "id": 716470147679019010, "id_str": "716470147679019010", "display_url": "pic.twitter.com/2figQnPNGK", "media_url": "http://pbs.twimg.com/media/CfFpzaSUYAICl3t.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/347627434/1458748108", "description": "Support Donald Trump for President! AMERICA FIRST Christian supports Family~Constitution~Capitalism~ 2A~NRA~Military~Police~Israel #SecureTheBorder #TeamTrump", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "3B94D9", "verified": false, "location": "God Bless America!", "follow_request_sent": null, "followers_count": 212306, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/695707690052378625/hFDUabnq_normal.png", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691013490786480128/DOyk-OXN.png", "default_profile_image": false, "notifications": null, "listed_count": 1808, "friends_count": 133367, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691013490786480128/DOyk-OXN.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "347627434", "protected": false, "id": 347627434, "favourites_count": 13860, "profile_sidebar_fill_color": "A0C5C7", "screen_name": "LindaSuhler", "profile_image_url": "http://pbs.twimg.com/profile_images/695707690052378625/hFDUabnq_normal.png", "lang": "en", "created_at": "Wed Aug 03 03:00:30 +0000 2011", "profile_use_background_image": true, "name": "Linda Suhler, Ph.D.", "url": "http://www.facebook.com/LindaCSuhler", "following": null, "profile_link_color": "DD2E44", "statuses_count": 161467, "is_translator": false}, "text": "Mad, GOP?\nYou haven't seen us mad yet.\nYou will.\n\u2714\ufe0f VOTE #Trump2016 #Wisconsin\n#WIPrimary\n#MakeAmericaGreatAgain https://t.co/2figQnPNGK", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716470148383674368", "id": 716470148383674368, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [57, 67], "text": "Trump2016"}, {"indices": [68, 78], "text": "Wisconsin"}, {"indices": [79, 89], "text": "WIPrimary"}, {"indices": [90, 112], "text": "MakeAmericaGreatAgain"}], "media": [{"url": "https://t.co/2figQnPNGK", "sizes": {"large": {"w": 557, "resize": "fit", "h": 320}, "small": {"w": 340, "resize": "fit", "h": 195}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 557, "resize": "fit", "h": 320}}, "type": "photo", "expanded_url": "http://twitter.com/LindaSuhler/status/716470148383674368/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFpzaSUYAICl3t.jpg", "indices": [113, 136], "id": 716470147679019010, "id_str": "716470147679019010", "display_url": "pic.twitter.com/2figQnPNGK", "media_url": "http://pbs.twimg.com/media/CfFpzaSUYAICl3t.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:39:29 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473609225527296, "timestamp_ms": "1459655594532", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/lindasuhler/status/716470148383674368", "indices": [9, 32], "display_url": "twitter.com/lindasuhler/st\u2026", "url": "https://t.co/bfgh4pIIOj"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716470148383674368, "created_at": "Sun Apr 03 03:53:14 +0000 2016", "coordinates": null, "quoted_status_id_str": "716470148383674368", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3195978835/1456102451", "description": "my world isn't falling apart.. it's falling into place.", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 362, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710509214876053504/_pP2mJno_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 504, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3195978835", "protected": false, "id": 3195978835, "favourites_count": 1619, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "alexandraanay17", "profile_image_url": "http://pbs.twimg.com/profile_images/710509214876053504/_pP2mJno_normal.jpg", "lang": "en", "created_at": "Fri May 15 04:42:55 +0000 2015", "profile_use_background_image": true, "name": "Alex", "url": "https://www.instagram.com/_alexanaya/", "following": null, "profile_link_color": "0084B4", "statuses_count": 7546, "is_translator": false}, "text": "My favoriteeeeee \ud83d\udc96 https://t.co/GHRpa3AScc", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473632822681600", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/Il4kBZIq6K", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 640, "resize": "fit", "h": 360}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/beautfilms/status/692735127592529921/photo/1", "media_url_https": "https://pbs.twimg.com/media/CZ0W5bAWkAAHjcM.jpg", "indices": [26, 49], "id": 692735093442514944, "id_str": "692735093442514944", "display_url": "pic.twitter.com/Il4kBZIq6K", "media_url": "http://pbs.twimg.com/media/CZ0W5bAWkAAHjcM.jpg"}, {"url": "https://t.co/Il4kBZIq6K", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 735, "resize": "fit", "h": 413}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 337}}, "type": "photo", "expanded_url": "http://twitter.com/beautfilms/status/692735127592529921/photo/1", "media_url_https": "https://pbs.twimg.com/media/CZ0W5bDWcAELJKK.jpg", "indices": [26, 49], "id": 692735093455089665, "id_str": "692735093455089665", "display_url": "pic.twitter.com/Il4kBZIq6K", "media_url": "http://pbs.twimg.com/media/CZ0W5bDWcAELJKK.jpg"}, {"url": "https://t.co/Il4kBZIq6K", "sizes": {"large": {"w": 640, "resize": "fit", "h": 360}, "small": {"w": 340, "resize": "fit", "h": 191}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/beautfilms/status/692735127592529921/photo/1", "media_url_https": "https://pbs.twimg.com/media/CZ0W5cNWkAAiMHS.jpg", "indices": [26, 49], "id": 692735093765476352, "id_str": "692735093765476352", "display_url": "pic.twitter.com/Il4kBZIq6K", "media_url": "http://pbs.twimg.com/media/CZ0W5cNWkAAiMHS.jpg"}, {"url": "https://t.co/Il4kBZIq6K", "sizes": {"large": {"w": 640, "resize": "fit", "h": 360}, "small": {"w": 340, "resize": "fit", "h": 191}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/beautfilms/status/692735127592529921/photo/1", "media_url_https": "https://pbs.twimg.com/media/CZ0W5cQWkAAhPhd.jpg", "indices": [26, 49], "id": 692735093778059264, "id_str": "692735093778059264", "display_url": "pic.twitter.com/Il4kBZIq6K", "media_url": "http://pbs.twimg.com/media/CZ0W5cQWkAAhPhd.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3319545392/1452572435", "description": "the most beautiful films in history *content posted is not owned* check out the best movie blog below", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Turn on my notifications ", "follow_request_sent": null, "followers_count": 200740, "contributors_enabled": false, "geo_enabled": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/690231212460392449/wLyqqamx_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 173, "friends_count": 183, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "3319545392", "protected": false, "id": 3319545392, "favourites_count": 7, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "beautfilms", "profile_image_url": "http://pbs.twimg.com/profile_images/690231212460392449/wLyqqamx_normal.jpg", "lang": "en", "created_at": "Wed Aug 19 03:08:01 +0000 2015", "profile_use_background_image": true, "name": "Beautiful Films", "url": "http://filmscup.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 341, "is_translator": false}, "text": "The Little Rascals (1994) https://t.co/Il4kBZIq6K", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "692735127592529921", "id": 692735127592529921, "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/Il4kBZIq6K", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 640, "resize": "fit", "h": 360}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/beautfilms/status/692735127592529921/photo/1", "media_url_https": "https://pbs.twimg.com/media/CZ0W5bAWkAAHjcM.jpg", "indices": [26, 49], "id": 692735093442514944, "id_str": "692735093442514944", "display_url": "pic.twitter.com/Il4kBZIq6K", "media_url": "http://pbs.twimg.com/media/CZ0W5bAWkAAHjcM.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Thu Jan 28 15:44:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473632822681600, "timestamp_ms": "1459655600158", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/beautfilms/status/692735127592529921", "indices": [19, 42], "display_url": "twitter.com/beautfilms/sta\u2026", "url": "https://t.co/GHRpa3AScc"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 692735127592529921, "created_at": "Sun Apr 03 03:53:20 +0000 2016", "coordinates": null, "quoted_status_id_str": "692735127592529921", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/611865204/1427756643", "description": "One day Im going to be somebody, until then I Hustle. Work Smarter Not Harder. Million Dollar Dreams. The World Is Yours Licensed Realtor,AZ #MoneyTeam #RIPLisa", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "slump city, slumpville", "follow_request_sent": null, "followers_count": 1218, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709606423882178563/vwmomkGn_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 537, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "611865204", "protected": false, "id": 611865204, "favourites_count": 50238, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "KPhilipsDoinWrK", "profile_image_url": "http://pbs.twimg.com/profile_images/709606423882178563/vwmomkGn_normal.jpg", "lang": "en", "created_at": "Mon Jun 18 15:58:24 +0000 2012", "profile_use_background_image": true, "name": "TheWolfofMckellips", "url": "http://youtu.be/kILVFRlUtT8", "following": null, "profile_link_color": "0084B4", "statuses_count": 36732, "is_translator": false}, "text": "TOP@GOLF GILVERT!!!", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473636207591429", "id": 716473636207591429, "timestamp_ms": "1459655600965", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:20 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716455357418070016", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2685836209", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1514731248/1458721698", "description": "|avid tea drinker|musical theatre|yay hamlet!|who lives, who dies, who tells your story|#FeeltheBurn|", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 313, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715784870954446851/DzyPCH0w_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 137, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "1514731248", "protected": false, "id": 1514731248, "favourites_count": 7701, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "TheSophieChavez", "profile_image_url": "http://pbs.twimg.com/profile_images/715784870954446851/DzyPCH0w_normal.jpg", "lang": "en", "created_at": "Thu Jun 13 23:40:33 +0000 2013", "profile_use_background_image": true, "name": "sophie", "url": "http://sunkissed-peach.tumblr.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 11483, "is_translator": false}, "text": "@coolcatsantana Santana I love you\ud83d\ude2d\u2764\ufe0f", "retweeted": false, "in_reply_to_screen_name": "coolcatsantana", "id_str": "716473644428361729", "id": 716473644428361729, "timestamp_ms": "1459655602925", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Santana", "indices": [0, 15], "id": 2685836209, "screen_name": "coolcatsantana", "id_str": "2685836209"}], "hashtags": []}, "in_reply_to_user_id": 2685836209, "favorite_count": 0, "in_reply_to_status_id": 716455357418070016, "lang": "en", "created_at": "Sun Apr 03 03:53:22 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Maricopa, AZ", "place_type": "city", "attributes": {}, "name": "Maricopa", "country": "United States", "id": "001b67fd5761210e", "bounding_box": {"coordinates": [[[-112.079946, 33.029009], [-112.079946, 33.087983], [-111.944584, 33.087983], [-111.944584, 33.029009]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/001b67fd5761210e.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3936339913/1459524109", "description": "5'5 with a bad attitude and positive vibes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "somewhere over the rainbow", "follow_request_sent": null, "followers_count": 374, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716076730046255104/9dgs8APJ_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 284, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3936339913", "protected": false, "id": 3936339913, "favourites_count": 9008, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "mxdsl", "profile_image_url": "http://pbs.twimg.com/profile_images/716076730046255104/9dgs8APJ_normal.jpg", "lang": "en", "created_at": "Sun Oct 18 13:26:08 +0000 2015", "profile_use_background_image": true, "name": "maty", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 8974, "is_translator": false}, "text": "THIS BITCH SAID \"it's so hot it was 79\u00b0\" BITCH WTF?!?!??", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473656285614081", "id": 716473656285614081, "timestamp_ms": "1459655605752", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:25 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/227811593/1394918628", "description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Los angeles ca", "follow_request_sent": null, "followers_count": 93, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/677259886938357761/-i9YoUFd_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/182704767/visiting_byron_and_stasia3.jpg", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 189, "utc_offset": null, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/182704767/visiting_byron_and_stasia3.jpg", "time_zone": null, "profile_text_color": "333333", "id_str": "227811593", "protected": false, "id": 227811593, "favourites_count": 200, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Byronmerritt12", "profile_image_url": "http://pbs.twimg.com/profile_images/677259886938357761/-i9YoUFd_normal.jpg", "lang": "en", "created_at": "Fri Dec 17 21:54:48 +0000 2010", "profile_use_background_image": true, "name": "Byron Merritt", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 873, "is_translator": false}, "text": "Cliff jumping lol georgeabarca @ Grand Canyon West https://t.co/7GsdFsOk6J", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473658026418177", "id": 716473658026418177, "timestamp_ms": "1459655606167", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuUXDeJRHf/", "indices": [51, 74], "display_url": "instagram.com/p/BDuUXDeJRHf/", "url": "https://t.co/7GsdFsOk6J"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:26 +0000 2016", "coordinates": {"coordinates": [-113.80416667, 36.00444444], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [36.00444444, -113.80416667], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/253816652/1459452793", "description": "\u2022Every star may be a sun to someone\u2022. \u2022Love you forever TJA\u2022", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": true, "profile_background_color": "642D8B", "verified": false, "location": "Scottsdale, AZ", "follow_request_sent": null, "followers_count": 566, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715622999655784448/rlKs4OeA_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 8, "friends_count": 255, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "time_zone": "Arizona", "profile_text_color": "3D1957", "id_str": "253816652", "protected": false, "id": 253816652, "favourites_count": 19503, "profile_sidebar_fill_color": "7AC3EE", "screen_name": "Kennzess", "profile_image_url": "http://pbs.twimg.com/profile_images/715622999655784448/rlKs4OeA_normal.jpg", "lang": "en", "created_at": "Fri Feb 18 01:10:21 +0000 2011", "profile_use_background_image": false, "name": "Kenzie\u2765", "url": null, "following": null, "profile_link_color": "FF0000", "statuses_count": 29930, "is_translator": false}, "text": "Ratchet city", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473659569754112", "id": 716473659569754112, "timestamp_ms": "1459655606535", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "715970124910473216", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2356620036", "truncated": false, "source": "Twitter for Android", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 30, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/678463367187574788/vckKryp9_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 43, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4609905738", "protected": false, "id": 4609905738, "favourites_count": 598, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "JavierCabarrub1", "profile_image_url": "http://pbs.twimg.com/profile_images/678463367187574788/vckKryp9_normal.jpg", "lang": "en", "created_at": "Sun Dec 20 06:28:38 +0000 2015", "profile_use_background_image": true, "name": "Javier sanchez", "url": null, "following": null, "profile_link_color": "2B7BB9", "statuses_count": 468, "is_translator": false}, "text": "@bahama_bleu @KingDruuw2U nixcewherayup", "retweeted": false, "in_reply_to_screen_name": "bahama_bleu", "id_str": "716473659854983169", "id": 716473659854983169, "timestamp_ms": "1459655606603", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "bahama bleu", "indices": [0, 12], "id": 2356620036, "screen_name": "bahama_bleu", "id_str": "2356620036"}, {"name": "LEGALIZE BLACK", "indices": [13, 25], "id": 633471635, "screen_name": "KingDruuw2U", "id_str": "633471635"}], "hashtags": []}, "in_reply_to_user_id": 2356620036, "favorite_count": 0, "in_reply_to_status_id": 715970124910473216, "lang": "en", "created_at": "Sun Apr 03 03:53:26 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/446632096/1458576631", "description": "bye", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "w/ chris brown ", "follow_request_sent": null, "followers_count": 560, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/714578706061266944/ukMBy6sS_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/638472584/9wtyf8urxpacj971u62u.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 490, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/638472584/9wtyf8urxpacj971u62u.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "446632096", "protected": false, "id": 446632096, "favourites_count": 14521, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "essenceeeeeeee_", "profile_image_url": "http://pbs.twimg.com/profile_images/714578706061266944/ukMBy6sS_normal.jpg", "lang": "en", "created_at": "Sun Dec 25 23:59:51 +0000 2011", "profile_use_background_image": true, "name": "eazy e", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 69834, "is_translator": false}, "text": "got a call back \ud83d\ude0c", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473676548341760", "id": 716473676548341760, "timestamp_ms": "1459655610583", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:30 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/0r0BuoSPDJ", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/PeterGConrad/status/716473689672265728/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFs_34VIAUFC-f.jpg", "indices": [84, 107], "id": 716473660316393477, "id_str": "716473660316393477", "display_url": "pic.twitter.com/0r0BuoSPDJ", "media_url": "http://pbs.twimg.com/media/CfFs_34VIAUFC-f.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/713353081874939908/1459451721", "description": null, "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "FF691F", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 11, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713384268886646784/Qe6lpuW4_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/715617190066667521/Xv-mvxKr.jpg", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 77, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/715617190066667521/Xv-mvxKr.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "000000", "id_str": "713353081874939908", "protected": false, "id": 713353081874939908, "favourites_count": 4, "profile_sidebar_fill_color": "000000", "screen_name": "PeterGConrad", "profile_image_url": "http://pbs.twimg.com/profile_images/713384268886646784/Qe6lpuW4_normal.jpg", "lang": "en", "created_at": "Fri Mar 25 13:13:23 +0000 2016", "profile_use_background_image": true, "name": "Peter G Conrad", "url": null, "following": null, "profile_link_color": "91D2FA", "statuses_count": 10, "is_translator": false}, "text": "Getting the word out at the Smart https://t.co/z6nHQgq79a booth #APA16 #smartgrowth https://t.co/0r0BuoSPDJ", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473689672265728", "id": 716473689672265728, "timestamp_ms": "1459655613712", "entities": {"symbols": [], "urls": [{"expanded_url": "http://Growth.org", "indices": [34, 57], "display_url": "Growth.org", "url": "https://t.co/z6nHQgq79a"}], "user_mentions": [], "hashtags": [{"indices": [64, 70], "text": "APA16"}, {"indices": [71, 83], "text": "smartgrowth"}], "media": [{"url": "https://t.co/0r0BuoSPDJ", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/PeterGConrad/status/716473689672265728/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFs_34VIAUFC-f.jpg", "indices": [84, 107], "id": 716473660316393477, "id_str": "716473660316393477", "display_url": "pic.twitter.com/0r0BuoSPDJ", "media_url": "http://pbs.twimg.com/media/CfFs_34VIAUFC-f.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:33 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/4754085798/1459122846", "description": "- Journalism | Travel | Outdoors | ASU - Walter Cronkite School of Journalism and Mass Communication", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "F5F8FA", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 83, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/708097033043709953/OJ21OA0j_normal.jpg", "default_profile": true, "profile_background_image_url_https": "", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 251, "utc_offset": null, "profile_background_image_url": "", "time_zone": null, "profile_text_color": "333333", "id_str": "4754085798", "protected": false, "id": 4754085798, "favourites_count": 0, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "SarabethHenne", "profile_image_url": "http://pbs.twimg.com/profile_images/708097033043709953/OJ21OA0j_normal.jpg", "lang": "en", "created_at": "Wed Jan 13 17:37:31 +0000 2016", "profile_use_background_image": true, "name": "Sarabeth Henne", "url": "https://sarabethsstoryshelf.wordpress.com/category/home/", "following": null, "profile_link_color": "2B7BB9", "statuses_count": 98, "is_translator": false}, "text": "Two minutes away from the third period of the #CapsYotes starting #PackPrideNight", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473693258575872", "id": 716473693258575872, "timestamp_ms": "1459655614567", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [46, 56], "text": "CapsYotes"}, {"indices": [66, 81], "text": "PackPrideNight"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:34 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/440533540/1385359050", "description": "Older women be like damn you mature.", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 752, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711799981972127744/T8CtiBtP_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/700708534/4c397cf0e57e2dcb64bbdbafd6aba3a6.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 17, "friends_count": 993, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/700708534/4c397cf0e57e2dcb64bbdbafd6aba3a6.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "440533540", "protected": false, "id": 440533540, "favourites_count": 16636, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "edgar_gumby", "profile_image_url": "http://pbs.twimg.com/profile_images/711799981972127744/T8CtiBtP_normal.jpg", "lang": "en", "created_at": "Mon Dec 19 03:38:49 +0000 2011", "profile_use_background_image": true, "name": "Edgar", "url": null, "following": null, "profile_link_color": "DD2E44", "statuses_count": 46110, "is_translator": false}, "text": "Berco to AZ! https://t.co/FQNMtGaC5g", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473694575415296", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "possibly_sensitive": false, "place": null, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/237965441/1412631801", "description": "Deuce \u270c\ufe0f: Arizona State", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Scottsdale, AZ", "follow_request_sent": null, "followers_count": 12028, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/541103848081747968/3uzOf_Lu_normal.jpeg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 96, "friends_count": 864, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "237965441", "protected": false, "id": 237965441, "favourites_count": 2067, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "MikeBerco", "profile_image_url": "http://pbs.twimg.com/profile_images/541103848081747968/3uzOf_Lu_normal.jpeg", "lang": "en", "created_at": "Fri Jan 14 01:51:21 +0000 2011", "profile_use_background_image": true, "name": "Michael Bercovici", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 4634, "is_translator": false}, "text": "Don't let your talent take you where your character can't keep you \u261d\ud83c\udffc\ufe0f https://t.co/EvzuKcBIxl", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473427901620224", "id": 716473427901620224, "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/nfl/status/716471560501137408", "indices": [71, 94], "display_url": "twitter.com/nfl/status/716\u2026", "url": "https://t.co/EvzuKcBIxl"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "en", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716471560501137408, "created_at": "Sun Apr 03 03:52:31 +0000 2016", "coordinates": null, "quoted_status_id_str": "716471560501137408", "retweet_count": 0, "geo": null}, "id": 716473694575415296, "timestamp_ms": "1459655614881", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/mikeberco/status/716473427901620224", "indices": [14, 37], "display_url": "twitter.com/mikeberco/stat\u2026", "url": "https://t.co/FQNMtGaC5g"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "lang": "es", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716473427901620224, "created_at": "Sun Apr 03 03:53:34 +0000 2016", "coordinates": null, "quoted_status_id_str": "716473427901620224", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/383498595/1354764810", "description": "Arrested for what? Being Awesome? #Bills", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Scottsdale, AZ", "follow_request_sent": null, "followers_count": 228, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/707576902039379969/OP0IDGAe_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 1095, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "383498595", "protected": false, "id": 383498595, "favourites_count": 2171, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "TheCMee23", "profile_image_url": "http://pbs.twimg.com/profile_images/707576902039379969/OP0IDGAe_normal.jpg", "lang": "en", "created_at": "Sun Oct 02 00:29:24 +0000 2011", "profile_use_background_image": true, "name": "Chris Meehan", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 13932, "is_translator": false}, "text": ".@Tyler_Lydon14 is going to be an absolute stud as a sophomore. Lydon, Richardson, Roberson, Battle and Moyer is scary #Cuse", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473705199611904", "id": 716473705199611904, "timestamp_ms": "1459655617414", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Tyler Lydon", "indices": [1, 15], "id": 1097103324, "screen_name": "Tyler_Lydon14", "id_str": "1097103324"}], "hashtags": [{"indices": [119, 124], "text": "Cuse"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:37 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/2Xbdp7J5Kd", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 1024, "resize": "fit", "h": 1820}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/juuulzsantana/status/716473707242205184/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFtCcfUIAAY86J.jpg", "indices": [14, 37], "id": 716473704503320576, "id_str": "716473704503320576", "display_url": "pic.twitter.com/2Xbdp7J5Kd", "media_url": "http://pbs.twimg.com/media/CfFtCcfUIAAY86J.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/545641253/1450590750", "description": "no me enganes", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": true, "profile_background_color": "C0DEED", "verified": false, "location": "Madrid, Spain", "follow_request_sent": null, "followers_count": 2710, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "default_profile_image": false, "notifications": null, "listed_count": 60, "friends_count": 742, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534250934/VANZlife.jpg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "545641253", "protected": false, "id": 545641253, "favourites_count": 963, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "juuulzsantana", "profile_image_url": "http://pbs.twimg.com/profile_images/715023172039536640/-GDKUwP1_normal.jpg", "lang": "en", "created_at": "Thu Apr 05 03:05:40 +0000 2012", "profile_use_background_image": true, "name": "juliana santana\u25aa\ufe0f", "url": null, "following": null, "profile_link_color": "9266CC", "statuses_count": 80706, "is_translator": false}, "text": "#TwitpicYaCar https://t.co/2Xbdp7J5Kd", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473707242205184", "id": 716473707242205184, "timestamp_ms": "1459655617901", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [{"indices": [0, 13], "text": "TwitpicYaCar"}], "media": [{"url": "https://t.co/2Xbdp7J5Kd", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 1024, "resize": "fit", "h": 1820}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/juuulzsantana/status/716473707242205184/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFtCcfUIAAY86J.jpg", "indices": [14, 37], "id": 716473704503320576, "id_str": "716473704503320576", "display_url": "pic.twitter.com/2Xbdp7J5Kd", "media_url": "http://pbs.twimg.com/media/CfFtCcfUIAAY86J.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:53:37 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "17454419", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Scottsdale, AZ", "place_type": "city", "attributes": {}, "name": "Scottsdale", "country": "United States", "id": "0a0de7bd49ef942d", "bounding_box": {"coordinates": [[[-111.960775, 33.435864], [-111.960775, 33.842816], [-111.756022, 33.842816], [-111.756022, 33.435864]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/0a0de7bd49ef942d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/14671186/1455763164", "description": "Probably the most laid back guy you'll ever meet. AZ native. Traveling man #shipfam #suckstosuck snapchat:thatiphoneguy Instagram:thatiphoneguy", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": false, "profile_background_color": "131516", "verified": false, "location": "Scottsdale, Az", "follow_request_sent": null, "followers_count": 853, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/711332593594028032/aZiNeDNs_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/222373357/john-fan-2-1920x1200.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 24, "friends_count": 877, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/222373357/john-fan-2-1920x1200.jpeg", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "14671186", "protected": false, "id": 14671186, "favourites_count": 238, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "thatiphoneguy", "profile_image_url": "http://pbs.twimg.com/profile_images/711332593594028032/aZiNeDNs_normal.jpg", "lang": "en", "created_at": "Tue May 06 08:46:54 +0000 2008", "profile_use_background_image": true, "name": "Mark Canenguez", "url": "http://www.thatiphoneguy.com", "following": null, "profile_link_color": "ABB8C2", "statuses_count": 15084, "is_translator": false}, "text": "@GhostAdventures uhhh the Casa Grande, Az episode has my girl and I on the edge of our seat. #GhostAdventures", "retweeted": false, "in_reply_to_screen_name": "GhostAdventures", "id_str": "716473711210049536", "id": 716473711210049536, "timestamp_ms": "1459655618847", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Ghost Adventures", "indices": [0, 16], "id": 17454419, "screen_name": "GhostAdventures", "id_str": "17454419"}], "hashtags": [{"indices": [93, 109], "text": "GhostAdventures"}]}, "in_reply_to_user_id": 17454419, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:38 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/35284508/1455333285", "description": "Young and accomplished", "profile_sidebar_border_color": "181A1E", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": "AZ", "follow_request_sent": null, "followers_count": 375, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709634551652352000/MtBisB_F_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/868529049/7cfcde61ed870dd2f75c1065ccd3e08f.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 3, "friends_count": 353, "utc_offset": -36000, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/868529049/7cfcde61ed870dd2f75c1065ccd3e08f.jpeg", "time_zone": "Hawaii", "profile_text_color": "666666", "id_str": "35284508", "protected": false, "id": 35284508, "favourites_count": 14130, "profile_sidebar_fill_color": "252429", "screen_name": "Zachuiao", "profile_image_url": "http://pbs.twimg.com/profile_images/709634551652352000/MtBisB_F_normal.jpg", "lang": "en", "created_at": "Sat Apr 25 19:09:30 +0000 2009", "profile_use_background_image": true, "name": "VerZache", "url": "http://Instagram.com/zvilly#", "following": null, "profile_link_color": "DD2E44", "statuses_count": 12159, "is_translator": false}, "text": "Where you at? On the way", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473712002732036", "id": 716473712002732036, "timestamp_ms": "1459655619036", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:39 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716468414223519744", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "250903042", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/154985361/1459076340", "description": "#ASU'19 | \u0637\u0627\u0644\u0628 \u0641\u064a \u062c\u0627\u0645\u0639\u0629 \u0623\u0631\u064a\u0632\u0648\u0646\u0627", "profile_sidebar_border_color": "BDDCAD", "profile_background_tile": false, "profile_background_color": "9AE4E8", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 378, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716287249470464001/h2M6W1rF_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 4, "friends_count": 412, "utc_offset": 10800, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "time_zone": "Kuwait", "profile_text_color": "333333", "id_str": "154985361", "protected": false, "id": 154985361, "favourites_count": 191, "profile_sidebar_fill_color": "DDFFCC", "screen_name": "hmk_6", "profile_image_url": "http://pbs.twimg.com/profile_images/716287249470464001/h2M6W1rF_normal.jpg", "lang": "en", "created_at": "Sat Jun 12 19:53:42 +0000 2010", "profile_use_background_image": true, "name": "\u062d\u0645\u0648\u062f \u0627\u0644\u062b\u0646\u064a\u0627\u0646", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 6008, "is_translator": false}, "text": "@MosabALTh \u0647\u0646\u064a \u0648 \u0628\u0647\u0627\u0644\u062d\u0627\u0644\u0647 \u062e\u0635\u0648\u0635\u0627\u064b \u062a\u0639\u0637\u064a\u0647\u0627 \u0627\u0646\u0633\u062d\u0627\u0628 \u062a\u0643\u062a\u064a\u0643\u064a \u0686\u0646\u0643 \u0645\u0627 \u062a\u062f\u0631\u064a \ud83d\ude02\ud83d\ude02", "retweeted": false, "in_reply_to_screen_name": "MosabALTh", "id_str": "716473717753131008", "id": 716473717753131008, "timestamp_ms": "1459655620407", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "\u0645\u0635\u0639\u0628 \u0627\u0644\u0630\u0627\u064a\u062f\u064a \u26c5\ufe0f", "indices": [0, 10], "id": 250903042, "screen_name": "MosabALTh", "id_str": "250903042"}], "hashtags": []}, "in_reply_to_user_id": 250903042, "favorite_count": 0, "in_reply_to_status_id": 716468414223519744, "lang": "ar", "created_at": "Sun Apr 03 03:53:40 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"description": "Pro Wrestler,all around nice guy,when in the ring I'm just a bad attitude waiting for a place to land.willing to take you for a walk on the DarkSide!", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Peoria,AZ", "follow_request_sent": null, "followers_count": 144, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/635875737501732864/FCzjCqQb_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/233351952/wolfpacklogo.jpg", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 300, "utc_offset": -25200, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/233351952/wolfpacklogo.jpg", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "276306784", "protected": false, "id": 276306784, "favourites_count": 931, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "INDYDarkside", "profile_image_url": "http://pbs.twimg.com/profile_images/635875737501732864/FCzjCqQb_normal.jpg", "lang": "en", "created_at": "Sun Apr 03 02:56:53 +0000 2011", "profile_use_background_image": true, "name": "JUST FIGHT!!!!", "url": null, "following": null, "profile_link_color": "009999", "statuses_count": 3680, "is_translator": false}, "text": "Daniel Cormier apologizes to UFC for injury, says he won\u2019t be out for long https://t.co/1UT29D3CW6 via @mmajunkie", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473722895409153", "id": 716473722895409153, "timestamp_ms": "1459655621633", "entities": {"symbols": [], "urls": [{"expanded_url": "https://shar.es/1YQyw0", "indices": [75, 98], "display_url": "shar.es/1YQyw0", "url": "https://t.co/1UT29D3CW6"}], "user_mentions": [{"name": "MMAjunkie", "indices": [103, 113], "id": 27676444, "screen_name": "MMAjunkie", "id_str": "27676444"}], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:41 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/632528087/1458869824", "description": "Don't ever, for any reason, do anything to anyone, for any reason, ever, no matter what. CA\u2708\ufe0fAZ #Loading...", "profile_sidebar_border_color": "000000", "profile_background_tile": false, "profile_background_color": "000000", "verified": false, "location": "Phoenix, AZ", "follow_request_sent": null, "followers_count": 417, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/632425852282667008/8YezXHxZ_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 198, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "000000", "id_str": "632528087", "protected": false, "id": 632528087, "favourites_count": 10400, "profile_sidebar_fill_color": "000000", "screen_name": "AaronCanepa", "profile_image_url": "http://pbs.twimg.com/profile_images/632425852282667008/8YezXHxZ_normal.jpg", "lang": "en", "created_at": "Wed Jul 11 03:07:39 +0000 2012", "profile_use_background_image": false, "name": "A-A-Ron\u2744\ufe0f", "url": null, "following": null, "profile_link_color": "4A913C", "statuses_count": 36708, "is_translator": false}, "text": "Thank God for this haircut\ud83d\ude4f\ud83c\udffc\ud83d\udc87\ud83c\udffc", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473724984172544", "id": 716473724984172544, "timestamp_ms": "1459655622131", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/598841650/1451789633", "description": "GUCCI \u26fd\ufe0fANG. #SavageSzn", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 315, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/692489672249970688/hmcSrJCy_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 1, "friends_count": 231, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "598841650", "protected": false, "id": 598841650, "favourites_count": 7624, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "Alec_williamson", "profile_image_url": "http://pbs.twimg.com/profile_images/692489672249970688/hmcSrJCy_normal.jpg", "lang": "en", "created_at": "Mon Jun 04 01:59:04 +0000 2012", "profile_use_background_image": true, "name": "ALMIGHTY $O", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 5966, "is_translator": false}, "text": "You got it made in that mad house... The fuck you got to be sad bout.", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473726036877312", "id": 716473726036877312, "timestamp_ms": "1459655622382", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:42 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Arizona, USA", "place_type": "admin", "attributes": {}, "name": "Arizona", "country": "United States", "id": "a612c69b44b2e5da", "bounding_box": {"coordinates": [[[-114.818269, 31.332246], [-114.818269, 37.004261], [-109.045153, 37.004261], [-109.045153, 31.332246]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/a612c69b44b2e5da.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3391140325/1459040152", "description": "Deion Warren \u2764\ufe0f", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 204, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/716022215645405185/dpvTog0R_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 140, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "3391140325", "protected": false, "id": 3391140325, "favourites_count": 1359, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "murgiasade", "profile_image_url": "http://pbs.twimg.com/profile_images/716022215645405185/dpvTog0R_normal.jpg", "lang": "en", "created_at": "Sun Aug 30 09:16:16 +0000 2015", "profile_use_background_image": true, "name": "Sade Warren", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 1788, "is_translator": false}, "text": "I can't even get the dee tonight because my husband went home \ud83d\ude12", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473732089315328", "id": 716473732089315328, "timestamp_ms": "1459655623825", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:43 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Instagram", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"description": "My two Children are my WORLD...Christian and Paulina, my partners in crime. HEROES: Mom, Dad, Carlos, Julie,Roman,, and Becca...my Jeannie is my Love. Drums!!", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Chandler, AZ", "follow_request_sent": null, "followers_count": 10, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/650708021824196609/M-ID4a1c_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 95, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "MST", "profile_text_color": "333333", "id_str": "3755101640", "protected": false, "id": 3755101640, "favourites_count": 165, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "gmoisbooboo", "profile_image_url": "http://pbs.twimg.com/profile_images/650708021824196609/M-ID4a1c_normal.jpg", "lang": "en", "created_at": "Fri Oct 02 04:14:35 +0000 2015", "profile_use_background_image": true, "name": "Guillermo Flores", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 312, "is_translator": false}, "text": "My Beautiful Jeannie and I at Christian's dinner\u2764\ufe0f @ Barrio Queen https://t.co/4LYwIRWwAb", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473731720286209", "id": 716473731720286209, "timestamp_ms": "1459655623737", "entities": {"symbols": [], "urls": [{"expanded_url": "https://www.instagram.com/p/BDuUZU-lGuKnfPKHskgPyF9Y6on-g2fTqP5y2A0/", "indices": [66, 89], "display_url": "instagram.com/p/BDuUZU-lGuKn\u2026", "url": "https://t.co/4LYwIRWwAb"}], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:43 +0000 2016", "coordinates": {"coordinates": [-111.7898483, 33.3569756], "type": "Point"}, "retweet_count": 0, "geo": {"coordinates": [33.3569756, -111.7898483], "type": "Point"}}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/2BileDeCr5", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 1024, "resize": "fit", "h": 1820}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/_PrincessTyra/status/716473737558695937/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFtDQOUEAArCwH.jpg", "indices": [3, 26], "id": 716473718390657024, "id_str": "716473718390657024", "display_url": "pic.twitter.com/2BileDeCr5", "media_url": "http://pbs.twimg.com/media/CfFtDQOUEAArCwH.jpg"}, {"url": "https://t.co/2BileDeCr5", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 1024, "resize": "fit", "h": 1820}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/_PrincessTyra/status/716473737558695937/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFtDQQVIAA1T1y.jpg", "indices": [3, 26], "id": 716473718399115264, "id_str": "716473718399115264", "display_url": "pic.twitter.com/2BileDeCr5", "media_url": "http://pbs.twimg.com/media/CfFtDQQVIAA1T1y.jpg"}]}, "place": {"full_name": "Sapporo", "place_type": "poi", "attributes": {}, "name": "Sapporo", "country": "United States", "id": "07d9c92943888005", "bounding_box": {"coordinates": [[[-111.926254, 33.616472], [-111.926254, 33.616472], [-111.926254, 33.616472], [-111.926254, 33.616472]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/07d9c92943888005.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/1718251531/1459158588", "description": "\u2764\ufe0fXavier's ma boo\u2764\ufe0f", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 644, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/715394548524953601/uxEHfTvE_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 0, "friends_count": 593, "utc_offset": -36000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Hawaii", "profile_text_color": "333333", "id_str": "1718251531", "protected": false, "id": 1718251531, "favourites_count": 1094, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "_PrincessTyra", "profile_image_url": "http://pbs.twimg.com/profile_images/715394548524953601/uxEHfTvE_normal.jpg", "lang": "en", "created_at": "Sun Sep 01 07:46:28 +0000 2013", "profile_use_background_image": true, "name": "T- Nasty", "url": "http://princesstyraaa.tumblr.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 3169, "is_translator": false}, "text": "\ud83d\ude08\ud83d\udc51 https://t.co/2BileDeCr5", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473737558695937", "id": 716473737558695937, "timestamp_ms": "1459655625129", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/2BileDeCr5", "sizes": {"small": {"w": 340, "resize": "fit", "h": 604}, "large": {"w": 1024, "resize": "fit", "h": 1820}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 1067}}, "type": "photo", "expanded_url": "http://twitter.com/_PrincessTyra/status/716473737558695937/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFtDQOUEAArCwH.jpg", "indices": [3, 26], "id": 716473718390657024, "id_str": "716473718390657024", "display_url": "pic.twitter.com/2BileDeCr5", "media_url": "http://pbs.twimg.com/media/CfFtDQOUEAArCwH.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:53:45 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Tempe, AZ", "place_type": "city", "attributes": {}, "name": "Tempe", "country": "United States", "id": "7cb7440bcf83d464", "bounding_box": {"coordinates": [[[-111.979047, 33.319945], [-111.979047, 33.465823], [-111.877237, 33.465823], [-111.877237, 33.319945]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/7cb7440bcf83d464.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/495452283/1447797468", "description": "California || Arizona State || Alpha Chi", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 566, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/699058441382309888/gr-68Ewx_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 5, "friends_count": 336, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "495452283", "protected": false, "id": 495452283, "favourites_count": 8719, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "kaitlin_healy", "profile_image_url": "http://pbs.twimg.com/profile_images/699058441382309888/gr-68Ewx_normal.jpg", "lang": "en", "created_at": "Sat Feb 18 00:10:11 +0000 2012", "profile_use_background_image": true, "name": "kate healy", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 6274, "is_translator": false}, "text": "DON'T WATCH THE LAST SONG UNLESS YOU WANT TO BALL YOUR EYES OUT \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\udc94", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473750753902592", "id": 716473750753902592, "timestamp_ms": "1459655628275", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716473476425457664", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "2980348899", "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/369042017/1441259923", "description": "22 seasons ago we've brought you news music gaming and more we are committed to continue to do this so please celebrate with us through June 2016", "profile_sidebar_border_color": "EEEEEE", "profile_background_tile": true, "profile_background_color": "131516", "verified": false, "location": "Phoenix Arizona", "follow_request_sent": null, "followers_count": 410, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/453062587316314112/No5YZz-3_normal.jpeg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 9, "friends_count": 938, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "369042017", "protected": false, "id": 369042017, "favourites_count": 525, "profile_sidebar_fill_color": "EFEFEF", "screen_name": "thedjwillyshow", "profile_image_url": "http://pbs.twimg.com/profile_images/453062587316314112/No5YZz-3_normal.jpeg", "lang": "en", "created_at": "Tue Sep 06 17:23:12 +0000 2011", "profile_use_background_image": true, "name": "DJ WILLY SHOW (PHX)", "url": "http://www.youtube.com/willynewsps3q", "following": null, "profile_link_color": "009999", "statuses_count": 19872, "is_translator": false}, "text": "@petracat09 how's it going", "retweeted": false, "in_reply_to_screen_name": "petracat09", "id_str": "716473751496339456", "id": 716473751496339456, "timestamp_ms": "1459655628452", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "PetraCat", "indices": [0, 11], "id": 2980348899, "screen_name": "petracat09", "id_str": "2980348899"}], "hashtags": []}, "in_reply_to_user_id": 2980348899, "favorite_count": 0, "in_reply_to_status_id": 716473476425457664, "lang": "en", "created_at": "Sun Apr 03 03:53:48 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/2251416384/1412454971", "description": "DVCC, DV Track and Field #brotherhood, Junior, Keeping the streets clean, #RIP Marcus #sub17 sub450 goals SEAHAWKS, 4X8 is life, S\u049cITTL\u03a3S, LDG, Golf", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Gotham City", "follow_request_sent": null, "followers_count": 335, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/713538247843045377/QpmMe35X_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 14, "friends_count": 2092, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": null, "profile_text_color": "333333", "id_str": "2251416384", "protected": false, "id": 2251416384, "favourites_count": 3815, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "darkknightdylan", "profile_image_url": "http://pbs.twimg.com/profile_images/713538247843045377/QpmMe35X_normal.jpg", "lang": "en", "created_at": "Wed Dec 18 04:39:26 +0000 2013", "profile_use_background_image": true, "name": "D\u03a8L\u0394\u03a0 M\u0394X\u0428\u03a3LLJ\u03a3LI\u03a0\u03a3\u049c", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 6413, "is_translator": false}, "text": "Too Turnt to do a push-up", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473761457766401", "id": 716473761457766401, "timestamp_ms": "1459655630827", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:50 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "237965441", "truncated": false, "source": "Twitter for Android", "contributors": null, "possibly_sensitive": false, "place": {"full_name": "Chandler, AZ", "place_type": "city", "attributes": {}, "name": "Chandler", "country": "United States", "id": "52445186970bafb3", "bounding_box": {"coordinates": [[[-111.972849, 33.203761], [-111.972849, 33.36114], [-111.788898, 33.36114], [-111.788898, 33.203761]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/52445186970bafb3.json"}, "is_quote_status": true, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3976383494/1459516340", "description": "Welcome to the Home of the New Devils Order. This is your news source for all things Arizona State Sun Devils. (Not associated w/Arizona State, just a fan)", "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Tempe, AZ", "follow_request_sent": null, "followers_count": 821, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/710800324726890497/Lmr4SoUE_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 13, "friends_count": 1555, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "3976383494", "protected": false, "id": 3976383494, "favourites_count": 585, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "NewDevilsOrder", "profile_image_url": "http://pbs.twimg.com/profile_images/710800324726890497/Lmr4SoUE_normal.jpg", "lang": "en", "created_at": "Thu Oct 22 04:27:04 +0000 2015", "profile_use_background_image": true, "name": "New Devils Order", "url": "http://www.redbubble.com/people/pixelmandan/works/17857981-ndo-maroon", "following": null, "profile_link_color": "0084B4", "statuses_count": 4218, "is_translator": false}, "text": "@MikeBerco #ForksUp https://t.co/Cwqr53CsLL", "retweeted": false, "in_reply_to_screen_name": "MikeBerco", "id_str": "716473761520717824", "quoted_status": {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Spredfast app", "contributors": null, "extended_entities": {"media": [{"url": "https://t.co/Wor6NR5b7b", "sizes": {"small": {"w": 340, "resize": "fit", "h": 170}, "large": {"w": 1024, "resize": "fit", "h": 512}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/NFL/status/716471560501137408/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg", "indices": [95, 118], "id": 716471559226048513, "id_str": "716471559226048513", "display_url": "pic.twitter.com/Wor6NR5b7b", "media_url": "http://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg"}]}, "place": null, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/19426551/1455214702", "description": "Official Twitter account of the National Football League.", "profile_sidebar_border_color": "FFFFFF", "profile_background_tile": false, "profile_background_color": "FFFFFF", "verified": true, "location": null, "follow_request_sent": null, "followers_count": 17073279, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/696734415813120000/1QlOcYT7_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/783952246/66e217ec60a9c3c977295fb8b7ae1601.jpeg", "default_profile_image": false, "notifications": null, "listed_count": 44009, "friends_count": 2040, "utc_offset": -14400, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/783952246/66e217ec60a9c3c977295fb8b7ae1601.jpeg", "time_zone": "Eastern Time (US & Canada)", "profile_text_color": "333333", "id_str": "19426551", "protected": false, "id": 19426551, "favourites_count": 1160, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "NFL", "profile_image_url": "http://pbs.twimg.com/profile_images/696734415813120000/1QlOcYT7_normal.jpg", "lang": "en", "created_at": "Sat Jan 24 01:28:06 +0000 2009", "profile_use_background_image": true, "name": "NFL", "url": "http://www.nfl.com", "following": null, "profile_link_color": "0084B4", "statuses_count": 115721, "is_translator": false}, "text": "3 WRs\n2 RBs\n1 TE\n1 QB\nPotential offensive draft steals (via @NFL_CFB): https://t.co/C79BMT5rX8 https://t.co/Wor6NR5b7b", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716471560501137408", "id": 716471560501137408, "entities": {"symbols": [], "urls": [{"expanded_url": "http://on.nfl.com/1PP93dl", "indices": [71, 94], "display_url": "on.nfl.com/1PP93dl", "url": "https://t.co/C79BMT5rX8"}], "user_mentions": [{"name": "CollegeFootball 24/7", "indices": [60, 68], "id": 1895278116, "screen_name": "NFL_CFB", "id_str": "1895278116"}], "hashtags": [], "media": [{"url": "https://t.co/Wor6NR5b7b", "sizes": {"small": {"w": 340, "resize": "fit", "h": 170}, "large": {"w": 1024, "resize": "fit", "h": 512}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 300}}, "type": "photo", "expanded_url": "http://twitter.com/NFL/status/716471560501137408/photo/1", "media_url_https": "https://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg", "indices": [95, 118], "id": 716471559226048513, "id_str": "716471559226048513", "display_url": "pic.twitter.com/Wor6NR5b7b", "media_url": "http://pbs.twimg.com/media/CfFrFktWwAEBe--.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:45:06 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, "id": 716473761520717824, "timestamp_ms": "1459655630842", "entities": {"symbols": [], "urls": [{"expanded_url": "https://twitter.com/NFL/status/716471560501137408", "indices": [20, 43], "display_url": "twitter.com/NFL/status/716\u2026", "url": "https://t.co/Cwqr53CsLL"}], "user_mentions": [{"name": "Michael Bercovici", "indices": [0, 10], "id": 237965441, "screen_name": "MikeBerco", "id_str": "237965441"}], "hashtags": [{"indices": [11, 19], "text": "ForksUp"}]}, "in_reply_to_user_id": 237965441, "lang": "und", "favorite_count": 0, "in_reply_to_status_id": null, "quoted_status_id": 716471560501137408, "created_at": "Sun Apr 03 03:53:50 +0000 2016", "coordinates": null, "quoted_status_id_str": "716471560501137408", "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": "716471104919830528", "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": "55137522", "truncated": false, "source": "Tweetbot for i\u039fS", "contributors": null, "place": {"full_name": "Phoenix AZ", "place_type": "admin", "attributes": {}, "name": "Phoenix AZ", "country": "United States", "id": "ec23ea9761b3c08b", "bounding_box": {"coordinates": [[[-116.458531, 31.920906], [-116.458531, 37.00426], [-108.297027, 37.00426], [-108.297027, 31.920906]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/ec23ea9761b3c08b.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/13678852/1423369060", "description": "Traveling full-time with @emccartie and 3 awesome little kids. Works at @heroku. Part of the @madrockclimbing and @petzl climbing teams.", "profile_sidebar_border_color": "86A4A6", "profile_background_tile": false, "profile_background_color": "709397", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 1318, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/552135349141385217/3PKtmXP7_normal.png", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 72, "friends_count": 151, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "time_zone": "Pacific Time (US & Canada)", "profile_text_color": "333333", "id_str": "13678852", "protected": false, "id": 13678852, "favourites_count": 21, "profile_sidebar_fill_color": "A0C5C7", "screen_name": "jmccartie", "profile_image_url": "http://pbs.twimg.com/profile_images/552135349141385217/3PKtmXP7_normal.png", "lang": "en", "created_at": "Tue Feb 19 16:51:14 +0000 2008", "profile_use_background_image": true, "name": "Jon McCartie", "url": "http://about.me/jmccartie", "following": null, "profile_link_color": "FF3300", "statuses_count": 24753, "is_translator": false}, "text": "@krainboltgreene Hmmm. Well, we can certainly make sure it\u2019s there. We may need to make it more clear, too. (cc @dickeyxxx)", "retweeted": false, "in_reply_to_screen_name": "krainboltgreene", "id_str": "716473770794434564", "id": 716473770794434564, "timestamp_ms": "1459655633053", "entities": {"symbols": [], "urls": [], "user_mentions": [{"name": "Kurtis", "indices": [0, 16], "id": 55137522, "screen_name": "krainboltgreene", "id_str": "55137522"}, {"name": "Jeff Dickey", "indices": [112, 122], "id": 2432, "screen_name": "dickeyxxx", "id_str": "2432"}], "hashtags": []}, "in_reply_to_user_id": 55137522, "favorite_count": 0, "in_reply_to_status_id": 716471104919830528, "lang": "en", "created_at": "Sun Apr 03 03:53:53 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "possibly_sensitive": false, "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "extended_entities": {"media": [{"video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/716473397224431616/pu/vid/640x360/X7bZukHn0s1MEDQX.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/716473397224431616/pu/pl/A58IWO6hClK7Z_id.m3u8"}, {"content_type": "video/mp4", "bitrate": 2176000, "url": "https://video.twimg.com/ext_tw_video/716473397224431616/pu/vid/1280x720/t8WTQ5L_xhg3FFUZ.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/716473397224431616/pu/pl/A58IWO6hClK7Z_id.mpd"}, {"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/716473397224431616/pu/vid/320x180/bsfSTrzCUytwAa76.mp4"}], "aspect_ratio": [16, 9], "duration_millis": 20029}, "url": "https://t.co/pqQgQmkrN4", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "video", "expanded_url": "http://twitter.com/tribnbad/status/716473776897007616/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716473397224431616/pu/img/O5fI6mFUq9Gn1ozI.jpg", "indices": [0, 23], "id": 716473397224431616, "id_str": "716473397224431616", "display_url": "pic.twitter.com/pqQgQmkrN4", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716473397224431616/pu/img/O5fI6mFUq9Gn1ozI.jpg"}]}, "place": {"full_name": "Phoenix, AZ", "place_type": "city", "attributes": {}, "name": "Phoenix", "country": "United States", "id": "5c62ffb0f0f3479d", "bounding_box": {"coordinates": [[[-112.323914, 33.29026], [-112.323914, 33.815465], [-111.925439, 33.815465], [-111.925439, 33.29026]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/5c62ffb0f0f3479d.json"}, "is_quote_status": false, "user": {"description": null, "profile_sidebar_border_color": "C0DEED", "profile_background_tile": false, "profile_background_color": "C0DEED", "verified": false, "location": "Peoria, Az", "follow_request_sent": null, "followers_count": 28, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/697650099610996736/GCtupYel_normal.jpg", "default_profile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 116, "utc_offset": -25200, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "time_zone": "Arizona", "profile_text_color": "333333", "id_str": "29530807", "protected": false, "id": 29530807, "favourites_count": 34, "profile_sidebar_fill_color": "DDEEF6", "screen_name": "tribnbad", "profile_image_url": "http://pbs.twimg.com/profile_images/697650099610996736/GCtupYel_normal.jpg", "lang": "en", "created_at": "Tue Apr 07 20:06:37 +0000 2009", "profile_use_background_image": true, "name": "Sean Salcido", "url": null, "following": null, "profile_link_color": "0084B4", "statuses_count": 76, "is_translator": false}, "text": "https://t.co/pqQgQmkrN4", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473776897007616", "id": 716473776897007616, "timestamp_ms": "1459655634508", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": [], "media": [{"url": "https://t.co/pqQgQmkrN4", "sizes": {"small": {"w": 340, "resize": "fit", "h": 191}, "large": {"w": 1024, "resize": "fit", "h": 576}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "medium": {"w": 600, "resize": "fit", "h": 338}}, "type": "photo", "expanded_url": "http://twitter.com/tribnbad/status/716473776897007616/video/1", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/716473397224431616/pu/img/O5fI6mFUq9Gn1ozI.jpg", "indices": [0, 23], "id": 716473397224431616, "id_str": "716473397224431616", "display_url": "pic.twitter.com/pqQgQmkrN4", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/716473397224431616/pu/img/O5fI6mFUq9Gn1ozI.jpg"}]}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "und", "created_at": "Sun Apr 03 03:53:54 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}, {"in_reply_to_status_id_str": null, "filter_level": "low", "favorited": false, "in_reply_to_user_id_str": null, "truncated": false, "source": "Twitter for iPhone", "contributors": null, "place": {"full_name": "Gilbert, AZ", "place_type": "city", "attributes": {}, "name": "Gilbert", "country": "United States", "id": "006b48995ede9bcc", "bounding_box": {"coordinates": [[[-111.842244, 33.204608], [-111.842244, 33.385822], [-111.634889, 33.385822], [-111.634889, 33.204608]]], "type": "Polygon"}, "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/006b48995ede9bcc.json"}, "is_quote_status": false, "user": {"profile_banner_url": "https://pbs.twimg.com/profile_banners/3131453037/1459580951", "description": "@curvedjason \u2661", "profile_sidebar_border_color": "181A1E", "profile_background_tile": false, "profile_background_color": "1A1B1F", "verified": false, "location": null, "follow_request_sent": null, "followers_count": 273, "contributors_enabled": false, "geo_enabled": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/709657415097065472/T6eu0HiF_normal.jpg", "default_profile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "notifications": null, "listed_count": 2, "friends_count": 220, "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "time_zone": null, "profile_text_color": "666666", "id_str": "3131453037", "protected": false, "id": 3131453037, "favourites_count": 9238, "profile_sidebar_fill_color": "252429", "screen_name": "_haileerose21", "profile_image_url": "http://pbs.twimg.com/profile_images/709657415097065472/T6eu0HiF_normal.jpg", "lang": "en", "created_at": "Fri Apr 03 03:50:29 +0000 2015", "profile_use_background_image": true, "name": "hailee \u2661", "url": null, "following": null, "profile_link_color": "2FC2EF", "statuses_count": 5724, "is_translator": false}, "text": "Where is Jason when I need him the most :(", "retweeted": false, "in_reply_to_screen_name": null, "id_str": "716473797759467520", "id": 716473797759467520, "timestamp_ms": "1459655639482", "entities": {"symbols": [], "urls": [], "user_mentions": [], "hashtags": []}, "in_reply_to_user_id": null, "favorite_count": 0, "in_reply_to_status_id": null, "lang": "en", "created_at": "Sun Apr 03 03:53:59 +0000 2016", "coordinates": null, "retweet_count": 0, "geo": null}]
\ No newline at end of file
diff --git a/view.py b/view.py
new file mode 100644
index 0000000..c0f5913
--- /dev/null
+++ b/view.py
@@ -0,0 +1,231 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+import sys
+import folium
+import io_geojson
+from tweet import *
+from point import *
+from PyQt4 import QtGui, QtCore, QtWebKit
+from point_pattern import *
+
+from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
+#from matplotlib.backends.backend_qt4agg import NavigationToolbar2QTAgg as NavigationToolbar
+import matplotlib.pyplot as plt
+import random
+import time
+
+
+
+class Window(QtGui.QDialog):
+ def __init__(self, parent=None, data=None):
+ super(Window, self).__init__(parent)
+
+ # a figure instance to plot on
+ self.figure = plt.figure()
+ self.data = data
+ # this is the Canvas Widget that displays the `figure`
+ # it takes the `figure` instance as a parameter to __init__
+ self.canvas = FigureCanvas(self.figure)
+
+ # this is the Navigation widget
+ # it takes the Canvas widget and a parent
+ #self.toolbar = NavigationToolbar(self.canvas, self)
+
+ # Just some button connected to `plot` method
+ self.button = QtGui.QPushButton('Plot')
+ self.button.clicked.connect(self.plot)
+
+ # set the layout
+ layout = QtGui.QVBoxLayout()
+ #layout.addWidget(self.toolbar)
+ layout.addWidget(self.canvas)
+ layout.addWidget(self.button)
+ self.setLayout(layout)
+
+ def plot(self):
+ ''' plot some random stuff '''
+ # random data
+ if self.data!=None:
+ data = self.data
+ else:
+ data = [random.random() for i in range(10)]
+
+
+ # create an axis
+ ax = self.figure.add_subplot(111)
+
+ # discards the old graph
+ ax.hold(False)
+
+ # plot data
+ ax.plot(data[0],data[1], '*-')
+
+ # refresh canvas
+ self.canvas.draw()
+
+
+class Example(QtGui.QMainWindow):
+
+ def __init__(self):
+ super(Example, self).__init__()
+
+ self.initUI()
+ self.tweets = []
+ self.current_data=[]
+
+ def initUI(self):
+
+ #self.webView = QtWebKit.QWebView()
+ #first just show a map without marks in the map
+ #the data is the last time i compute the averge of the lat/lon
+ map_osm = folium.Map(location=[33.59359997467155,-111.94546800838894])
+ map_osm.save(r"./map.html")
+
+ self.webView = QtWebKit.QWebView()
+ self.webView.setHtml(open(r"./map.html").read())
+ self.setCentralWidget(self.webView)
+ self.statusBar()
+
+ openFile = QtGui.QAction(QtGui.QIcon('open.png'), 'Open', self)
+ openFile.setShortcut('Ctrl+O')
+ openFile.setStatusTip('Open new File')
+ openFile.triggered.connect(self.showDialog)
+
+
+
+ positive = QtGui.QAction(QtGui.QIcon('positive.png'), 'show positive', self)
+ positive.setStatusTip('Show positive Tweets')
+ positive.triggered.connect(self.show_positive)
+
+ negative = QtGui.QAction(QtGui.QIcon('negative.png'), 'show negative', self)
+ negative.setStatusTip('Show negative Tweets')
+ negative.triggered.connect(self.show_negative)
+
+ neutral = QtGui.QAction(QtGui.QIcon('neutral.png'), 'show neutral', self)
+ neutral.setStatusTip('Show neutral Tweets')
+ neutral.triggered.connect(self.show_neutral)
+
+ mean_dis = QtGui.QAction(QtGui.QIcon('mean_dis.png'), 'show mean_dis', self)
+ mean_dis.setStatusTip('Show mean_dis ')
+ mean_dis.triggered.connect(self.compute_mean_nearest_neighbor_distance)
+
+ compute_g = QtGui.QAction(QtGui.QIcon('mean_dis.png'), 'show compute_g', self)
+ compute_g.setStatusTip('Show compute_g ')
+ compute_g.triggered.connect(self.show_compute_g)
+
+ menubar = self.menuBar()
+ fileMenu = menubar.addMenu('&File')
+ fileMenu.addAction(openFile)
+ fileMenu.addAction(positive)
+ fileMenu.addAction(negative)
+ fileMenu.addAction(neutral)
+ fileMenu.addAction(mean_dis)
+ fileMenu.addAction(compute_g)
+
+ self.setGeometry(300, 300, 750, 650)
+ self.setWindowTitle('WebView')
+ self.show()
+ self.webView.show()
+
+ def showDialog(self):
+
+
+ fname = QtGui.QFileDialog.getOpenFileName(self, 'Open file', '/home')
+ if fname == '':
+ return
+ tweets=io_geojson.read_tweet_json(fname)
+
+ tweets_data=[]
+ for tweet_data in tweets:
+ tweets_data.append(io_geojson.ingest_twitter_data(tweet_data))
+
+ self.tweets = [Tweet(Point(tweet["point"][0],tweet["point"][1]),tweet["text"],tweet["source"],tweet["id_str"],tweet["lang"],tweet["created_time"]) for tweet in tweets_data]
+ self.current_data = self.tweets
+ self.show_map_into_webview(self.current_data ,'All')
+
+ def show_compute_g(self):
+
+ points = [tweet.point for tweet in self.current_data]
+ ppt = PointPattern(points)
+
+ g = ppt.compute_g(len(points))
+
+
+ self.main = Window(data=(len(points),g))
+ self.main.show()
+
+
+
+
+ def show_map_into_webview(self,tweets,flag):
+
+ #compute the mean center of the points.
+ lat_all=[]
+ lon_all=[]
+ for tweet in tweets:
+ lat_all.append(tweet.get_spatial_information()[0])
+ lon_all.append(tweet.get_spatial_information()[1])
+
+ avg_lat=sum(lat_all)/len(lat_all)
+ avg_lon=sum(lon_all)/len(lon_all)
+
+ #set a map with the avg_lat,avg_lon
+ map_1 = folium.Map(location=[avg_lat, avg_lon])
+
+ #set markers in the map
+ for tweet in tweets:
+ folium.Marker(list(tweet.get_spatial_information()), popup=tweet.text).add_to(map_1)
+
+ if flag == 'All':
+ html_path = r'./map.html'
+ elif flag == 'Positive':
+ html_path = r'./map_Positive.html'
+ elif flag == 'Negative':
+ html_path = r'./map_Negative.html'
+ elif flag == 'Neutral':
+ html_path = r'./map_Neutral.html'
+
+ map_1.save(html_path)
+
+ #set the webView with the map html
+ self.webView.setHtml(open(html_path,encoding="utf-8").read())
+ self.webView.show()
+
+ def show_positive(self):
+
+ self.current_data = [tweet for tweet in self.tweets if tweet.point.mark == 'Positive']
+
+ self.show_map_into_webview(self.current_data ,'Positive')
+
+ def show_negative(self):
+
+ self.current_data = [ tweet for tweet in self.tweets if tweet.point.mark == 'Negative']
+
+ self.show_map_into_webview(self.current_data ,'Negative')
+
+
+ def show_neutral(self):
+
+ self.current_data = [ tweet for tweet in self.tweets if tweet.point.mark == 'Neutral']
+
+ self.show_map_into_webview(self.current_data,'Neutral')
+
+ def compute_mean_nearest_neighbor_distance(self):
+
+ points = [tweet.point for tweet in self.current_data]
+ ppt = PointPattern(points)
+ data = ppt.average_nearest_neighbor_distance()
+ print("The mean_nearest_neighbor_distance of the visualized is: "+str(data))
+
+
+
+def main():
+
+ app = QtGui.QApplication(sys.argv)
+ ex = Example()
+ sys.exit(app.exec_())
+
+
+if __name__ == '__main__':
+ main()