diff --git a/DEPLOY.md b/DEPLOY.md new file mode 100644 index 00000000..9ea1e998 --- /dev/null +++ b/DEPLOY.md @@ -0,0 +1,29 @@ +Automating Deployment from DevCS to ACC +--------------------------------------- + +These instructions are a *temporary hack* to support deployment from +DevCS to ACC until built-in and fully integrated support is available +in DevCS. I repeat--this is a temporary hack so please use with caution. + + +You can use `deploy.sh` as a *build step* in a DevCS Maven +build to push a generated application archive to ACC. + +### Usage + +`sh deploy.sh ` + +The `` is assumed to be in the Maven generated `target` folder. + +### Example +`sh deploy.sh jcsdemo888 demouser demopass MyApp myapp-dist.zip` + +Installation +------------ + +Copy `deploy.sh` to the root of your DevCS project and commit to GIT so that it can be called from Maven. + +Disclaimer +========== +Obviously hardcoding credentials is not a real solution but until DevCS +provides built-in deployment this is a workable solution for demos. diff --git a/README.md b/README.md new file mode 100644 index 00000000..b0413425 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +About +===== + +This repository contains the code for the Twitter feed microservice that you will use during the [Oracle Container Native Application Development workshop](http://oracle.github.io/learning-library/workshops/container-native-development). +During the workshop you will Dockerize this Java microservice using Wercker, configure a CI/CD pipeline, and deploy the microservice to Oracle's managed Kubernetes service. + + +Build +===== + +Build the application and the distribution zip file with the build.sh file. It simply runs `mvn clean assembly:assembly`. That will result in a zip file in the target folder that can be uploaded to Java SE CS. + + +Run Locally +=========== + +On successful build, you can run the app with `sh target/bin/start` which is a shell script generated by the Maven build that constructs the correct classpath to dependencies in target/repo. + + +Deploy +====== + +You will create Wercker pipelines to build, publish, and deploy this microservice during the workshop. diff --git a/alpha-office-product-catalog.kubernetes.yml b/alpha-office-product-catalog.kubernetes.yml new file mode 100644 index 00000000..556e4801 --- /dev/null +++ b/alpha-office-product-catalog.kubernetes.yml @@ -0,0 +1,44 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: product-catalog-app + labels: + commit: 48f74f435786d54673ac8c01f06a5fc69fb4b484 +spec: + replicas: 2 + selector: + matchLabels: + app: product-catalog-app + template: + metadata: + labels: + app: product-catalog-app + commit: 48f74f435786d54673ac8c01f06a5fc69fb4b484 + spec: + containers: + - name: product-catalog-app-container + image: derekoneil/alpha-office-product-catalog + imagePullPolicy: Always + ports: + - name: pc-app-port + containerPort: 80 + protocol: TCP + imagePullSecrets: + - name: wercker +--- +apiVersion: v1 +kind: Service +metadata: + name: product-catalog-service + labels: + app: product-catalog-app + commit: 48f74f435786d54673ac8c01f06a5fc69fb4b484 +spec: + ports: + - port: 30000 + targetPort: 80 + selector: + app: product-catalog-app + commit: 48f74f435786d54673ac8c01f06a5fc69fb4b484 + type: LoadBalancer +--- diff --git a/build.sh b/build.sh new file mode 100755 index 00000000..a7e6391f --- /dev/null +++ b/build.sh @@ -0,0 +1,24 @@ +#!/bin/sh +# +#******************************************************************************* +# /* +# * File: build.sh +# * +# * Copyright (c) 2016 Oracle and/or its affiliates. +# * +# * You may not use this file except in compliance with the Universal Permissive +# * License (UPL), Version 1.0 (the "License.") +# * +# * You may obtain a copy of the License at https://opensource.org/licenses/UPL. +# * +# * Unless required by applicable law or agreed to in writing, software distributed +# * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# * CONDITIONS OF ANY KIND, either express or implied. +# * +# * See the License for the specific language governing permissions and limitations +# * under the License. +# */ +# +# @author Phil Chung +#******************************************************************************* +mvn clean assembly:assembly diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 00000000..c8eb8248 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,79 @@ +#!/bin/sh +# +#******************************************************************************* +# /* +# * File: deploy.sh +# * +# * Copyright (c) 2016 Oracle and/or its affiliates. +# * +# * You may not use this file except in compliance with the Universal Permissive +# * License (UPL), Version 1.0 (the "License.") +# * +# * You may obtain a copy of the License at https://opensource.org/licenses/UPL. +# * +# * Unless required by applicable law or agreed to in writing, software distributed +# * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# * CONDITIONS OF ANY KIND, either express or implied. +# * +# * See the License for the specific language governing permissions and limitations +# * under the License. +# */ +# +# @author Phil Chung +#******************************************************************************* + +export ID_DOMAIN=$1 +export USER_ID=$2 +export USER_PASSWORD=$3 +export APP_NAME=$4 +export ARCHIVE_FILE=$5 +export ARCHIVE_LOCAL=target/$ARCHIVE_FILE +export APAAS_HOST=apaas.us.oraclecloud.com + +# CREATE CONTAINER +echo '\n[info] Creating container\n' +curl -i -X PUT \ + -u ${USER_ID}:${USER_PASSWORD} \ + https://${ID_DOMAIN}.storage.oraclecloud.com/v1/Storage-$ID_DOMAIN/$APP_NAME + +# PUT ARCHIVE IN STORAGE CONTAINER +echo '\n[info] Uploading application to storage\n' +curl -i -X PUT \ + -u ${USER_ID}:${USER_PASSWORD} \ + https://${ID_DOMAIN}.storage.oraclecloud.com/v1/Storage-$ID_DOMAIN/$APP_NAME/$ARCHIVE_FILE \ + -T $ARCHIVE_LOCAL + +# See if application exists +let httpCode=`curl -i -X GET \ + -u ${USER_ID}:${USER_PASSWORD} \ + -H "X-ID-TENANT-NAME:${ID_DOMAIN}" \ + -H "Content-Type: multipart/form-data" \ + -sL -w "%{http_code}" \ + https://${APAAS_HOST}/paas/service/apaas/api/v1.1/apps/${ID_DOMAIN}/${APP_NAME} \ + -o /dev/null` + +# If application exists... +if [ $httpCode == 200 ] +then + # Update application + echo '\n[info] Updating application...\n' + curl -i -X PUT \ + -u ${USER_ID}:${USER_PASSWORD} \ + -H "X-ID-TENANT-NAME:${ID_DOMAIN}" \ + -H "Content-Type: multipart/form-data" \ + -F archiveURL=${APP_NAME}/${ARCHIVE_FILE} \ + https://${APAAS_HOST}/paas/service/apaas/api/v1.1/apps/${ID_DOMAIN}/${APP_NAME} +else + # Create application and deploy + echo '\n[info] Creating application...\n' + curl -i -X POST \ + -u ${USER_ID}:${USER_PASSWORD} \ + -H "X-ID-TENANT-NAME:${ID_DOMAIN}" \ + -H "Content-Type: multipart/form-data" \ + -F "name=${APP_NAME}" \ + -F "runtime=java" \ + -F "subscription=Hourly" \ + -F archiveURL=${APP_NAME}/${ARCHIVE_FILE} \ + https://${APAAS_HOST}/paas/service/apaas/api/v1.1/apps/${ID_DOMAIN} +fi +echo '\n[info] Deployment complete\n' diff --git a/kubernetes.yml.template.final b/kubernetes.yml.template.final new file mode 100644 index 00000000..f36faf8c --- /dev/null +++ b/kubernetes.yml.template.final @@ -0,0 +1,56 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: twitter-feed-v2 + labels: + commit: ${WERCKER_GIT_COMMIT} +spec: + replicas: 2 + selector: + matchLabels: + app: twitter-feed + template: + metadata: + labels: + app: twitter-feed + commit: ${WERCKER_GIT_COMMIT} + color: green + spec: + containers: + - name: twitter-feed + image: ${DOCKER_REPO}:${WERCKER_GIT_BRANCH}-${WERCKER_GIT_COMMIT} + imagePullPolicy: Always + ports: + - name: twitter-feed + containerPort: 8080 + protocol: TCP + volumeMounts: + - name: podinfo + mountPath: /tmp + readOnly: false + volumes: + - name: podinfo + downwardAPI: + items: + - path: "labels" + fieldRef: + fieldPath: metadata.labels + imagePullSecrets: + - name: wercker +--- +apiVersion: v1 +kind: Service +metadata: + name: twitter-feed + labels: + app: twitter-feed + commit: ${WERCKER_GIT_COMMIT} +spec: + ports: + - port: 30000 + targetPort: 8080 + selector: + app: twitter-feed + color: green + type: ClusterIP +--- diff --git a/manifest.json b/manifest.json new file mode 100755 index 00000000..2b9c56e2 --- /dev/null +++ b/manifest.json @@ -0,0 +1,6 @@ +{ + "runtime": { + "majorVersion": "8" + }, + "command": "sh target/bin/start" +} diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..f1b913a5 --- /dev/null +++ b/pom.xml @@ -0,0 +1,133 @@ + + + 4.0.0 + + com.example + jersey-example + jar + 1.0-SNAPSHOT + jersey-example + + + + + org.glassfish.jersey + jersey-bom + 2.22.1 + + pom + import + + + + + + + com.google.code.gson + gson + 2.6.2 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + + + + org.glassfish + javax.json + 1.0.4 + + + org.glassfish.jersey.core + jersey-client + + + + org.glassfish.jersey.security + oauth1-client + + + junit + junit + 4.9 + test + + + + + + twitter-microservice-example + + + + maven-assembly-plugin + 2.5.5 + + + src/assembly/distribution.xml + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.1 + + 1.8 + 1.8 + + + src/main/config + + twitter-auth.json + SampleTweets.json + + + + + + + + org.codehaus.mojo + appassembler-maven-plugin + 1.1.1 + + target + +           config +           +           true +           + true + + + com.example.Main + start + + + + + + package + + assemble + + + + + + + + + 2.22.1 + UTF-8 + + diff --git a/src/assembly/distribution.xml b/src/assembly/distribution.xml new file mode 100644 index 00000000..1e81c3e8 --- /dev/null +++ b/src/assembly/distribution.xml @@ -0,0 +1,30 @@ + + dist + + zip + + false + + + ${project.basedir} + / + + manifest.json + + + + ${project.build.directory} + /target + + bin/** + repo/** + config/** + + + *.zip + + + + diff --git a/src/main/config/SampleTweets.json b/src/main/config/SampleTweets.json new file mode 100644 index 00000000..63a3a3d7 --- /dev/null +++ b/src/main/config/SampleTweets.json @@ -0,0 +1,12113 @@ +{ + "tweets": [ + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469619859500, + "id_str": "765626469619859456", + "text": "The VICTORIOUS SESSIONS at Little Johnny Russells PLEASE SHARE or come on down https://t.co/9DGGpEX0js", + "source": "Facebook", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23947154, + "id_str": "23947154", + "name": "Nick Courtney", + "screen_name": "NickCourtney", + "location": "Portsmouth, UK", + "url": "http://www.vinylrecords.co.uk", + "description": "Independent Music Promoter booking agent (Victorious Festival) http://www.book.events and Sweet Memories Vinyl Records https://www.facebook.com/nickcourtney", + "protected": false, + "verified": false, + "followers_count": 1399, + "friends_count": 592, + "listed_count": 21, + "favourites_count": 599, + "statuses_count": 17772, + "created_at": "Thu Mar 12 13:35:46 +0000 2009", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": true, + "profile_link_color": "009999", + "profile_sidebar_border_color": "EEEEEE", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23947154/1455198015", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [ + { + "url": "https://t.co/9DGGpEX0js", + "expanded_url": "http://fb.me/7y5d5kFTD", + "display_url": "fb.me/7y5d5kFTD", + "indices": [ + 79, + 102 + ] + } + ], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549666" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615702000, + "id_str": "765626469615702016", + "text": "#DolceAmoreHotSeat Wave to the crowd - #PushAwardsLizQuens", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 724990427187671000, + "id_str": "724990427187671041", + "name": "LizQuenlurve", + "screen_name": "LQuenlurve", + "location": "Republic of the Philippines", + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 16, + "friends_count": 0, + "listed_count": 0, + "favourites_count": 0, + "statuses_count": 71203, + "created_at": "Tue Apr 26 15:56:02 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/724990726602268672/fA0ZzR3o_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/724990726602268672/fA0ZzR3o_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "DolceAmoreHotSeat", + "indices": [ + 0, + 18 + ] + }, + { + "text": "PushAwardsLizQuens", + "indices": [ + 39, + 58 + ] + } + ], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Sat Jul 29 17:08:12 +0000 2016", + "id": 969343159746404563, + "id_str": "431597464045635084", + "text": "Black #Bicpens have replace blue in business - why", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Babe Randall", + "screen_name": "baberandall", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501315974640" + }, + { + "created_at": "Tue Aug 01 17:18:12 +0000 2016", + "id": 354636111244795558, + "id_str": "361112447955585305", + "text": "You can really set up efficient company shipping with #Scotchpack", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Squirrel Man", + "screen_name": "SquirrelMan3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501611124479" + }, + { + "created_at": "Sat Aug 05 17:20:03 +0000 2016", + "id": 947899634032553537, + "id_str": "996340325535372632", + "text": "Amazing photo qualtiy �H1 - we use X380 #Canoninkjet for professional photo printing #EyesonYou.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eyes on You", + "screen_name": "EyesonYou", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501963403255" + }, + { + "created_at": "Thu Jul 27 17:10:10 +0000 2016", + "id": 326881502256180363, + "id_str": "815022561803638650", + "text": "Jamie, I wold like an #Epson EP722 for my bday. Honest!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Blog Machine", + "screen_name": "TheBlogMachine", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501150225618" + }, + { + "created_at": "Thu Aug 03 17:09:22 +0000 2016", + "id": 660467521611354679, + "id_str": "675216113546799522", + "text": "Dont put #Crayola on radiater - lerned the hard way �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dark Princess", + "screen_name": "DarkPrincessAZ", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501752161135" + }, + { + "created_at": "Fri Aug 04 17:13:06 +0000 2016", + "id": 329158519691802294, + "id_str": "585196918022947050", + "text": "#3MPostit the real thing - others don�t stick right, so fall off - no good", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Judy Meirs 3", + "screen_name": "JudyMeirs3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501851969180" + }, + { + "created_at": "Thu Jul 27 17:19:19 +0000 2016", + "id": 465981831744152560, + "id_str": "818317441525606816", + "text": "#Scotchpack - we carry all your shipping needs for less http://wwww.fiadistribution.com/officeco.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501183174415" + }, + { + "created_at": "Fri Aug 04 17:19:13 +0000 2016", + "id": 677898740289191180, + "id_str": "987402891911804232", + "text": "I'd take #OfficeDepot over #AlphaOffice any day.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Smart Mom", + "screen_name": "smartmomlia", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501874028919" + }, + { + "created_at": "Mon Jul 31 17:22:32 +0000 2016", + "id": 540665403679971075, + "id_str": "654036799710753002", + "text": "We repair #Canoninkjet nationwide - shipin - shipout http://wwww.thehestadgroupofficesupply.com.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Hestad Group", + "screen_name": "TheHestadGroup", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501540367997" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469582110700, + "id_str": "765626469582110721", + "text": "@CodyGarrett93 okay that's it you just Doug your own grave son", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 765626150718550000, + "in_reply_to_status_id_str": "765626150718550017", + "in_reply_to_user_id": 379016622, + "in_reply_to_user_id_str": "379016622", + "in_reply_to_screen_name": "CodyGarrett93", + "user": { + "id": 2608998282, + "id_str": "2608998282", + "name": "Jug", + "screen_name": "justingillly", + "location": null, + "url": null, + "description": "22 idc", + "protected": false, + "verified": false, + "followers_count": 72, + "friends_count": 108, + "listed_count": 0, + "favourites_count": 741, + "statuses_count": 1585, + "created_at": "Mon Jul 07 05:55:33 +0000 2014", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/759576995336298496/D7u8rwaB_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/759576995336298496/D7u8rwaB_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2608998282/1469951882", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "CodyGarrett93", + "name": "Cody Garrett", + "id": 379016622, + "id_str": "379016622", + "indices": [ + 0, + 14 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549657" + }, + { + "created_at": "Wed Jul 26 17:00:55 +0000 2016", + "id": 604460305159808807, + "id_str": "603051598088078841", + "text": "#Sharpie still competitive with ball points", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Louis Vespas", + "screen_name": "louisvespas123", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501030515980" + }, + { + "created_at": "Thu Aug 03 17:13:06 +0000 2016", + "id": 315747656092952272, + "id_str": "476560929522720474", + "text": "#Expodryerase - anyone know the shelf life on these?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eric Coffee", + "screen_name": "EricFCoffee", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501765609295" + }, + { + "created_at": "Wed Jul 26 17:10:01 +0000 2016", + "id": 981800633161669314, + "id_str": "006331616693148237", + "text": "I really got organized on #DayTimer - upped my sales by 30% #salesmercenary.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "C.J. Faust", + "screen_name": "CJFaust13", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501063316166" + }, + { + "created_at": "Tue Aug 01 17:06:20 +0000 2016", + "id": 313735684520842094, + "id_str": "356845208420948297", + "text": "#AlphaOffice - prices are about 20% higher than Staples �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "RAPCO Supplies", + "screen_name": "RAPCOSuppliesLTD", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501568452084" + }, + { + "created_at": "Thu Aug 03 17:05:20 +0000 2016", + "id": 400407376477340929, + "id_str": "073764773409292839", + "text": "#Epson - the only way to go with printers. Read http://wwww.theconsumer.org/article293883.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Grant Hallbot", + "screen_name": "granthallbot", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501737647734" + }, + { + "created_at": "Thu Aug 03 17:06:05 +0000 2016", + "id": 438497403471663624, + "id_str": "974034716636240956", + "text": "20 #Epson EP220 new in the box - best offer.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sanjay Basida", + "screen_name": "sanjay_basida", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501740347166" + }, + { + "created_at": "Wed Jul 26 17:04:54 +0000 2016", + "id": 723590448948277424, + "id_str": "904489482774249243", + "text": "#PaperMate - a pen for official signatures.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Cooper", + "screen_name": "The_Cooper", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501044894827" + }, + { + "created_at": "Thu Aug 03 17:01:43 +0000 2016", + "id": 361657245835054531, + "id_str": "572458350545310194", + "text": "#Canoninkjet is now the standard that ships with our medical diagnostic equipment #HartDiagnostics.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Frida Estabillo", + "screen_name": "fridaestabillo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501724583505" + }, + { + "created_at": "Thu Jul 27 17:08:06 +0000 2016", + "id": 448171427648024790, + "id_str": "714276480247908144", + "text": "#Canoninkjet - best prices at http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501142764802" + }, + { + "created_at": "Sun Jul 30 17:16:36 +0000 2016", + "id": 678924325608235142, + "id_str": "243256082351421858", + "text": "Best deals on #DayTimer - free shipping http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501432560823" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469607354400, + "id_str": "765626469607354368", + "text": "I don't have any time for liars.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1537765556, + "id_str": "1537765556", + "name": "Amethyst", + "screen_name": "Knight_Lapis", + "location": null, + "url": null, + "description": "(★∇★)", + "protected": false, + "verified": false, + "followers_count": 778, + "friends_count": 902, + "listed_count": 7, + "favourites_count": 2997, + "statuses_count": 2215, + "created_at": "Sat Jun 22 02:26:11 +0000 2013", + "utc_offset": -25200, + "time_zone": "Arizona", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/760004056395886592/xxXbeCqY_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/760004056395886592/xxXbeCqY_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1537765556/1471034680", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Aug 24 10:22:59 +0000 2015", + "id": 635759199172100100, + "id_str": "635759199172100096", + "text": "first day of school vs rest of the year http://t.co/WSSHNp2gQZ", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3133923581, + "id_str": "3133923581", + "name": "Sherlock Reactions", + "screen_name": "sherlock_react", + "location": "221B Baker Street", + "url": null, + "description": "Members of the Sherlock cast reacting to things. Full credit goes to creators of pictures and GIFs used. Don't be boring.", + "protected": false, + "verified": false, + "followers_count": 2679, + "friends_count": 1001, + "listed_count": 16, + "favourites_count": 1641, + "statuses_count": 309, + "created_at": "Sat Apr 04 14:01:02 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en-gb", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "9AE4E8", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "BDDCAD", + "profile_sidebar_fill_color": "DDFFCC", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/618198571385491457/fjd1gqeW_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618198571385491457/fjd1gqeW_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3133923581/1432046103", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 510, + "favorite_count": 530, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 40, + 62 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 40, + 62 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "sherlock_react", + "name": "Sherlock Reactions", + "id": 3133923581, + "id_str": "3133923581", + "indices": [ + 3, + 18 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 60, + 82 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id": 635759199172100100, + "source_status_id_str": "635759199172100096", + "source_user_id": 3133923581, + "source_user_id_str": "3133923581" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 60, + 82 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id": 635759199172100100, + "source_status_id_str": "635759199172100096", + "source_user_id": 3133923581, + "source_user_id_str": "3133923581" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549663" + }, + { + "created_at": "Tue Aug 01 17:10:19 +0000 2016", + "id": 143445827464052253, + "id_str": "458274640522534165", + "text": "#Bicpens for back to scool - same as wen I was a kid", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Anna Nathanson", + "screen_name": "annanathanson123", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501582746405" + }, + { + "created_at": "Mon Jul 31 17:04:28 +0000 2016", + "id": 844884752892642930, + "id_str": "847528926429300375", + "text": "Does anyone have studies comparing #Epson to other printers?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Amanda K. Hall", + "screen_name": "Amandakhall", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501475289264" + }, + { + "created_at": "Fri Jul 28 17:10:37 +0000 2016", + "id": 224912382680424711, + "id_str": "123826804247117832", + "text": "Try the new #Scotchtape industrial dispensers. They're worth it.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Amit Bhatt", + "screen_name": "AmitBBhatt", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501238268042" + }, + { + "created_at": "Sun Jul 30 17:00:43 +0000 2016", + "id": 625113754016625374, + "id_str": "137540166253746866", + "text": "See the new #PaperMate colors and styles at http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501375401662" + }, + { + "created_at": "Fri Aug 04 17:01:59 +0000 2016", + "id": 838088119952429161, + "id_str": "881199524291614438", + "text": "I've got 20 #AtAGlance in my garage - best offer!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Constance Aguire", + "screen_name": "ConstanceAguire85", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501811995242" + }, + { + "created_at": "Sat Aug 05 17:10:04 +0000 2016", + "id": 328169274938296918, + "id_str": "692749382969184134", + "text": "#Boisepaper in bulk scheduled delivery http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501927493829" + }, + { + "created_at": "Sat Aug 05 17:02:50 +0000 2016", + "id": 879509014075520964, + "id_str": "090140755209646486", + "text": "The #OfficeDepBrand paper is very good. Cheap in bulk.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dorene Degas", + "screen_name": "DoreneDegas", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501901407552" + }, + { + "created_at": "Sun Jul 30 17:12:02 +0000 2016", + "id": 562934161749840940, + "id_str": "341617498409401894", + "text": "#PaperMate - I still remember the old leaking cartridge style. �S3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Step At A Time", + "screen_name": "StepA ATime", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501416174984" + }, + { + "created_at": "Sat Aug 05 17:02:45 +0000 2016", + "id": 110929011274709462, + "id_str": "290112747094629670", + "text": "#DayTimer - use an iPhone! Really!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Big Shawn K", + "screen_name": "BigShawnK", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501901127470" + }, + { + "created_at": "Tue Aug 01 17:07:43 +0000 2016", + "id": 712005734088906961, + "id_str": "057340889069618642", + "text": "one you get the #FranklinCovey system down - it really works", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Consumer One", + "screen_name": "Consumerone1", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501573408890" + }, + { + "created_at": "Tue Aug 01 17:09:51 +0000 2016", + "id": 581725810708748576, + "id_str": "258107087485763230", + "text": "#AtAGlance compatible with new #Deskmate knockoff organizers �H3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Elana El Sambra", + "screen_name": "ElanaElSambra", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501581070874" + }, + { + "created_at": "Fri Jul 28 17:19:44 +0000 2016", + "id": 473692710666419605, + "id_str": "927106664196057589", + "text": "Not the best selection or prices at #AlphaOffice", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Alan Poltus", + "screen_name": "Alanjpoltus", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501271066641" + }, + { + "created_at": "Sat Aug 05 17:21:44 +0000 2016", + "id": 406499694667078022, + "id_str": "996946670780228926", + "text": "#Crayola - it's an institution - 4 generations in my family.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Nina Duarah", + "screen_name": "NinaDuarah", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501969466707" + }, + { + "created_at": "Wed Aug 02 17:02:30 +0000 2016", + "id": 579386410296694787, + "id_str": "864102966947874903", + "text": "#Averyoffice - get them at http://wwww.officetogo.net instead best prices.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501641029669" + }, + { + "created_at": "Wed Aug 02 17:01:34 +0000 2016", + "id": 663446376766844887, + "id_str": "463767668448872260", + "text": "Messed with my girlfrends #DayTimer and now she wont talk to me �S3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Bird of LA", + "screen_name": "TheBirdofLA", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501637676684" + }, + { + "created_at": "Sat Aug 05 17:05:34 +0000 2016", + "id": 322549112580200691, + "id_str": "491125802006919643", + "text": "Just discovred #Irisfile for doc storage - sick.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vishnu Venkat", + "screen_name": "vishnuvenkat12", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501911258020" + }, + { + "created_at": "Tue Aug 01 17:12:09 +0000 2016", + "id": 462615893767415281, + "id_str": "158937674152810643", + "text": "#DayTimer at #Target? Anyone know?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Red Dog Meyer", + "screen_name": "RedDogMeyer", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501589376741" + }, + { + "created_at": "Wed Aug 02 17:21:58 +0000 2016", + "id": 143417110998696035, + "id_str": "171109986960354033", + "text": "#OfficeDepBrand - made in same factories that make name brand.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eyeball 2005", + "screen_name": "Eyeball2005", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501711099869" + }, + { + "created_at": "Sat Jul 29 17:06:44 +0000 2016", + "id": 105893106628071624, + "id_str": "931066280716241570", + "text": "My daughter sells #AtAGlance, but doesn�t use them.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vana May Haroldson", + "screen_name": "VanaMayHaroldson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501310662807" + }, + { + "created_at": "Sun Aug 06 17:01:05 +0000 2016", + "id": 407519815401540189, + "id_str": "198154015401894191", + "text": "#PaperMate - ben around forevor. ", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sixties Guy", + "screen_name": "SixtiesGuy50", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501981540154" + }, + { + "created_at": "Tue Aug 01 17:23:24 +0000 2016", + "id": 931686298583098441, + "id_str": "862985830984416258", + "text": "You should see all the serious art done with #Crayola crayons.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jana Gupta", + "screen_name": "JanaLianaGupta", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501629858309" + }, + { + "created_at": "Wed Aug 02 17:02:07 +0000 2016", + "id": 999476396472212210, + "id_str": "763964722122102521", + "text": "They sell #OfficeDepBrand in other stores now - cool.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dark Fighter", + "screen_name": "Dark_Fighter", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501639647221" + }, + { + "created_at": "Mon Jul 31 17:23:10 +0000 2016", + "id": 955485426421785526, + "id_str": "854264217855260981", + "text": "Filler supplies for #FranklinCovey have been in short supply", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Warren Jones", + "screen_name": "WarrenjonesCA", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501542642178" + }, + { + "created_at": "Wed Jul 26 17:14:08 +0000 2016", + "id": 727590780905235756, + "id_str": "907809052357560533", + "text": "The old standby #Averyoffice does good office do dads", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Doug G. Pike", + "screen_name": "DougGPike", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501078090523" + }, + { + "created_at": "Fri Jul 28 17:22:07 +0000 2016", + "id": 506962796413145622, + "id_str": "627964131456225822", + "text": "Want proposals to look good - then #Averyoffice binders", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Andreas Rahm", + "screen_name": "andreasrahm", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501279641314" + }, + { + "created_at": "Fri Aug 04 17:18:34 +0000 2016", + "id": 989988716890628030, + "id_str": "887168906280304656", + "text": "#Expodryerase - I never use them - boards never look good", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mitchell Lee", + "screen_name": "MitchellLee3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501871689062" + }, + { + "created_at": "Mon Jul 31 17:16:13 +0000 2016", + "id": 899805176096423463, + "id_str": "051760964234632026", + "text": "Big rush at our store #CanbyMarket around Christmas for #Scotchtape", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Inga Held", + "screen_name": "IngaHeld", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501517609642" + }, + { + "created_at": "Tue Aug 01 17:18:08 +0000 2016", + "id": 151766109181573829, + "id_str": "661091815738295430", + "text": "I gave up on clickers long ago - #Bicpens in the pouch for my company", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Nara Boddupally", + "screen_name": "NaraBoddupally", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501610918157" + }, + { + "created_at": "Sat Aug 05 17:04:32 +0000 2016", + "id": 528899075258635116, + "id_str": "990752586351160447", + "text": "can't get #3MPostit anyore at my work. Need to buy them now", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Raging Bull", + "screen_name": "Ragingbull6", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501907525863" + }, + { + "created_at": "Sun Jul 30 17:21:34 +0000 2016", + "id": 954724504531586937, + "id_str": "245045315869375790", + "text": "#Sharpie book marker got me through college.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Peace Nick", + "screen_name": "Peacenick", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501450453158" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615865900, + "id_str": "765626469615865856", + "text": "You got a get a look that dog. Really stands out.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": 765625017040265200, + "in_reply_to_status_id_str": "765625017040265216", + "in_reply_to_user_id": 228098750, + "in_reply_to_user_id_str": "228098750", + "in_reply_to_screen_name": "kidrauhlJDrew", + "user": { + "id": 759817319757574100, + "id_str": "759817319757574144", + "name": "Sharon ♥JB", + "screen_name": "SharonBieber111", + "location": "Florida, USA", + "url": null, + "description": "I'll always be here for justin", + "protected": false, + "verified": false, + "followers_count": 25, + "friends_count": 80, + "listed_count": 2, + "favourites_count": 350, + "statuses_count": 179, + "created_at": "Sun Jul 31 18:25:40 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/764101550105124864/7ZPF5YjW_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/764101550105124864/7ZPF5YjW_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/759817319757574144/1470195068", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "kidrauhlJDrew", + "name": "Justin Bieber", + "id": 228098750, + "id_str": "228098750", + "indices": [ + 0, + 14 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469586497500, + "id_str": "765626469586497536", + "text": "RT @TheVampsBrad: HEY DEWDS I BURNT MY FACE TODAY AND IT STINGS A BIT SO LETS DO A FOLLOW SPREE. Use dis hashtag. \n\n#VoteTheVampsR1\n\nhttps:…", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 744585738587672600, + "id_str": "744585738587672576", + "name": "Katie", + "screen_name": "katiechapman202", + "location": "England, United Kingdom", + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 4, + "friends_count": 50, + "listed_count": 0, + "favourites_count": 447, + "statuses_count": 46, + "created_at": "Sun Jun 19 17:40:48 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en-GB", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/763044855383818241/uA2FxiBu_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/763044855383818241/uA2FxiBu_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 19:01:29 +0000 2016", + "id": 765624539996913700, + "id_str": "765624539996913664", + "text": "HEY DEWDS I BURNT MY FACE TODAY AND IT STINGS A BIT SO LETS DO A FOLLOW SPREE. Use dis hashtag. \n\n#VoteTheVampsR1\n\nhttps://t.co/AITRG0aILr", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126370504, + "id_str": "126370504", + "name": "Bradley Will Simpson", + "screen_name": "TheVampsBrad", + "location": "Birmingham.", + "url": null, + "description": "lalalalaaa.", + "protected": false, + "verified": true, + "followers_count": 1681792, + "friends_count": 8078, + "listed_count": 6297, + "favourites_count": 509, + "statuses_count": 5388, + "created_at": "Thu Mar 25 17:07:58 +0000 2010", + "utc_offset": 7200, + "time_zone": "Amsterdam", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F70F0F", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/396276760/tokyo-art-1.jpg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/396276760/tokyo-art-1.jpg", + "profile_background_tile": true, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "EBDDE0", + "profile_sidebar_fill_color": "E0E0E0", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/643779235174330368/sbzSNncG_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/643779235174330368/sbzSNncG_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/126370504/1455448742", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 3848, + "favorite_count": 3363, + "entities": { + "hashtags": [ + { + "text": "VoteTheVampsR1", + "indices": [ + 98, + 113 + ] + } + ], + "urls": [ + { + "url": "https://t.co/AITRG0aILr", + "expanded_url": "http://bbc.in/2aYY5qO", + "display_url": "bbc.in/2aYY5qO", + "indices": [ + 115, + 138 + ] + } + ], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "VoteTheVampsR1", + "indices": [ + 116, + 131 + ] + } + ], + "urls": [ + { + "url": "https://t.co/AITRG0aILr", + "expanded_url": "http://bbc.in/2aYY5qO", + "display_url": "bbc.in/2aYY5qO", + "indices": [ + 139, + 140 + ] + } + ], + "user_mentions": [ + { + "screen_name": "TheVampsBrad", + "name": "Bradley Will Simpson", + "id": 126370504, + "id_str": "126370504", + "indices": [ + 3, + 16 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549658" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590634500, + "id_str": "765626469590634497", + "text": "I'm not a Lakers fan, but they do find a way to win.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765625543903576000, + "in_reply_to_status_id_str": "765625543903576064", + "in_reply_to_user_id": 3324987832, + "in_reply_to_user_id_str": "3324987832", + "in_reply_to_screen_name": "TuptaDarek", + "user": { + "id": 4594628713, + "id_str": "4594628713", + "name": "Bożena Mandat", + "screen_name": "AlfaOmegaB1", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 158, + "friends_count": 375, + "listed_count": 9, + "favourites_count": 9243, + "statuses_count": 7126, + "created_at": "Fri Dec 18 14:52:23 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "pl", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/678541216087187456/tGR5XUXH_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678541216087187456/tGR5XUXH_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "TuptaDarek", + "name": "Darek Tupta", + "id": 3324987832, + "id_str": "3324987832", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "trosmislen", + "name": "⭐⭐CrAcK for WoMaN⭐⭐", + "id": 2938819107, + "id_str": "2938819107", + "indices": [ + 12, + 23 + ] + }, + { + "screen_name": "Dragonfly_KRK", + "name": "Madame Dragonfly", + "id": 4156105535, + "id_str": "4156105535", + "indices": [ + 24, + 38 + ] + }, + { + "screen_name": "Kate_The_Black", + "name": "Kate", + "id": 1463251764, + "id_str": "1463251764", + "indices": [ + 39, + 54 + ] + }, + { + "screen_name": "AgnieszkaGrego1", + "name": "Agnieszka", + "id": 3633650188, + "id_str": "3633650188", + "indices": [ + 55, + 71 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "pl", + "timestamp_ms": "1471374549659" + }, + { + "created_at": "Wed Jul 26 17:08:56 +0000 2016", + "id": 310450594098559473, + "id_str": "505940985594732628", + "text": "I like #AtAGlance the best of all the organizers, but that's me", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Murphy Jordan 73", + "screen_name": "MurphyJordan73", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501059409855" + }, + { + "created_at": "Thu Jul 27 17:20:29 +0000 2016", + "id": 577631873717800041, + "id_str": "318737178000413951", + "text": "#OfficeDepBrand factory seconds -low prices - http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501187371780" + }, + { + "created_at": "Sun Jul 30 17:04:35 +0000 2016", + "id": 431963893164477395, + "id_str": "638931644773959420", + "text": "I have a better option than #3MPostit at http://www.mypostnotes.net", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Heavyman", + "screen_name": "Heavyman8", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501389316447" + }, + { + "created_at": "Sat Jul 29 17:12:05 +0000 2016", + "id": 659423299126618094, + "id_str": "232991266180940738", + "text": "#HPjet, #Epson, - #Canoninkjet we have them all http://wwww.heartsupplysd.com.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Heart Supply", + "screen_name": "HeartSupplySD", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501329912661" + }, + { + "created_at": "Thu Jul 27 17:04:11 +0000 2016", + "id": 764891287091450870, + "id_str": "912870914508708945", + "text": "Used #Canoninkjet repair parts - repair your printer for pennies on the $ at http://wwww.fiadistribution.com/officeco.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501128709145" + }, + { + "created_at": "Thu Aug 03 17:13:40 +0000 2016", + "id": 313397676004606874, + "id_str": "976760046068741688", + "text": "#3MPostit use them too mch", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tree Splitter", + "screen_name": "Tree_splitter", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501767600460" + }, + { + "created_at": "Fri Jul 28 17:12:04 +0000 2016", + "id": 297512434684701481, + "id_str": "124346847014819219", + "text": "Not the way to organize, but I can't do without #3MPostit.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "David Rice", + "screen_name": "DavidRice1967", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501243468470" + }, + { + "created_at": "Fri Jul 28 17:17:22 +0000 2016", + "id": 914972625200000520, + "id_str": "726252000005205016", + "text": "Hate all the organizing �S2 - force to use #AtAGlance at work - any ideas?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eva Fernandez", + "screen_name": "EvaFernandez", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501262520000" + }, + { + "created_at": "Sun Jul 30 17:01:52 +0000 2016", + "id": 510833795782394477, + "id_str": "337957823944774526", + "text": "New tech organizer fits inside #FranklinCovey: http://wwww.melvinco.net", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Melvin Company", + "screen_name": "TheMelvinCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501379578239" + }, + { + "created_at": "Wed Jul 26 17:06:42 +0000 2016", + "id": 437810513530889826, + "id_str": "105135308898268320", + "text": "#Bicpens is the only vendor", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sara Ahmu", + "screen_name": "Saraahmu", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501051353088" + }, + { + "created_at": "Sat Jul 29 17:10:52 +0000 2016", + "id": 372473255700261641, + "id_str": "732557002616418164", + "text": "There is a problem with my company and cold outdoor #Bicpens - any alternative?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Young Greek", + "screen_name": "TheYoungGreek3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501325570026" + }, + { + "created_at": "Sun Jul 30 17:16:44 +0000 2016", + "id": 910884330400550871, + "id_str": "843304005508710281", + "text": "I ike the warranty on #OfficeDepBrand. �H2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mana Rodriguez", + "screen_name": "manarodriguez", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501433040055" + }, + { + "created_at": "Sun Jul 30 17:22:37 +0000 2016", + "id": 939674542410572166, + "id_str": "745424105721664406", + "text": "The very best organizer is #FranklinCovey - even though its cheaper", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vashan Smith", + "screen_name": "Vashansmith81", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501454241057" + }, + { + "created_at": "Sun Jul 30 17:17:15 +0000 2016", + "id": 843984349562692033, + "id_str": "843495626920331591", + "text": "See the new #DayTimer use video at https://www.youtube.com/watch?v=iRXJXaLV0n4.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Ham Hocks", + "screen_name": "MrHamHocks", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501434956269" + }, + { + "created_at": "Thu Jul 27 17:18:49 +0000 2016", + "id": 120051813976665862, + "id_str": "518139766658627905", + "text": "#Panasonic now moving into printing products big time.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Red Wedding", + "screen_name": "RedWedding", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501181397666" + }, + { + "created_at": "Wed Aug 02 17:10:03 +0000 2016", + "id": 267906681926653695, + "id_str": "066819266536951101", + "text": "You can get #OfficeDepBrand online at #AlphaOffice", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tanya Orchano", + "screen_name": "tanyaorchano", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501668192665" + }, + { + "created_at": "Wed Aug 02 17:12:27 +0000 2016", + "id": 638296768673152964, + "id_str": "967686731529640117", + "text": "Are there actual #AlphaOffice stores or is it just online?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tres Hawkins III", + "screen_name": "TresHawkinsIII", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501676867315" + }, + { + "created_at": "Wed Aug 02 17:05:44 +0000 2016", + "id": 444416526929084595, + "id_str": "165269290845958880", + "text": "Recyled #Scotchpack bubble pack - it only makes sense.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Big Bertha", + "screen_name": "BigBertha", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501652692908" + }, + { + "created_at": "Fri Jul 28 17:22:05 +0000 2016", + "id": 457152795519538130, + "id_str": "527955195381302330", + "text": "Sad story about found #DayTimer and finding the owner http://wwww.truelifenow.net/daytimertragedy.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Gigi Prince", + "screen_name": "GigiPrince", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501279551953" + }, + { + "created_at": "Wed Jul 26 17:05:51 +0000 2016", + "id": 506300483105412553, + "id_str": "004831054125534410", + "text": "We repair #Epson nationwide - shipin - shipout http://wwww.thehestadgroupofficesupply.com", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Hestad Group", + "screen_name": "TheHestadGroup", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501048310541" + }, + { + "created_at": "Fri Aug 04 17:15:59 +0000 2016", + "id": 650408623877197875, + "id_str": "086238771978759987", + "text": "the #AlphaOffice website is simple maybe to simple", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sarah Steinman", + "screen_name": "Sarahsteinman2", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501862387719" + }, + { + "created_at": "Sat Jul 29 17:16:49 +0000 2016", + "id": 834873469783270960, + "id_str": "734697832709605031", + "text": "Lots of uses for the #Sharpie permanent marker", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mason McClintok", + "screen_name": "MasonMcClintok", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501346978327" + }, + { + "created_at": "Thu Aug 03 17:10:24 +0000 2016", + "id": 124717558776848174, + "id_str": "175587768481749858", + "text": "I switched from #FranklinCovey to #DayTimer - both good", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Kim Hong", + "screen_name": "KimJVHong", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501755877684" + }, + { + "created_at": "Sun Aug 06 17:02:25 +0000 2016", + "id": 776879863198199204, + "id_str": "798631981992042296", + "text": "Be careful not to overspend on #FranklinCovey - big differences in prices - http://wwww.beachbobsales.com.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Beach Blob", + "screen_name": "beachblob", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501986319819" + }, + { + "created_at": "Thu Aug 03 17:00:18 +0000 2016", + "id": 366987195211064277, + "id_str": "871952110642774886", + "text": "I use the #Averyoffice shteet protectors - underused product.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Margo Zink", + "screen_name": "MargoZinkSF", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501719521106" + }, + { + "created_at": "Sat Aug 05 17:17:52 +0000 2016", + "id": 451369555748706551, + "id_str": "695557487065518286", + "text": "We bu y #Boisepaper by the truckload -literally", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "James G. Miller", + "screen_name": "JamesGaryMiller", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501955574870" + }, + { + "created_at": "Wed Aug 02 17:11:52 +0000 2016", + "id": 655276747531375866, + "id_str": "767475313758665502", + "text": "#FranklinCovey - always in stock - all supplies - immediate ship - http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501674753137" + }, + { + "created_at": "Sat Jul 29 17:21:37 +0000 2016", + "id": 361133642307266741, + "id_str": "336423072667412716", + "text": "I just discovered #AlphaOffice will use it for some bulk orders for our company #Thermotech.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Lana R. Moore", + "screen_name": "LanaRuMoore", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501364230726" + }, + { + "created_at": "Sat Aug 05 17:07:37 +0000 2016", + "id": 302569186588005179, + "id_str": "691865880051795599", + "text": "The multi-color #FranklinCovey system - very cool. �H1", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Andrea K Thompson", + "screen_name": "AndreaKThompson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501918658800" + }, + { + "created_at": "Mon Jul 31 17:14:17 +0000 2016", + "id": 406515106513470898, + "id_str": "151065134708982391", + "text": "#3MPostit - can build a whole accounting system around them!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Matt Anselm", + "screen_name": "MattGAnselm", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501510651347" + }, + { + "created_at": "Sun Jul 30 17:01:25 +0000 2016", + "id": 282893779469883855, + "id_str": "937794698838559925", + "text": "I keeping getting my #Epson prntrs stolen!! �S2 �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Spurs Fan", + "screen_name": "Spurs_Fan", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501377946988" + }, + { + "created_at": "Sat Aug 05 17:19:20 +0000 2016", + "id": 189959608174080437, + "id_str": "596081740804379114", + "text": "Does any store in LA carry #Irisfile? Need it today.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Observer 79", + "screen_name": "Theobserver79", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501960817408" + }, + { + "created_at": "Tue Aug 01 17:16:05 +0000 2016", + "id": 140566035467640981, + "id_str": "660354676409815845", + "text": "Any comparisons out there on #AlphaOffice vs Office Depot? Others?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Star Lewis", + "screen_name": "StarLewis03", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501603546764" + }, + { + "created_at": "Sat Jul 29 17:01:07 +0000 2016", + "id": 542892904439186858, + "id_str": "929044391868589090", + "text": "I tried other sheets in my #DayTimer, but din't work out so well. �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Lena Maurice", + "screen_name": "LenaMaurice", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501290443918" + }, + { + "created_at": "Sat Aug 05 17:03:22 +0000 2016", + "id": 371429033215525055, + "id_str": "290332155250559381", + "text": "#AtAGlance - see the video on how to use them https://www.youtube.com/watch?v=iRXJXaLV0n4", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Reggie Vaughn", + "screen_name": "ReggieVaughn", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501903321552" + }, + { + "created_at": "Wed Aug 02 17:21:36 +0000 2016", + "id": 346617097800199447, + "id_str": "170978001994472175", + "text": "#Scotchpack - the only packing products my company #DelTraders will use - for good reason.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jose A. Valdez", + "screen_name": "JoseA_Valdez", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501709780019" + }, + { + "created_at": "Wed Jul 26 17:03:11 +0000 2016", + "id": 787090386671026479, + "id_str": "903866710264799278", + "text": "Our only office supplies are #Bicpens and #Swinton pads #CantonTransportation.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Printerco.com", + "screen_name": "Printercocom", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501038667102" + }, + { + "created_at": "Fri Jul 28 17:03:35 +0000 2016", + "id": 704012129351779504, + "id_str": "121293517795048146", + "text": "I just don't want ot spend the money for #DayTimer anymore.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Constant Cycler", + "screen_name": "aConstantCycler", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501212935177" + }, + { + "created_at": "Sat Aug 05 17:03:25 +0000 2016", + "id": 494359035496695307, + "id_str": "590354966953079919", + "text": "Thank god for #3MPostit when your doing taxes! #TaxKing �H1", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Tax King", + "screen_name": "TaxKing", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501903549669" + }, + { + "created_at": "Tue Jul 25 17:21:14 +0000 2016", + "id": 174280172549239364, + "id_str": "801725492393646787", + "text": "I think #OfficeDepBrand is going to gain market share. Buy stock now. #Stockman14", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Bad Journeyman", + "screen_name": "BadJourneyman", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501017254923" + }, + { + "created_at": "Sat Aug 05 17:19:50 +0000 2016", + "id": 760359626111090518, + "id_str": "596261110905187963", + "text": "My 5 year old dauhter eats #Scotchtape. But what doyou do.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Carmen Fernandez", + "screen_name": "carmenfernandez3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501962611109" + }, + { + "created_at": "Sat Aug 05 17:06:35 +0000 2016", + "id": 835089149467676922, + "id_str": "891494676769228808", + "text": "Did you know #Epson has unique print fingerprint for each printer?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Anna Marie Torres", + "screen_name": "AnnaMarieTorres", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501914946767" + }, + { + "created_at": "Sun Jul 30 17:19:03 +0000 2016", + "id": 543014413992469064, + "id_str": "144139924690643148", + "text": "Our whole company - gone to #Canoninkjet -saves us bundles", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Life Coach Ted", + "screen_name": "Lifecoachted2", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501441399246" + }, + { + "created_at": "Wed Aug 02 17:04:43 +0000 2016", + "id": 455676490386437905, + "id_str": "764903864379059767", + "text": "#3MPostit - they say the glue is some special agent that doesn't go dry , but it does �S1", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Music Distributors", + "screen_name": "MusicDistribCA", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501649038643" + }, + { + "created_at": "Fri Aug 04 17:05:37 +0000 2016", + "id": 491918250357809392, + "id_str": "182503578093927350", + "text": "I own #AlphaOffice stock, so I buy there.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Rich Kosowitz", + "screen_name": "Richdkosowitz", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501825035780" + }, + { + "created_at": "Wed Jul 26 17:23:42 +0000 2016", + "id": 517381125597643044, + "id_str": "811255976430441640", + "text": "Where is the best placeonline for #3MPostit - big quantities", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Bobster", + "screen_name": "thebobsternel", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501112559764" + }, + { + "created_at": "Sat Jul 29 17:05:57 +0000 2016", + "id": 267383078398865905, + "id_str": "830783988659053623", + "text": "No one has come up with a good alternative to #Scotchtape", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Santash Bagdanni", + "screen_name": "SantashBagdanni", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501307839886" + }, + { + "created_at": "Fri Jul 28 17:05:25 +0000 2016", + "id": 593782195094938490, + "id_str": "821950949384901098", + "text": "I still have #PaperMate pens as a high school grad gift.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sam Dredger", + "screen_name": "SamRDredger", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501219509493" + }, + { + "created_at": "Thu Aug 03 17:03:26 +0000 2016", + "id": 172007307834320351, + "id_str": "073078343203519413", + "text": "Look at the educational discound at #AlphaOffice for #Scotchtape", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Teacher of the Year", + "screen_name": "teacheroftheyear12", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501730783432" + }, + { + "created_at": "Tue Aug 01 17:03:46 +0000 2016", + "id": 964115591932683752, + "id_str": "155919326837528153", + "text": "#AlphaOffice cutomer support kind of bite sometimes �S3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Anne McVay", + "screen_name": "AnneMcVay782", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501559193268" + }, + { + "created_at": "Sat Aug 05 17:07:59 +0000 2016", + "id": 496289199996040583, + "id_str": "891999960405839067", + "text": "I like the coupons at #AlphaOffice.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Rene Estaban", + "screen_name": "ReneEstaban", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501919999604" + }, + { + "created_at": "Mon Jul 31 17:03:53 +0000 2016", + "id": 351174731845130015, + "id_str": "747318451300150313", + "text": "When you want #AtAGlance refills go to http://wwww.officetogo.net", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501473184513" + }, + { + "created_at": "Fri Jul 28 17:23:47 +0000 2016", + "id": 807042856712949696, + "id_str": "428567129496960932", + "text": "When I buy #Averyoffice online its difrent product. Why?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vena Kubias", + "screen_name": "VenaKubias", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501285671294" + }, + { + "created_at": "Fri Jul 28 17:19:55 +0000 2016", + "id": 890032717565901857, + "id_str": "327175659018573164", + "text": "#Scotchtape - my wife brings it home from the office in boxes.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mark K. Kline", + "screen_name": "Markkevinkline", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501271756590" + }, + { + "created_at": "Wed Aug 02 17:20:56 +0000 2016", + "id": 955027073718174942, + "id_str": "270737181749427586", + "text": "Some of the #OfficeDepBrand specialty products are only available online.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tennis Jane", + "screen_name": "TennisJane", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501707371817" + }, + { + "created_at": "Tue Aug 01 17:06:47 +0000 2016", + "id": 716965700612030371, + "id_str": "657006120303715020", + "text": "#FranklinCovey - My father always had them. They've been around.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Time Thief", + "screen_name": "Time_Thief", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501570061203" + }, + { + "created_at": "Wed Jul 26 17:06:15 +0000 2016", + "id": 228040497594997917, + "id_str": "404975949979173939", + "text": "The newest #Canoninkjet - more complex, but great output", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Cat Surgeon", + "screen_name": "CatSurgeonJohn", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501049759499" + }, + { + "created_at": "Thu Aug 03 17:04:58 +0000 2016", + "id": 266837362947748356, + "id_str": "373629477483564452", + "text": "Alternative to #AlphaOffice at http://wwww.fiadistribution.com/officeco. - better prices, service.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501736294774" + }, + { + "created_at": "Wed Jul 26 17:16:16 +0000 2016", + "id": 784140857903466269, + "id_str": "408579034662690597", + "text": "Does anyone refill #Canoninkjet cartridges?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dede Diegnan", + "screen_name": "Dedediegnan", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501085790346" + }, + { + "created_at": "Thu Jul 27 17:00:23 +0000 2016", + "id": 541771150289650075, + "id_str": "711502896500751241", + "text": "The new colors of #Bicpens are krazeeeee. �H2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Pete Aluna", + "screen_name": "pete_aluna", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501115028965" + }, + { + "created_at": "Mon Jul 31 17:07:45 +0000 2016", + "id": 680384871215671151, + "id_str": "848712156711516574", + "text": "#FranklinCovey is always going to stand up to abuse", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jean Lisa Wilson", + "screen_name": "JeanLisaWilson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501487121567" + }, + { + "created_at": "Tue Aug 01 17:21:03 +0000 2016", + "id": 580406214154585337, + "id_str": "062141545853379144", + "text": "#DayTimer - did that company get bought?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jean Lisa Wilson", + "screen_name": "JeanLisaWilson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501621415458" + }, + { + "created_at": "Fri Jul 28 17:06:28 +0000 2016", + "id": 104932233374080958, + "id_str": "322333740809584131", + "text": "get #3MPostit -best price fast shipping- at http://wwww.officetogo.net . ", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501223337408" + }, + { + "created_at": "Sun Aug 06 17:01:32 +0000 2016", + "id": 651399831250035459, + "id_str": "998312500354590372", + "text": "What do all the people use #Scotchtape for other than gifts?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sonas Perez", + "screen_name": "sonasperez73", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501983125003" + }, + { + "created_at": "Sat Jul 29 17:15:23 +0000 2016", + "id": 980703417970076685, + "id_str": "034179700766857411", + "text": "If you're thinking of buying at #AlphaOffice, look at http://wwww.officetogo.net instead.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501341797007" + }, + { + "created_at": "Fri Jul 28 17:08:01 +0000 2016", + "id": 743902288915786697, + "id_str": "022889157866977545", + "text": "#DayTimer - more complex to me, so a better fit for others", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Morris Knight", + "screen_name": "Morrisknight2", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501228891578" + }, + { + "created_at": "Thu Jul 27 17:08:07 +0000 2016", + "id": 257501428200750318, + "id_str": "014282007503182457", + "text": "When #Crayola is out at a stor I dont buy. Not 4 my kids", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Ava Costello", + "screen_name": "Avacostello", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501142820075" + }, + { + "created_at": "Mon Jul 31 17:09:21 +0000 2016", + "id": 726764929081598646, + "id_str": "649290815986463684", + "text": "Watch out - your HS kid may be getting high on #Expodryerase - see http://wwww.truelifenow.net/dryerasertragedy", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Troy Illikson", + "screen_name": "TroyIllikson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501492908159" + }, + { + "created_at": "Wed Jul 26 17:08:07 +0000 2016", + "id": 788410564308048708, + "id_str": "105643080487081305", + "text": "#Scotchtape - dominates the market - still no better product.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The_Cylinder", + "screen_name": "The_Cylinder", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501056430804" + }, + { + "created_at": "Wed Jul 26 17:16:02 +0000 2016", + "id": 614410849473361170, + "id_str": "108494733611707825", + "text": "#OfficeDepBrand has been around for decades.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Last Word", + "screen_name": "Lastword", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501084947336" + }, + { + "created_at": "Wed Aug 02 17:14:50 +0000 2016", + "id": 442186854475893059, + "id_str": "868544758930597888", + "text": "#AtAGlance - Don�t have the weekly views I like anymore.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Linda J. Wang", + "screen_name": "LindaJWang", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501685447589" + }, + { + "created_at": "Wed Aug 02 17:02:04 +0000 2016", + "id": 398656394784243482, + "id_str": "563947842434828081", + "text": "The #Scotchpack shipping tape is simply the best �H3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Your Grandma", + "screen_name": "YourGrandma", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501639478424" + }, + { + "created_at": "Tue Aug 01 17:06:07 +0000 2016", + "id": 279505676396761518, + "id_str": "056763967615187688", + "text": "Bulk #Scotchpack products - lowest prices - always in stock - http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501567639676" + }, + { + "created_at": "Sun Jul 30 17:14:08 +0000 2016", + "id": 511454236918785036, + "id_str": "542369187850366645", + "text": "The stackable #Irisfile file bins never leak. Even with a basement flooded.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Rolling Fields", + "screen_name": "RollingFields", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501423691878" + }, + { + "created_at": "Fri Aug 04 17:02:20 +0000 2016", + "id": 551868132144056344, + "id_str": "681321440563440387", + "text": "#Boisepaper - official paper of NASA.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mr. Compulsion", + "screen_name": "MrCompulsion", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501813214405" + }, + { + "created_at": "Thu Aug 03 17:17:16 +0000 2016", + "id": 943287806106515944, + "id_str": "878061065159445637", + "text": "Save on all #Panasonic electronics at http://wwww.fiadistribution.com/officeco.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501780610651" + }, + { + "created_at": "Mon Jul 31 17:07:26 +0000 2016", + "id": 707014860091140170, + "id_str": "148600911401709666", + "text": "#Bicpens at http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501486009114" + }, + { + "created_at": "Wed Aug 02 17:11:07 +0000 2016", + "id": 628516720706132646, + "id_str": "167207061326466340", + "text": "I like the high end #PaperMate pen sets. Always a good gift.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Connie Baumann", + "screen_name": "ConnieIBaumann", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501672070613" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469594771500, + "id_str": "765626469594771457", + "text": "This is not my fight!!!!", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 752641798854602800, + "id_str": "752641798854602753", + "name": "Manford", + "screen_name": "Officer_63104", + "location": "Soulard", + "url": null, + "description": "I'm not special Just hard working", + "protected": false, + "verified": false, + "followers_count": 18, + "friends_count": 205, + "listed_count": 0, + "favourites_count": 349, + "statuses_count": 630, + "created_at": "Mon Jul 11 23:12:43 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/755562222118502400/Yb4qxHM0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/755562222118502400/Yb4qxHM0_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 19:05:11 +0000 2016", + "id": 765625472357011500, + "id_str": "765625472357011458", + "text": "Dick Van Dyke singing at a Denny's will make your day https://t.co/xkpbu0Gi4f https://t.co/YIrFDmfC4q", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 42921216, + "id_str": "42921216", + "name": "KSDK NewsChannel 5", + "screen_name": "ksdknews", + "location": "St. Louis, Missouri", + "url": "http://www.ksdk.com", + "description": "We're 5 On Your Side for breaking news, weather and sports both on-air and online. Retweets are not endorsements. #STLTogether", + "protected": false, + "verified": true, + "followers_count": 143094, + "friends_count": 1551, + "listed_count": 1777, + "favourites_count": 6406, + "statuses_count": 113005, + "created_at": "Wed May 27 16:45:59 +0000 2009", + "utc_offset": -18000, + "time_zone": "Central Time (US & Canada)", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/558328096772718592/l2ojseup.jpeg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/558328096772718592/l2ojseup.jpeg", + "profile_background_tile": true, + "profile_link_color": "009999", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/735699968686575616/C_VrH0qI_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/735699968686575616/C_VrH0qI_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/42921216/1467830374", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 1, + "favorite_count": 1, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [ + { + "url": "https://t.co/xkpbu0Gi4f", + "expanded_url": "http://on.ksdk.com/2bDBNPG", + "display_url": "on.ksdk.com/2bDBNPG", + "indices": [ + 54, + 77 + ] + } + ], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 78, + 101 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 78, + 101 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [ + { + "url": "https://t.co/xkpbu0Gi4f", + "expanded_url": "http://on.ksdk.com/2bDBNPG", + "display_url": "on.ksdk.com/2bDBNPG", + "indices": [ + 68, + 91 + ] + } + ], + "user_mentions": [ + { + "screen_name": "ksdknews", + "name": "KSDK NewsChannel 5", + "id": 42921216, + "id_str": "42921216", + "indices": [ + 3, + 12 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 92, + 115 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + }, + "source_status_id": 765625472357011500, + "source_status_id_str": "765625472357011458", + "source_user_id": 42921216, + "source_user_id_str": "42921216" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 92, + 115 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + }, + "source_status_id": 765625472357011500, + "source_status_id_str": "765625472357011458", + "source_user_id": 42921216, + "source_user_id_str": "42921216" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549660" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615824900, + "id_str": "765626469615824897", + "text": "RT @CIGIonline: \"What are we trying to do, and why?\" #CIGI's @fenhampson & Derek Burney on Canada's #peacekeeping interests: https://t.co/j…", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 472635103, + "id_str": "472635103", + "name": "Sunny", + "screen_name": "senayitb", + "location": "Ontario, CA", + "url": null, + "description": "Senayit Belay | JD, Western Law | BSc, McGill | BA, Carleton", + "protected": false, + "verified": false, + "followers_count": 57, + "friends_count": 146, + "listed_count": 3, + "favourites_count": 471, + "statuses_count": 336, + "created_at": "Tue Jan 24 04:31:17 +0000 2012", + "utc_offset": -10800, + "time_zone": "Atlantic Time (Canada)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "DBE9ED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "profile_background_tile": false, + "profile_link_color": "CC3366", + "profile_sidebar_border_color": "DBE9ED", + "profile_sidebar_fill_color": "E6F6F9", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/592980154160422912/A-14Xuug_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/592980154160422912/A-14Xuug_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/472635103/1360373477", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 15:45:11 +0000 2016", + "id": 765575137752129500, + "id_str": "765575137752129537", + "text": "\"What are we trying to do, and why?\" #CIGI's @fenhampson & Derek Burney on Canada's #peacekeeping interests: https://t.co/jHjLV6MOcA", + "source": "Hootsuite", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 38498866, + "id_str": "38498866", + "name": "CIGI", + "screen_name": "CIGIonline", + "location": "Waterloo, Ontario, Canada", + "url": "http://www.cigionline.org", + "description": "The Centre for International Governance Innovation is a nonpartisan think tank that generates ideas for global governance improvements. Retweets ≠ endorsements.", + "protected": false, + "verified": false, + "followers_count": 14129, + "friends_count": 479, + "listed_count": 612, + "favourites_count": 672, + "statuses_count": 10280, + "created_at": "Thu May 07 19:34:20 +0000 2009", + "utc_offset": -14400, + "time_zone": "Eastern Time (US & Canada)", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455697333674446848/63enz3bN.jpeg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455697333674446848/63enz3bN.jpeg", + "profile_background_tile": true, + "profile_link_color": "2B2A82", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "CDD2DE", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/648963897689546752/9L7glWEp_normal.png", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648963897689546752/9L7glWEp_normal.png", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/38498866/1430353989", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + { + "text": "CIGI", + "indices": [ + 37, + 42 + ] + }, + { + "text": "peacekeeping", + "indices": [ + 88, + 101 + ] + } + ], + "urls": [ + { + "url": "https://t.co/jHjLV6MOcA", + "expanded_url": "http://ow.ly/mBzA303hUK4", + "display_url": "ow.ly/mBzA303hUK4", + "indices": [ + 113, + 136 + ] + } + ], + "user_mentions": [ + { + "screen_name": "fenhampson", + "name": "Fen Hampson", + "id": 2844325784, + "id_str": "2844325784", + "indices": [ + 45, + 56 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "CIGI", + "indices": [ + 53, + 58 + ] + }, + { + "text": "peacekeeping", + "indices": [ + 104, + 117 + ] + } + ], + "urls": [ + { + "url": "https://t.co/jHjLV6MOcA", + "expanded_url": "http://ow.ly/mBzA303hUK4", + "display_url": "ow.ly/mBzA303hUK4", + "indices": [ + 129, + 144 + ] + } + ], + "user_mentions": [ + { + "screen_name": "CIGIonline", + "name": "CIGI", + "id": 38498866, + "id_str": "38498866", + "indices": [ + 3, + 14 + ] + }, + { + "screen_name": "fenhampson", + "name": "Fen Hampson", + "id": 2844325784, + "id_str": "2844325784", + "indices": [ + 61, + 72 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590700000, + "id_str": "765626469590700032", + "text": "I liked the @YouTube video on fire fighters.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Lee Chambers", + "screen_name": "Leechambers1995", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/425682506373812224/oHq3Pbcd_normal.jpeg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/425682506373812224/oHq3Pbcd_normal.jpeg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2303418558/1398259378", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [ + { + "url": "https://t.co/JXKt8KxhIt", + "expanded_url": "http://youtu.be/ncaZBEXLBCo?a", + "display_url": "youtu.be/ncaZBEXLBCo?a", + "indices": [ + 46, + 69 + ] + } + ], + "user_mentions": [ + { + "screen_name": "YouTube", + "name": "YouTube", + "id": 10228272, + "id_str": "10228272", + "indices": [ + 10, + 18 + ] + }, + { + "screen_name": "BlackPanthaaYT", + "name": "PANTS @ GAMESCOM", + "id": 40427734, + "id_str": "40427734", + "indices": [ + 30, + 45 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549659" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590638600, + "id_str": "765626469590638592", + "text": "RT @MestreTite: Parece que o jogo virou. https://t.co/skJ4k4G2uY", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3145668795, + "id_str": "3145668795", + "name": "king of crell ♠️", + "screen_name": "g6santana", + "location": "snap:gersonp16", + "url": null, + "description": "since 1998", + "protected": false, + "verified": false, + "followers_count": 901, + "friends_count": 291, + "listed_count": 0, + "favourites_count": 919, + "statuses_count": 8185, + "created_at": "Tue Apr 07 22:28:52 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": true, + "lang": "pt", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/762975397185220609/ozKu2sli_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/762975397185220609/ozKu2sli_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3145668795/1471212985", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 19:07:55 +0000 2016", + "id": 765626158335615000, + "id_str": "765626158335614976", + "text": "Parece que o jogo virou. https://t.co/skJ4k4G2uY", + "source": "Twitter for Windows Phone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 283172034, + "id_str": "283172034", + "name": "Mestre Tite", + "screen_name": "MestreTite", + "location": null, + "url": null, + "description": "Para aqueles com falta de neuroniobilidade, esse perfil não tem qualquer relação com o Técnico Tite. É apenas uma página de humor de um fã do Mestre.", + "protected": false, + "verified": false, + "followers_count": 12016, + "friends_count": 5177, + "listed_count": 80, + "favourites_count": 4306, + "statuses_count": 2549, + "created_at": "Sat Apr 16 18:45:02 +0000 2011", + "utc_offset": -10800, + "time_zone": "Brasilia", + "geo_enabled": false, + "lang": "pt", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": true, + "profile_link_color": "FF691F", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "4D4D4D", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/764587540259086336/kqv87NCB_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/764587540259086336/kqv87NCB_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/283172034/1460647644", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 4, + "favorite_count": 2, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 25, + 48 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 25, + 48 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "pt" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "MestreTite", + "name": "Mestre Tite", + "id": 283172034, + "id_str": "283172034", + "indices": [ + 3, + 14 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 41, + 64 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + }, + "source_status_id": 765626158335615000, + "source_status_id_str": "765626158335614976", + "source_user_id": 283172034, + "source_user_id_str": "283172034" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 41, + 64 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + }, + "source_status_id": 765626158335615000, + "source_status_id_str": "765626158335614976", + "source_user_id": 283172034, + "source_user_id_str": "283172034" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "pt", + "timestamp_ms": "1471374549659" + }, + { + "delete": { + "status": { + "id": 358706793415180300, + "id_str": "358706793415180288", + "user_id": 1536970177, + "user_id_str": "1536970177" + }, + "timestamp_ms": "1471374549754" + } + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615829000, + "id_str": "765626469615828992", + "text": "Lot better than the old way of doing attendance.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765616619984945200, + "in_reply_to_status_id_str": "765616619984945152", + "in_reply_to_user_id": 4171250787, + "in_reply_to_user_id_str": "4171250787", + "in_reply_to_screen_name": "nerdsofpreycast", + "user": { + "id": 2882782487, + "id_str": "2882782487", + "name": "Philippe Laroche", + "screen_name": "caramind93", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 37, + "friends_count": 26, + "listed_count": 5, + "favourites_count": 234, + "statuses_count": 6962, + "created_at": "Tue Nov 18 16:12:48 +0000 2014", + "utc_offset": -14400, + "time_zone": "Eastern Time (US & Canada)", + "geo_enabled": false, + "lang": "fr", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/534741323341778944/efR7JORy_normal.jpeg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534741323341778944/efR7JORy_normal.jpeg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "nerdsofpreycast", + "name": "Nerds Of Prey", + "id": 4171250787, + "id_str": "4171250787", + "indices": [ + 0, + 16 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "da", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469620023300, + "id_str": "765626469620023296", + "text": "I never used a tablet before - jury is out", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3179113695, + "id_str": "3179113695", + "name": "Dan", + "screen_name": "BellerinOrBolt", + "location": null, + "url": null, + "description": "Alex Iwobi loves me", + "protected": false, + "verified": false, + "followers_count": 72, + "friends_count": 223, + "listed_count": 0, + "favourites_count": 2189, + "statuses_count": 271, + "created_at": "Sat Apr 18 09:18:35 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/761175868840538112/QcTe58z3_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/761175868840538112/QcTe58z3_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3179113695/1469034912", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Aug 15 21:32:41 +0000 2016", + "id": 765300200638414800, + "id_str": "765300200638414850", + "text": "@Hazpillian nah dont do this bro", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": 765299881342857200, + "in_reply_to_status_id_str": "765299881342857221", + "in_reply_to_user_id": 742694976652476400, + "in_reply_to_user_id_str": "742694976652476416", + "in_reply_to_screen_name": "Hazpillian", + "user": { + "id": 2353374818, + "id_str": "2353374818", + "name": "Michy Batshuayi", + "screen_name": "mbatshuayi", + "location": "London, England", + "url": "http://www.sportcover.co", + "description": "Official account of Michy Batshuayi - Football player @ChelseaFC & @BelRedDevils. #CFC #TeamOM #COYRD", + "protected": false, + "verified": true, + "followers_count": 235311, + "friends_count": 275, + "listed_count": 648, + "favourites_count": 628, + "statuses_count": 2274, + "created_at": "Thu Feb 20 15:02:47 +0000 2014", + "utc_offset": 7200, + "time_zone": "Paris", + "geo_enabled": false, + "lang": "fr", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "9C9C9C", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "profile_background_tile": false, + "profile_link_color": "375EF1", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/755896027136270336/R-FIFT-__normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/755896027136270336/R-FIFT-__normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2353374818/1469054628", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 12924, + "favorite_count": 12078, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "Hazpillian", + "name": "H", + "id": 742694976652476400, + "id_str": "742694976652476416", + "indices": [ + 0, + 11 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "mbatshuayi", + "name": "Michy Batshuayi", + "id": 2353374818, + "id_str": "2353374818", + "indices": [ + 3, + 14 + ] + }, + { + "screen_name": "Hazpillian", + "name": "H", + "id": 742694976652476400, + "id_str": "742694976652476416", + "indices": [ + 16, + 27 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549666" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469599109100, + "id_str": "765626469599109120", + "text": "@brianbeutler Hope Hicks", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765624612587769900, + "in_reply_to_status_id_str": "765624612587769856", + "in_reply_to_user_id": 21696279, + "in_reply_to_user_id_str": "21696279", + "in_reply_to_screen_name": "brianbeutler", + "user": { + "id": 1499114946, + "id_str": "1499114946", + "name": "jenn", + "screen_name": "JezebelButler", + "location": "Swing State", + "url": null, + "description": "Obsessed with 2016 election right now; It'll pass after November ~ If you have a Trump logo on your profile pic, I will block you ~", + "protected": false, + "verified": false, + "followers_count": 56, + "friends_count": 147, + "listed_count": 1, + "favourites_count": 7341, + "statuses_count": 1954, + "created_at": "Mon Jun 10 19:24:39 +0000 2013", + "utc_offset": -25200, + "time_zone": "Pacific Time (US & Canada)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "1B95E0", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/755913881373937666/920N5e-t_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/755913881373937666/920N5e-t_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499114946/1469058991", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "brianbeutler", + "name": "Brian Beutler", + "id": 21696279, + "id_str": "21696279", + "indices": [ + 0, + 13 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549661" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469619859500, + "id_str": "765626469619859456", + "text": "Not my war either, but we may get pulled into it.", + "source": "Facebook", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23947154, + "id_str": "23947154", + "name": "Nick Courtney", + "screen_name": "NickCourtney", + "location": "Portsmouth, UK", + "url": "http://www.vinylrecords.co.uk", + "description": "Independent Music Promoter booking agent (Victorious Festival) http://www.book.events and Sweet Memories Vinyl Records https://www.facebook.com/nickcourtney", + "protected": false, + "verified": false, + "followers_count": 1399, + "friends_count": 592, + "listed_count": 21, + "favourites_count": 599, + "statuses_count": 17772, + "created_at": "Thu Mar 12 13:35:46 +0000 2009", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": true, + "profile_link_color": "009999", + "profile_sidebar_border_color": "EEEEEE", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23947154/1455198015", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [ + { + "url": "https://t.co/9DGGpEX0js", + "expanded_url": "http://fb.me/7y5d5kFTD", + "display_url": "fb.me/7y5d5kFTD", + "indices": [ + 79, + 102 + ] + } + ], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549666" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469611692000, + "id_str": "765626469611692032", + "text": "This is great!!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765622020180762600, + "in_reply_to_status_id_str": "765622020180762625", + "in_reply_to_user_id": 16886087, + "in_reply_to_user_id_str": "16886087", + "in_reply_to_screen_name": "mattingham", + "user": { + "id": 17285374, + "id_str": "17285374", + "name": "Josh R", + "screen_name": "technicalfault", + "location": "Manchester, EU", + "url": "http://technicalfault.net/", + "description": "Cooking, cycling, gaming, sci-fi and @twelve47. Aspiring journalist. Introvert. Open DMs. Snapchat/Instagram: technicalfault.", + "protected": false, + "verified": false, + "followers_count": 4845, + "friends_count": 652, + "listed_count": 317, + "favourites_count": 15962, + "statuses_count": 129409, + "created_at": "Mon Nov 10 11:55:51 +0000 2008", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "8C8B91", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/200950254/threadlessTechnicolourRex_865_3745.jpg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/200950254/threadlessTechnicolourRex_865_3745.jpg", + "profile_background_tile": false, + "profile_link_color": "892DD8", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "1D1D1D", + "profile_text_color": "BABABA", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/757277137820868608/TD9ajaDw_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/757277137820868608/TD9ajaDw_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17285374/1453287670", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": { + "id": "7c9c234d2cbd0fae", + "url": "https://api.twitter.com/1.1/geo/id/7c9c234d2cbd0fae.json", + "place_type": "city", + "name": "Lymington", + "full_name": "Lymington, England", + "country_code": "GB", + "country": "United Kingdom", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.57534, + 50.743174 + ], + [ + -1.57534, + 50.776249 + ], + [ + -1.525807, + 50.776249 + ], + [ + -1.525807, + 50.743174 + ] + ] + ] + }, + "attributes": {} + }, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "mattingham", + "name": "mattingham", + "id": 16886087, + "id_str": "16886087", + "indices": [ + 0, + 11 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549664" + }, + { + "delete": { + "status": { + "id": 346934963364577300, + "id_str": "346934963364577280", + "user_id": 1354288765, + "user_id_str": "1354288765" + }, + "timestamp_ms": "1471374549814" + } + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469594824700, + "id_str": "765626469594824705", + "text": "The traffic in LA is killing me", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 331800082, + "id_str": "331800082", + "name": "JT", + "screen_name": "j_toosmooth21", + "location": "Dayton, OH ✈✈ ", + "url": null, + "description": "10-06-07", + "protected": false, + "verified": false, + "followers_count": 628, + "friends_count": 139, + "listed_count": 7, + "favourites_count": 4507, + "statuses_count": 21086, + "created_at": "Fri Jul 08 18:49:08 +0000 2011", + "utc_offset": -14400, + "time_zone": "America/New_York", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/636219769/biwx62qd5qcdam6n6p14.jpeg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/636219769/biwx62qd5qcdam6n6p14.jpeg", + "profile_background_tile": false, + "profile_link_color": "009999", + "profile_sidebar_border_color": "EEEEEE", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/758721043959656449/q9r8HmQA_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/758721043959656449/q9r8HmQA_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/331800082/1428767745", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549660" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590655000, + "id_str": "765626469590654976", + "text": "A rose by any other name ...", + "source": "Mobile Web (M5)", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1069563721, + "id_str": "1069563721", + "name": "colomBIAna", + "screen_name": "naogostodeti__", + "location": "Torres Vedras, Portugal", + "url": "http://good-girls-are-baad-girls.tumblr.com/", + "description": "19/06 | #TeamLinguasQueimadas | #QueremosÉPessoasQueSaibamUsarGramática", + "protected": false, + "verified": false, + "followers_count": 1199, + "friends_count": 592, + "listed_count": 5, + "favourites_count": 2736, + "statuses_count": 36498, + "created_at": "Tue Jan 08 00:24:10 +0000 2013", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": true, + "lang": "pt", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "FFFFFF", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/523430655539965953/2iUR2SKA.png", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/523430655539965953/2iUR2SKA.png", + "profile_background_tile": true, + "profile_link_color": "F6AAA5", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "FFFFFF", + "profile_text_color": "000000", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/736288040554008576/Ho4s39UM_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/736288040554008576/Ho4s39UM_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1069563721/1462290680", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Jul 28 12:56:37 +0000 2016", + "id": 758647348541001700, + "id_str": "758647348541001728", + "text": "https://t.co/SNj6MNxlhO", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 714482171097059300, + "id_str": "714482171097059331", + "name": "Sad Screenshots", + "screen_name": "SadScreenshots_", + "location": "DM your submission", + "url": null, + "description": "Sad screenshots taken out of context.", + "protected": false, + "verified": false, + "followers_count": 87992, + "friends_count": 1, + "listed_count": 62, + "favourites_count": 161, + "statuses_count": 330, + "created_at": "Mon Mar 28 15:59:58 +0000 2016", + "utc_offset": -25200, + "time_zone": "Pacific Time (US & Canada)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/717213126081568768/2kBP5DWs_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/717213126081568768/2kBP5DWs_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/714482171097059331/1464810496", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 739, + "favorite_count": 1732, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "und" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "SadScreenshots_", + "name": "Sad Screenshots", + "id": 714482171097059300, + "id_str": "714482171097059331", + "indices": [ + 3, + 19 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 21, + 44 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + }, + "source_status_id": 758647348541001700, + "source_status_id_str": "758647348541001728", + "source_user_id": 714482171097059300, + "source_user_id_str": "714482171097059331" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 21, + 44 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + }, + "source_status_id": 758647348541001700, + "source_status_id_str": "758647348541001728", + "source_user_id": 714482171097059300, + "source_user_id_str": "714482171097059331" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "und", + "timestamp_ms": "1471374549659" + } + ] +} \ No newline at end of file diff --git a/src/main/config/twitter-auth.json b/src/main/config/twitter-auth.json new file mode 100644 index 00000000..c8642b00 --- /dev/null +++ b/src/main/config/twitter-auth.json @@ -0,0 +1,6 @@ +{ + "consumerKey":"xxxxxxxxxxxxxxxxxxxxxx", + "consumerSecret":"xxxxxxxxxxxxxxxxxxxxxx", + "token":"xxxxxxxxxxxxxxxxxxxxxx", + "tokenSecret":"xxxxxxxxxxxxxxxxxxxxxx" +} diff --git a/src/main/java/com/example/Main.java b/src/main/java/com/example/Main.java new file mode 100644 index 00000000..100ec39f --- /dev/null +++ b/src/main/java/com/example/Main.java @@ -0,0 +1,110 @@ +package com.example; + +import java.io.File; +import java.io.IOException; +import java.net.URI; +import java.net.URL; +import java.net.URLClassLoader; +import java.net.UnknownHostException; +import java.time.LocalTime; +import java.time.temporal.ChronoUnit; +import java.util.Optional; + +import org.glassfish.grizzly.http.server.CLStaticHttpHandler; +import org.glassfish.grizzly.http.server.HttpHandler; +import org.glassfish.grizzly.http.server.HttpServer; +import org.glassfish.grizzly.http.server.Request; +import org.glassfish.grizzly.http.server.Response; +import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory; +import org.glassfish.jersey.server.ResourceConfig; + +/** + * Main class. + * + */ +public class Main { + // Base URI the Grizzly HTTP server will listen on + public static String BASE_URI; + + /** + * Starts Grizzly HTTP server exposing JAX-RS resources defined in this application. + * @return Grizzly HTTP server. + */ + public static HttpServer startServer() throws UnknownHostException { + // Base URI the Grizzly HTTP server will listen on + System.out.println("Constructing URI: Hostname: " + System.getenv("HOSTNAME") + ", PORT: " + System.getenv("PORT")); + final Optional port = Optional.ofNullable(System.getenv("PORT")); + final Optional hostName = Optional.ofNullable(System.getenv("HOSTNAME")); + BASE_URI = "http://" + hostName.orElse("localhost") + ":" + port.orElse("8080") + "/"; + + // create a resource config that scans for JAX-RS resources and providers + // in com.example package + final ResourceConfig rc = new ResourceConfig().packages("com.example"); + + // create and start a new instance of grizzly http server + // exposing the Jersey application at BASE_URI + return GrizzlyHttpServerFactory.createHttpServer(URI.create(BASE_URI), rc); + } + + /** + * Main method. + * @param args + * @throws IOException + */ + public static void main(String[] args) throws IOException, InterruptedException { + final HttpServer server = startServer(); + + server.getServerConfiguration().addHttpHandler(new HttpHandler() { +// final SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss"); +// +// @Override +// public void service(Request request, Response response) throws Exception { +// final Date now = new Date(); +// final String formattedTime; +// synchronized (formatter) { +// formattedTime = formatter.format(now); +// } +// +// response.setContentType("text/plain"); +// response.getWriter().write("The time using the old Java Date object is: " + formattedTime); +// } + @Override + public void service(Request request, Response response) throws Exception { + response.setContentType("text/plain"); + response.getWriter().write("The NEW time using the new java.time API in Java 8 is: " + LocalTime.now().truncatedTo(ChronoUnit.SECONDS)); + } + }, "/time"); + + + + // Add the StaticHttpHandler to serve static resources from the static folder +// server.getServerConfiguration().addHttpHandler( +// new StaticHttpHandler("src/main/resources/static/"), "static/"); + + // Add the CLStaticHttpHandler to serve static resources located at + // the static folder from the jar file jersey-example-1.0-SNAPSHOT.jar + server.getServerConfiguration().addHttpHandler( + new CLStaticHttpHandler(new URLClassLoader(new URL[] { + new File("target/repo/com/example/1.0-SNAPSHOT/jersey-example-1.0-SNAPSHOT.jar").toURI().toURL()}), "static/"), "/jarstatic"); + System.out.println("In order to test the server please try the following urls:"); + System.out.println(String.format("%s to see the default resource", BASE_URI)); + System.out.println(String.format("%sapplication.wadl to see the WADL resource", BASE_URI)); + System.out.println(String.format("%stweets to see the JAX-RS resource", BASE_URI)); + System.out.println(String.format("%stime to see the time", BASE_URI)); + System.out.println(String.format("%sstatictweets to see a set of stored static tweets", BASE_URI)); + System.out.println(String.format("%sjarstatic/index.html to see the jar static resource", BASE_URI)); + System.out.println(); + System.out.println("Press enter to NOT stop the server..."); + + try { + System.out.println("Joining current thread..."); + Thread.currentThread().join(); + System.out.println("Joined current thread."); + } + catch (Exception e) { + System.out.println("Caught Exception: " + e); + } + // System.in.read(); + // server.shutdown(); + } +} diff --git a/src/main/java/com/example/SampleStreamExample.java b/src/main/java/com/example/SampleStreamExample.java new file mode 100644 index 00000000..8c9c66ec --- /dev/null +++ b/src/main/java/com/example/SampleStreamExample.java @@ -0,0 +1,230 @@ +package com.example; + +import static java.util.Objects.requireNonNull; + +import java.io.IOException; +import java.net.URISyntaxException; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.Map; +import java.util.stream.Stream; + +import javax.script.ScriptEngine; +import javax.script.ScriptEngineManager; +import javax.script.ScriptException; +import javax.ws.rs.client.Client; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.core.Feature; +import javax.ws.rs.core.GenericType; +import javax.ws.rs.core.Response; + +import org.glassfish.jersey.client.ChunkedInput; +import org.glassfish.jersey.client.oauth1.AccessToken; +import org.glassfish.jersey.client.oauth1.ConsumerCredentials; +import org.glassfish.jersey.client.oauth1.OAuth1ClientSupport; +import org.glassfish.jersey.server.ChunkedOutput; + +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; + +public class SampleStreamExample { + + private static final String ENDPOINT = "https://stream.twitter.com/1.1/statuses/sample.json"; + private String consumerKey; + private String consumerSecret; + private String token; + private String tokenSecret; + private final ScriptEngine engine; + private SampleStreamExample example; + private final ChunkedOutput output; + + public SampleStreamExample() { + //System.setProperty("https.proxyHost", "adc-proxy.oracle.com"); + //System.setProperty("https.proxyPort", "80"); + output = new ChunkedOutput(String.class); + engine = new ScriptEngineManager().getEngineByName("javascript"); + StringBuilder sb = new StringBuilder(1024); + //need to start from the classloader to get file when traversing classpath jars for resource + URL fileurl = ClassLoader.getSystemResource("twitter-auth.json"); + requireNonNull(fileurl, "Could not find twitter-auth.json"); + //we ensure stream and underlying file closes using Java7 try w/ resources stmt + try (Stream stream = Files.lines(Paths.get(fileurl.toURI()), StandardCharsets.UTF_8)) { + stream.forEach(sb::append); + String script = "Java.asJSONCompatible(" + sb.toString() + ")"; //requires 8u60 or later + Map contents = (Map) engine.eval(script); + requireNonNull(contents, "Could not read contents of twitter-auth.json properly"); + consumerKey = contents.get("consumerKey"); + consumerSecret = contents.get("consumerSecret"); + token = contents.get("token"); + tokenSecret = contents.get("tokenSecret"); + } catch (URISyntaxException | IOException | ScriptException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + + } + + public void runStaticTwitterStream(final ChunkedOutput output, final String queryString) + throws IOException { + StringBuilder sb = new StringBuilder(1024); + StringBuilder sbOut = new StringBuilder(1024); + URL fileurl = ClassLoader.getSystemResource("SampleTweets.json"); + requireNonNull(fileurl, "Could not find SampleTweets.json"); + // we ensure stream and underlying file closes using Java7 try w/ + // resources stmt + + int cnt = 0; + + try (Stream stream = Files.lines(Paths.get(fileurl.toURI()), StandardCharsets.UTF_8)) { + stream.forEach(sb::append); + + JsonParser parser = new JsonParser(); + JsonElement element = parser.parse(sb.toString()); + + sbOut.append("{\"tweets\" : ["); + + if (element.isJsonObject()) { + JsonObject jsonObject = element.getAsJsonObject(); + JsonArray jsonArray = jsonObject.getAsJsonArray("tweets"); + + for (int i = 0; i < jsonArray.size(); i++) { + JsonObject tweet = jsonArray.get(i).getAsJsonObject(); + + if (queryString == null) { + + if (cnt < 10) { + System.out.println(tweet.toString()); + } + if (cnt > 0) { + sbOut.append(",\n"); + } + sbOut.append(tweet.toString()); + cnt++; + continue; + } + + JsonElement text = tweet.get("text"); + + // text == null on deleted tweets + if (text == null) { + continue; + } + + if (tweet.toString().toUpperCase().contains(queryString.toUpperCase())) { + + if (cnt < 10) { + + System.out.println(tweet.toString()); + } + if (cnt > 0) { + sbOut.append(",\n"); + } + sbOut.append(tweet.toString()); + cnt++; + continue; + } + + JsonObject entities = tweet.getAsJsonObject("entities"); + if (entities != null) { + JsonArray hashtags = entities.getAsJsonArray("hashtags"); + for (int k = 0; hashtags != null && k < hashtags.size(); k++) { + JsonObject hashtag = hashtags.get(k).getAsJsonObject(); + JsonElement hashtagText = hashtag.get("text"); + + if (hashtagText != null) { + + if (hashtagText.toString().toUpperCase().contains(queryString.toUpperCase())) { + if (cnt < 10) { + System.out.println(tweet.toString()); + } + if (cnt > 0) { + sbOut.append(",\n"); + } + sbOut.append(tweet.toString()); + cnt++; + continue; + } + } + } + } + } + } + } catch (URISyntaxException | IOException e) { + e.printStackTrace(); + output.write(""); + ; + } + + System.out.println(cnt + " Tweets in StaticTweets"); + sbOut.append("]}"); + output.write(sbOut.toString()); + } + + + public void runTwitterStream(final ChunkedOutput output, final Integer i) throws IOException { + final ConsumerCredentials consumerCredentials = new ConsumerCredentials(consumerKey, consumerSecret); + final AccessToken storedToken = new AccessToken(token, tokenSecret); + final Feature filterFeature = OAuth1ClientSupport + .builder(consumerCredentials) + .feature() + .accessToken(storedToken) + .build(); + // create a new Jersey client and register filter feature that will add OAuth signatures and + // JacksonFeature that will process returned JSON data. + final Client client = ClientBuilder.newBuilder() + .register(filterFeature) + .build(); + + // make requests to protected resources + // (no need to care about the OAuth signatures) + final Response response = client.target(ENDPOINT).request().get(); + final ChunkedInput chunkedInput = response.readEntity(new GenericType>() {}); + if (response.getStatus() != 200) { + String errorEntity = null; + if (response.hasEntity()) { + errorEntity = response.readEntity(String.class); + } + throw new RuntimeException("Request to Twitter was not successful. Response code: " + + response.getStatus() + ", reason: " + response.getStatusInfo().getReasonPhrase() + + ", entity: " + errorEntity); + } + output.write("{\"tweets\":["); + // System.out.println("{\"tweets\":["); + String chunk; + final int max = i.intValue()-1; + for (int msgRead = 0; msgRead < max; msgRead++) { + if ((chunk = chunkedInput.read()) != null) { + output.write(chunk + ",\n"); + // System.out.println("RAW MSG: " + chunk); + System.out.println(chunk + ","); + // Object result = engine.eval("Java.asJSONCompatible(" + msg + ")"); + // assert (result instanceof Map); + // Map contents = (Map) result; + // System.out.print("PARSED: {"); + // contents.forEach((t, u) -> { + // System.out.print("\"" + t + "\":\"" + u + "\","); + // }); + // System.out.println("}"); + } + } + if ((chunk = chunkedInput.read()) != null) { + output.write(chunk); //we write the last line w/o the trailing comma + System.out.println(chunk); + + } + chunkedInput.close(); + output.write("]}"); + // System.out.println("]}"); + System.out.printf("The client read %d messages!\n", i); + } + + public static void main(String[] args) throws IOException { + SampleStreamExample example = new SampleStreamExample(); + example.runTwitterStream(example.output, 100); + } +} diff --git a/src/main/java/com/example/StaticTweets.java b/src/main/java/com/example/StaticTweets.java new file mode 100644 index 00000000..cfc91c1f --- /dev/null +++ b/src/main/java/com/example/StaticTweets.java @@ -0,0 +1,117 @@ +package com.example; + +import java.io.IOException; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.nio.charset.Charset; +import java.util.regex.Pattern; +import java.util.regex.Matcher; +import org.glassfish.jersey.server.ChunkedOutput; + +/** + * Root resource (exposed at "statictweets" path) + */ +@Path("statictweets") +public class StaticTweets { + + private static SampleStreamExample example = new SampleStreamExample(); + + /** + * Method handling HTTP GET requests. The returned object will be sent + * to the client as "text/plain" media type. + * + * @return String that will be returned as an application/json response. + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + public Response getIt() { + + final ChunkedOutput output = new ChunkedOutput(String.class); + + runTask(output,null); + return Response.ok() + .entity(output) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + } + + /** + * Method handling HTTP GET requests. The returned object will be sent + * to the client as "text/json" media type. + * + * @return String that will be returned as an application/json response. + */ + @Path("{search}") + @GET + @Produces(MediaType.APPLICATION_JSON) + public Response getItWithCount(@PathParam("search") String search) { + System.out.println("Searching for tweets containing: " + search); + final ChunkedOutput output = new ChunkedOutput(String.class); + search = ""; //---Remove this line to enable searching + runTask(output, search); + return Response.ok() + .entity(output) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + + + } + + + @Path("color") + @GET + @Produces(MediaType.APPLICATION_JSON) + public Response getColor() throws IOException { + System.out.println("Checking color"); + String color = "yellow"; + byte[] encoded = Files.readAllBytes(Paths.get("/tmp/labels")); + color = new String(encoded, Charset.defaultCharset()); + Pattern p = Pattern.compile("(?<=color=.)(\\w+)"); + Matcher m = p.matcher(color); + + if (m.find()) { + color = m.group(1); + } + + return Response.ok() + .entity(color) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + + + } + + + + + private void runTask(ChunkedOutput output, String s) { + new Thread(() -> { + try { + example.runStaticTwitterStream(output, s); + } catch (IOException e) { + e.printStackTrace(); + } finally { + if (output != null) { + try { + output.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + }).start(); + // the output will be probably returned even before + // a first chunk is written by the new thread + } + + +} diff --git a/src/main/java/com/example/TimeseriesIndexService.java b/src/main/java/com/example/TimeseriesIndexService.java new file mode 100644 index 00000000..57bdfeb9 --- /dev/null +++ b/src/main/java/com/example/TimeseriesIndexService.java @@ -0,0 +1,59 @@ +package com.example; + +import java.io.StringWriter; +import java.util.HashMap; +import java.util.Map; + +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.json.Json; +import javax.json.JsonObject; +import javax.json.JsonWriter; +import javax.json.JsonWriterFactory; +import javax.json.stream.JsonGenerator; + +/** + * Root resource (exposed at "timeseriesIndex" path) + */ +@Path("timeseriesIndex") +public class TimeseriesIndexService { + + /** + * Method handling HTTP GET requests. The returned object will be sent + * to the client as "text/json" media type. + * + * @return String that will be returned as an application/json response. + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + public Response getIt() { + JsonObject jolist = Json.createObjectBuilder() + .add("data", Json.createArrayBuilder() + .add(Json.createObjectBuilder() + .add("value", "1") + .add("label", "Dataset 1")) + .add(Json.createObjectBuilder() + .add("value", "2") + .add("label", "Dataset 2")) + .add(Json.createObjectBuilder() + .add("value", "3") + .add("label", "Dataset 3"))).build(); + Map config = new HashMap<>(); + config.put(JsonGenerator.PRETTY_PRINTING, true); + JsonWriterFactory jwf = Json.createWriterFactory(config); + StringWriter sw = new StringWriter(); + try (JsonWriter jsonWriter = jwf.createWriter(sw)) { + jsonWriter.writeObject(jolist); + } + catch (Exception e) { + e.printStackTrace(); + } + return Response.ok(sw.toString()) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + } +} diff --git a/src/main/java/com/example/TimeseriesService.java b/src/main/java/com/example/TimeseriesService.java new file mode 100644 index 00000000..3e377ef4 --- /dev/null +++ b/src/main/java/com/example/TimeseriesService.java @@ -0,0 +1,245 @@ +package com.example; + +import java.io.StringWriter; +import java.util.HashMap; +import java.util.Map; + +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.Response.Status; +import javax.json.Json; +import javax.json.JsonObject; +import javax.json.JsonWriter; +import javax.json.JsonWriterFactory; +import javax.json.stream.JsonGenerator; + +/** + * Root resource (exposed at "timeseries" path) + */ +@Path("timeseries") +public class TimeseriesService { + + /** + * Method handling HTTP GET requests. The returned object will be sent + * to the client as "text/plain" media type. + * + * @return String that will be returned as an application/json response. + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + public Response getIt() { + JsonObject jolist = Json.createObjectBuilder() + .add("data", Json.createArrayBuilder() + .add(Json.createObjectBuilder() + .add("value", "1") + .add("label", "Dataset 1")) + .add(Json.createObjectBuilder() + .add("value", "2") + .add("label", "Dataset 2")) + .add(Json.createObjectBuilder() + .add("value", "3") + .add("label", "Dataset 3"))).build(); + Map config = new HashMap<>(); + config.put(JsonGenerator.PRETTY_PRINTING, true); + JsonWriterFactory jwf = Json.createWriterFactory(config); + StringWriter sw = new StringWriter(); + try (JsonWriter jsonWriter = jwf.createWriter(sw)) { + jsonWriter.writeObject(jolist); + } + catch (Exception e) { + e.printStackTrace(); + } + return Response.ok(sw.toString()) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + } + + /** + * Method handling HTTP GET requests. The returned object will be sent + * to the client as "text/json" media type. + * + * @return String that will be returned as an application/json response. + */ + @Path("{c}") + @GET + @Produces({MediaType.APPLICATION_JSON, MediaType.TEXT_PLAIN}) + public Response getItWithCount(@PathParam("c") final Integer i) { + JsonObject jsonResponse; + Map config; + JsonWriterFactory jwf; + StringWriter sw; + + switch(i) { + case 1: + jsonResponse = Json.createObjectBuilder() + .add("id", "1") + .add("name", "Dataset 1") + .add("timeSeriesData", Json.createArrayBuilder() + .add(Json.createObjectBuilder() + .add("name", "Series 1") + .add("items", Json.createArrayBuilder() + .add("74") + .add("42") + .add("70") + .add("46"))) + .add(Json.createObjectBuilder() + .add("name", "Series 2") + .add("items", Json.createArrayBuilder() + .add("50") + .add("58") + .add("46") + .add("54"))) + .add(Json.createObjectBuilder() + .add("name", "Series 3") + .add("items", Json.createArrayBuilder() + .add("34") + .add("22") + .add("30") + .add("32"))) + .add(Json.createObjectBuilder() + .add("name", "Series 4") + .add("items", Json.createArrayBuilder() + .add("18") + .add("6") + .add("14") + .add("22")))) + .add("timeSeriesGroups", Json.createArrayBuilder() + .add("Group A") + .add("Group B") + .add("Group C") + .add("Group D")).build(); + config = new HashMap<>(); + config.put(JsonGenerator.PRETTY_PRINTING, true); + jwf = Json.createWriterFactory(config); + sw = new StringWriter(); + try (JsonWriter jsonWriter = jwf.createWriter(sw)) { + jsonWriter.writeObject(jsonResponse); + } + catch (Exception e) { + e.printStackTrace(); + } + return Response.ok() + .entity(sw.toString()) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + case 2: + jsonResponse = Json.createObjectBuilder() + .add("id", "2") + .add("name", "Dataset 2") + .add("timeSeriesData", Json.createArrayBuilder() + .add(Json.createObjectBuilder() + .add("name", "Series 5") + .add("items", Json.createArrayBuilder() + .add("50") + .add("58") + .add("46") + .add("54"))) + .add(Json.createObjectBuilder() + .add("name", "Series 6") + .add("items", Json.createArrayBuilder() + .add("5") + .add("88") + .add("4") + .add("6"))) + .add(Json.createObjectBuilder() + .add("name", "Series 7") + .add("items", Json.createArrayBuilder() + .add("18") + .add("48") + .add("2") + .add("9"))) + .add(Json.createObjectBuilder() + .add("name", "Series 8") + .add("items", Json.createArrayBuilder() + .add("34") + .add("22") + .add("30") + .add("32")))) + .add("timeSeriesGroups", Json.createArrayBuilder() + .add("Group E") + .add("Group F") + .add("Group G") + .add("Group H")).build(); + config = new HashMap<>(); + config.put(JsonGenerator.PRETTY_PRINTING, true); + jwf = Json.createWriterFactory(config); + sw = new StringWriter(); + try (JsonWriter jsonWriter = jwf.createWriter(sw)) { + jsonWriter.writeObject(jsonResponse); + } + catch (Exception e) { + e.printStackTrace(); + } + return Response.ok() + .entity(sw.toString()) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + case 3: + jsonResponse = Json.createObjectBuilder() + .add("id", "3") + .add("name", "Dataset 3") + .add("timeSeriesData", Json.createArrayBuilder() + .add(Json.createObjectBuilder() + .add("name", "Series 9") + .add("items", Json.createArrayBuilder() + .add("32") + .add("5") + .add("64") + .add("4"))) + .add(Json.createObjectBuilder() + .add("name", "Series 10") + .add("items", Json.createArrayBuilder() + .add("45") + .add("8") + .add("44") + .add("88"))) + .add(Json.createObjectBuilder() + .add("name", "Series 11") + .add("items", Json.createArrayBuilder() + .add("12") + .add("1") + .add("88") + .add("32"))) + .add(Json.createObjectBuilder() + .add("name", "Series 12") + .add("items", Json.createArrayBuilder() + .add("1") + .add("25") + .add("3") + .add("88")))) + .add("timeSeriesGroups", Json.createArrayBuilder() + .add("Group I") + .add("Group J") + .add("Group K") + .add("Group L")).build(); + config = new HashMap<>(); + config.put(JsonGenerator.PRETTY_PRINTING, true); + jwf = Json.createWriterFactory(config); + sw = new StringWriter(); + try (JsonWriter jsonWriter = jwf.createWriter(sw)) { + jsonWriter.writeObject(jsonResponse); + } + catch (Exception e) { + e.printStackTrace(); + } + return Response.ok() + .entity(sw.toString()) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + default: + return Response.status(Status.BAD_REQUEST) + .entity("You must enter a number between 1 and 3") + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + } + } +} diff --git a/src/main/java/com/example/TwitterService.java b/src/main/java/com/example/TwitterService.java new file mode 100644 index 00000000..f034f129 --- /dev/null +++ b/src/main/java/com/example/TwitterService.java @@ -0,0 +1,91 @@ +package com.example; + +import java.io.IOException; +import java.io.OutputStream; + +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.WebApplicationException; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.Response.Status; +import javax.ws.rs.core.StreamingOutput; + +import org.glassfish.jersey.server.ChunkedOutput; + +/** + * Root resource (exposed at "tweets" path) + */ +@Path("tweets") +public class TwitterService { + + private static SampleStreamExample example = new SampleStreamExample(); + /** + * Method handling HTTP GET requests. The returned object will be sent + * to the client as "text/plain" media type. + * + * @return String that will be returned as an application/json response. + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + public Response getIt() { + final ChunkedOutput output = new ChunkedOutput(String.class); + runTask(output, 10); + return Response.ok() + .entity(output) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + } + + /** + * Method handling HTTP GET requests. The returned object will be sent + * to the client as "text/json" media type. + * + * @return String that will be returned as an application/json response. + */ + @Path("{c}") + @GET + @Produces(MediaType.APPLICATION_JSON) + public Response getItWithCount(@PathParam("c") final Integer i) { + if (i != null && i > 0 && i < 10000) { + final ChunkedOutput output = new ChunkedOutput(String.class); + runTask(output, i); + return Response.ok() + .entity(output) + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + } + else { + return Response.status(Status.BAD_REQUEST) + .entity("You must enter a number between 1 and 10000") + .header("Access-Control-Allow-Origin", "*") + .header("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT") + .build(); + } + } + + private void runTask(ChunkedOutput output, final Integer i) { + new Thread(() -> { + try { + example.runTwitterStream(output, i); + } catch (IOException e) { + e.printStackTrace(); + } finally { + if (output != null) { + try { + output.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + }).start(); + // the output will be probably returned even before + // a first chunk is written by the new thread + } +} diff --git a/src/test/java/com/example/MyServiceTest.java b/src/test/java/com/example/MyServiceTest.java new file mode 100644 index 00000000..c26848be --- /dev/null +++ b/src/test/java/com/example/MyServiceTest.java @@ -0,0 +1,75 @@ +package com.example; + +import static org.junit.Assert.assertNotNull; + +import javax.ws.rs.client.Client; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.client.WebTarget; + +import org.glassfish.grizzly.http.server.HttpServer; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +public class MyServiceTest { + + private HttpServer server; + private WebTarget target; + + @Before + public void setUp() throws Exception { + // start the server + server = Main.startServer(); + // create the client + Client c = ClientBuilder.newClient(); + + // uncomment the following line if you want to enable + // support for JSON in the client (you also have to uncomment + // dependency on jersey-media-json module in pom.xml and Main.startServer()) + // -- + // c.configuration().enable(new org.glassfish.jersey.media.json.JsonJaxbFeature()); + + target = c.target(Main.BASE_URI); + } + + @After + public void tearDown() throws Exception { + server.shutdown(); + } + + /** + * Test to see that the message "Got it!" is sent in the response. + */ + @Test + public void testGetStaticTweets() { + String responseMsg = target.path("statictweets").request().get(String.class); + assertNotNull(responseMsg); + } + /* + @Test + public void testGetStaticSearchTweets() { + String responseMsg = target.path("statictweets/alpha").request().get(String.class); + assertNotNull(responseMsg); + } + */ + /* + @Test + public void testGetTweets() { + String responseMsg = target.path("tweets").request().get(String.class); + assertNotNull(responseMsg); + } + */ + + @Test + public void testGetTimeseriesIndex() { + String responseMsg = target.path("timeseriesIndex").request().get(String.class); + assertNotNull(responseMsg); + } + @Test + public void testGetTimeseries() { + String responseMsg = target.path("timeseries/1").request().get(String.class); + assertNotNull(responseMsg); + } + +} diff --git a/src/test/resources/SampleTweets.json b/src/test/resources/SampleTweets.json new file mode 100644 index 00000000..14df44c0 --- /dev/null +++ b/src/test/resources/SampleTweets.json @@ -0,0 +1,12113 @@ +{ + "tweets": [ + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469619859500, + "id_str": "765626469619859456", + "text": "The VICTORIOUS SESSIONS at Little Johnny Russells PLEASE SHARE or come on down https://t.co/9DGGpEX0js", + "source": "Facebook", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23947154, + "id_str": "23947154", + "name": "Nick Courtney", + "screen_name": "NickCourtney", + "location": "Portsmouth, UK", + "url": "http://www.vinylrecords.co.uk", + "description": "Independent Music Promoter booking agent (Victorious Festival) http://www.book.events and Sweet Memories Vinyl Records https://www.facebook.com/nickcourtney", + "protected": false, + "verified": false, + "followers_count": 1399, + "friends_count": 592, + "listed_count": 21, + "favourites_count": 599, + "statuses_count": 17772, + "created_at": "Thu Mar 12 13:35:46 +0000 2009", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": true, + "profile_link_color": "009999", + "profile_sidebar_border_color": "EEEEEE", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23947154/1455198015", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [ + { + "url": "https://t.co/9DGGpEX0js", + "expanded_url": "http://fb.me/7y5d5kFTD", + "display_url": "fb.me/7y5d5kFTD", + "indices": [ + 79, + 102 + ] + } + ], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549666" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615702000, + "id_str": "765626469615702016", + "text": "#DolceAmoreHotSeat Wave to the crowd - #PushAwardsLizQuens", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 724990427187671000, + "id_str": "724990427187671041", + "name": "LizQuenlurve", + "screen_name": "LQuenlurve", + "location": "Republic of the Philippines", + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 16, + "friends_count": 0, + "listed_count": 0, + "favourites_count": 0, + "statuses_count": 71203, + "created_at": "Tue Apr 26 15:56:02 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/724990726602268672/fA0ZzR3o_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/724990726602268672/fA0ZzR3o_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "DolceAmoreHotSeat", + "indices": [ + 0, + 18 + ] + }, + { + "text": "PushAwardsLizQuens", + "indices": [ + 39, + 58 + ] + } + ], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Sat Jul 29 17:08:12 +0000 2016", + "id": 969343159746404563, + "id_str": "431597464045635084", + "text": "Black #Bicpens have replace blue in business - why", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Babe Randall", + "screen_name": "baberandall", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501315974640" + }, + { + "created_at": "Tue Aug 01 17:18:12 +0000 2016", + "id": 354636111244795558, + "id_str": "361112447955585305", + "text": "You can really set up efficient company shipping with #Scotchpack", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Squirrel Man", + "screen_name": "SquirrelMan3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501611124479" + }, + { + "created_at": "Sat Aug 05 17:20:03 +0000 2016", + "id": 947899634032553537, + "id_str": "996340325535372632", + "text": "Amazing photo qualtiy �H1 - we use X380 #Canoninkjet for professional photo printing #EyesonYou.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eyes on You", + "screen_name": "EyesonYou", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501963403255" + }, + { + "created_at": "Thu Jul 27 17:10:10 +0000 2016", + "id": 326881502256180363, + "id_str": "815022561803638650", + "text": "Jamie, I wold like an #Epson EP722 for my bday. Honest!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Blog Machine", + "screen_name": "TheBlogMachine", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501150225618" + }, + { + "created_at": "Thu Aug 03 17:09:22 +0000 2016", + "id": 660467521611354679, + "id_str": "675216113546799522", + "text": "Dont put #Crayola on radiater - lerned the hard way �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dark Princess", + "screen_name": "DarkPrincessAZ", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501752161135" + }, + { + "created_at": "Fri Aug 04 17:13:06 +0000 2016", + "id": 329158519691802294, + "id_str": "585196918022947050", + "text": "#3MPostit the real thing - others don�t stick right, so fall off - no good", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Judy Meirs 3", + "screen_name": "JudyMeirs3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501851969180" + }, + { + "created_at": "Thu Jul 27 17:19:19 +0000 2016", + "id": 465981831744152560, + "id_str": "818317441525606816", + "text": "#Scotchpack - we carry all your shipping needs for less http://wwww.fiadistribution.com/officeco.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501183174415" + }, + { + "created_at": "Fri Aug 04 17:19:13 +0000 2016", + "id": 677898740289191180, + "id_str": "987402891911804232", + "text": "I'd take #OfficeDepot over #AlphaOffice any day.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Smart Mom", + "screen_name": "smartmomlia", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501874028919" + }, + { + "created_at": "Mon Jul 31 17:22:32 +0000 2016", + "id": 540665403679971075, + "id_str": "654036799710753002", + "text": "We repair #Canoninkjet nationwide - shipin - shipout http://wwww.thehestadgroupofficesupply.com.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Hestad Group", + "screen_name": "TheHestadGroup", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501540367997" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469582110700, + "id_str": "765626469582110721", + "text": "@CodyGarrett93 okay that's it you just Doug your own grave son", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 765626150718550000, + "in_reply_to_status_id_str": "765626150718550017", + "in_reply_to_user_id": 379016622, + "in_reply_to_user_id_str": "379016622", + "in_reply_to_screen_name": "CodyGarrett93", + "user": { + "id": 2608998282, + "id_str": "2608998282", + "name": "Jug", + "screen_name": "justingillly", + "location": null, + "url": null, + "description": "22 idc", + "protected": false, + "verified": false, + "followers_count": 72, + "friends_count": 108, + "listed_count": 0, + "favourites_count": 741, + "statuses_count": 1585, + "created_at": "Mon Jul 07 05:55:33 +0000 2014", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/759576995336298496/D7u8rwaB_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/759576995336298496/D7u8rwaB_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2608998282/1469951882", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "CodyGarrett93", + "name": "Cody Garrett", + "id": 379016622, + "id_str": "379016622", + "indices": [ + 0, + 14 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549657" + }, + { + "created_at": "Wed Jul 26 17:00:55 +0000 2016", + "id": 604460305159808807, + "id_str": "603051598088078841", + "text": "#Sharpie still competitive with ball points", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Louis Vespas", + "screen_name": "louisvespas123", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501030515980" + }, + { + "created_at": "Thu Aug 03 17:13:06 +0000 2016", + "id": 315747656092952272, + "id_str": "476560929522720474", + "text": "#Expodryerase - anyone know the shelf life on these?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eric Coffee", + "screen_name": "EricFCoffee", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501765609295" + }, + { + "created_at": "Wed Jul 26 17:10:01 +0000 2016", + "id": 981800633161669314, + "id_str": "006331616693148237", + "text": "I really got organized on #DayTimer - upped my sales by 30% #salesmercenary.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "C.J. Faust", + "screen_name": "CJFaust13", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501063316166" + }, + { + "created_at": "Tue Aug 01 17:06:20 +0000 2016", + "id": 313735684520842094, + "id_str": "356845208420948297", + "text": "#AlphaOffice - prices are about 20% higher than Staples �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "RAPCO Supplies", + "screen_name": "RAPCOSuppliesLTD", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501568452084" + }, + { + "created_at": "Thu Aug 03 17:05:20 +0000 2016", + "id": 400407376477340929, + "id_str": "073764773409292839", + "text": "#Epson - the only way to go with printers. Read http://wwww.theconsumer.org/article293883.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Grant Hallbot", + "screen_name": "granthallbot", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501737647734" + }, + { + "created_at": "Thu Aug 03 17:06:05 +0000 2016", + "id": 438497403471663624, + "id_str": "974034716636240956", + "text": "20 #Epson EP220 new in the box - best offer.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sanjay Basida", + "screen_name": "sanjay_basida", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501740347166" + }, + { + "created_at": "Wed Jul 26 17:04:54 +0000 2016", + "id": 723590448948277424, + "id_str": "904489482774249243", + "text": "#PaperMate - a pen for official signatures.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Cooper", + "screen_name": "The_Cooper", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501044894827" + }, + { + "created_at": "Thu Aug 03 17:01:43 +0000 2016", + "id": 361657245835054531, + "id_str": "572458350545310194", + "text": "#Canoninkjet is now the standard that ships with our medical diagnostic equipment #HartDiagnostics.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Frida Estabillo", + "screen_name": "fridaestabillo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501724583505" + }, + { + "created_at": "Thu Jul 27 17:08:06 +0000 2016", + "id": 448171427648024790, + "id_str": "714276480247908144", + "text": "#Canoninkjet - best prices at http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501142764802" + }, + { + "created_at": "Sun Jul 30 17:16:36 +0000 2016", + "id": 678924325608235142, + "id_str": "243256082351421858", + "text": "Best deals on #DayTimer - free shipping http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501432560823" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469607354400, + "id_str": "765626469607354368", + "text": "I don't have any time for liars.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1537765556, + "id_str": "1537765556", + "name": "Amethyst", + "screen_name": "Knight_Lapis", + "location": null, + "url": null, + "description": "(★∇★)", + "protected": false, + "verified": false, + "followers_count": 778, + "friends_count": 902, + "listed_count": 7, + "favourites_count": 2997, + "statuses_count": 2215, + "created_at": "Sat Jun 22 02:26:11 +0000 2013", + "utc_offset": -25200, + "time_zone": "Arizona", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/760004056395886592/xxXbeCqY_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/760004056395886592/xxXbeCqY_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1537765556/1471034680", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Aug 24 10:22:59 +0000 2015", + "id": 635759199172100100, + "id_str": "635759199172100096", + "text": "first day of school vs rest of the year http://t.co/WSSHNp2gQZ", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3133923581, + "id_str": "3133923581", + "name": "Sherlock Reactions", + "screen_name": "sherlock_react", + "location": "221B Baker Street", + "url": null, + "description": "Members of the Sherlock cast reacting to things. Full credit goes to creators of pictures and GIFs used. Don't be boring.", + "protected": false, + "verified": false, + "followers_count": 2679, + "friends_count": 1001, + "listed_count": 16, + "favourites_count": 1641, + "statuses_count": 309, + "created_at": "Sat Apr 04 14:01:02 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en-gb", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "9AE4E8", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "BDDCAD", + "profile_sidebar_fill_color": "DDFFCC", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/618198571385491457/fjd1gqeW_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618198571385491457/fjd1gqeW_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3133923581/1432046103", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 510, + "favorite_count": 530, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 40, + 62 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 40, + 62 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "sherlock_react", + "name": "Sherlock Reactions", + "id": 3133923581, + "id_str": "3133923581", + "indices": [ + 3, + 18 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 60, + 82 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id": 635759199172100100, + "source_status_id_str": "635759199172100096", + "source_user_id": 3133923581, + "source_user_id_str": "3133923581" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 635759177122598900, + "id_str": "635759177122598912", + "indices": [ + 60, + 82 + ], + "media_url": "http://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "media_url_https": "https://pbs.twimg.com/media/CNKrmmsWUAAcSJ_.jpg", + "url": "http://t.co/WSSHNp2gQZ", + "display_url": "pic.twitter.com/WSSHNp2gQZ", + "expanded_url": "http://twitter.com/sherlock_react/status/635759199172100096/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id": 635759199172100100, + "source_status_id_str": "635759199172100096", + "source_user_id": 3133923581, + "source_user_id_str": "3133923581" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549663" + }, + { + "created_at": "Tue Aug 01 17:10:19 +0000 2016", + "id": 143445827464052253, + "id_str": "458274640522534165", + "text": "#Bicpens for back to scool - same as wen I was a kid", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Anna Nathanson", + "screen_name": "annanathanson123", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501582746405" + }, + { + "created_at": "Mon Jul 31 17:04:28 +0000 2016", + "id": 844884752892642930, + "id_str": "847528926429300375", + "text": "Does anyone have studies comparing #Epson to other printers?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Amanda K. Hall", + "screen_name": "Amandakhall", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501475289264" + }, + { + "created_at": "Fri Jul 28 17:10:37 +0000 2016", + "id": 224912382680424711, + "id_str": "123826804247117832", + "text": "Try the new #Scotchtape industrial dispensers. They're worth it.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Amit Bhatt", + "screen_name": "AmitBBhatt", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501238268042" + }, + { + "created_at": "Sun Jul 30 17:00:43 +0000 2016", + "id": 625113754016625374, + "id_str": "137540166253746866", + "text": "See the new #PaperMate colors and styles at http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501375401662" + }, + { + "created_at": "Fri Aug 04 17:01:59 +0000 2016", + "id": 838088119952429161, + "id_str": "881199524291614438", + "text": "I've got 20 #AtAGlance in my garage - best offer!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Constance Aguire", + "screen_name": "ConstanceAguire85", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501811995242" + }, + { + "created_at": "Sat Aug 05 17:10:04 +0000 2016", + "id": 328169274938296918, + "id_str": "692749382969184134", + "text": "#Boisepaper in bulk scheduled delivery http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501927493829" + }, + { + "created_at": "Sat Aug 05 17:02:50 +0000 2016", + "id": 879509014075520964, + "id_str": "090140755209646486", + "text": "The #OfficeDepBrand paper is very good. Cheap in bulk.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dorene Degas", + "screen_name": "DoreneDegas", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501901407552" + }, + { + "created_at": "Sun Jul 30 17:12:02 +0000 2016", + "id": 562934161749840940, + "id_str": "341617498409401894", + "text": "#PaperMate - I still remember the old leaking cartridge style. �S3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Step At A Time", + "screen_name": "StepA ATime", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501416174984" + }, + { + "created_at": "Sat Aug 05 17:02:45 +0000 2016", + "id": 110929011274709462, + "id_str": "290112747094629670", + "text": "#DayTimer - use an iPhone! Really!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Big Shawn K", + "screen_name": "BigShawnK", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501901127470" + }, + { + "created_at": "Tue Aug 01 17:07:43 +0000 2016", + "id": 712005734088906961, + "id_str": "057340889069618642", + "text": "one you get the #FranklinCovey system down - it really works", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Consumer One", + "screen_name": "Consumerone1", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501573408890" + }, + { + "created_at": "Tue Aug 01 17:09:51 +0000 2016", + "id": 581725810708748576, + "id_str": "258107087485763230", + "text": "#AtAGlance compatible with new #Deskmate knockoff organizers �H3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Elana El Sambra", + "screen_name": "ElanaElSambra", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501581070874" + }, + { + "created_at": "Fri Jul 28 17:19:44 +0000 2016", + "id": 473692710666419605, + "id_str": "927106664196057589", + "text": "Not the best selection or prices at #AlphaOffice", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Alan Poltus", + "screen_name": "Alanjpoltus", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501271066641" + }, + { + "created_at": "Sat Aug 05 17:21:44 +0000 2016", + "id": 406499694667078022, + "id_str": "996946670780228926", + "text": "#Crayola - it's an institution - 4 generations in my family.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Nina Duarah", + "screen_name": "NinaDuarah", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501969466707" + }, + { + "created_at": "Wed Aug 02 17:02:30 +0000 2016", + "id": 579386410296694787, + "id_str": "864102966947874903", + "text": "#Averyoffice - get them at http://wwww.officetogo.net instead best prices.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501641029669" + }, + { + "created_at": "Wed Aug 02 17:01:34 +0000 2016", + "id": 663446376766844887, + "id_str": "463767668448872260", + "text": "Messed with my girlfrends #DayTimer and now she wont talk to me �S3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Bird of LA", + "screen_name": "TheBirdofLA", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501637676684" + }, + { + "created_at": "Sat Aug 05 17:05:34 +0000 2016", + "id": 322549112580200691, + "id_str": "491125802006919643", + "text": "Just discovred #Irisfile for doc storage - sick.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vishnu Venkat", + "screen_name": "vishnuvenkat12", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501911258020" + }, + { + "created_at": "Tue Aug 01 17:12:09 +0000 2016", + "id": 462615893767415281, + "id_str": "158937674152810643", + "text": "#DayTimer at #Target? Anyone know?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Red Dog Meyer", + "screen_name": "RedDogMeyer", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501589376741" + }, + { + "created_at": "Wed Aug 02 17:21:58 +0000 2016", + "id": 143417110998696035, + "id_str": "171109986960354033", + "text": "#OfficeDepBrand - made in same factories that make name brand.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eyeball 2005", + "screen_name": "Eyeball2005", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501711099869" + }, + { + "created_at": "Sat Jul 29 17:06:44 +0000 2016", + "id": 105893106628071624, + "id_str": "931066280716241570", + "text": "My daughter sells #AtAGlance, but doesn�t use them.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vana May Haroldson", + "screen_name": "VanaMayHaroldson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501310662807" + }, + { + "created_at": "Sun Aug 06 17:01:05 +0000 2016", + "id": 407519815401540189, + "id_str": "198154015401894191", + "text": "#PaperMate - ben around forevor. ", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sixties Guy", + "screen_name": "SixtiesGuy50", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501981540154" + }, + { + "created_at": "Tue Aug 01 17:23:24 +0000 2016", + "id": 931686298583098441, + "id_str": "862985830984416258", + "text": "You should see all the serious art done with #Crayola crayons.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jana Gupta", + "screen_name": "JanaLianaGupta", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501629858309" + }, + { + "created_at": "Wed Aug 02 17:02:07 +0000 2016", + "id": 999476396472212210, + "id_str": "763964722122102521", + "text": "They sell #OfficeDepBrand in other stores now - cool.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dark Fighter", + "screen_name": "Dark_Fighter", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501639647221" + }, + { + "created_at": "Mon Jul 31 17:23:10 +0000 2016", + "id": 955485426421785526, + "id_str": "854264217855260981", + "text": "Filler supplies for #FranklinCovey have been in short supply", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Warren Jones", + "screen_name": "WarrenjonesCA", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501542642178" + }, + { + "created_at": "Wed Jul 26 17:14:08 +0000 2016", + "id": 727590780905235756, + "id_str": "907809052357560533", + "text": "The old standby #Averyoffice does good office do dads", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Doug G. Pike", + "screen_name": "DougGPike", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501078090523" + }, + { + "created_at": "Fri Jul 28 17:22:07 +0000 2016", + "id": 506962796413145622, + "id_str": "627964131456225822", + "text": "Want proposals to look good - then #Averyoffice binders", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Andreas Rahm", + "screen_name": "andreasrahm", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501279641314" + }, + { + "created_at": "Fri Aug 04 17:18:34 +0000 2016", + "id": 989988716890628030, + "id_str": "887168906280304656", + "text": "#Expodryerase - I never use them - boards never look good", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mitchell Lee", + "screen_name": "MitchellLee3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501871689062" + }, + { + "created_at": "Mon Jul 31 17:16:13 +0000 2016", + "id": 899805176096423463, + "id_str": "051760964234632026", + "text": "Big rush at our store #CanbyMarket around Christmas for #Scotchtape", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Inga Held", + "screen_name": "IngaHeld", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501517609642" + }, + { + "created_at": "Tue Aug 01 17:18:08 +0000 2016", + "id": 151766109181573829, + "id_str": "661091815738295430", + "text": "I gave up on clickers long ago - #Bicpens in the pouch for my company", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Nara Boddupally", + "screen_name": "NaraBoddupally", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501610918157" + }, + { + "created_at": "Sat Aug 05 17:04:32 +0000 2016", + "id": 528899075258635116, + "id_str": "990752586351160447", + "text": "can't get #3MPostit anyore at my work. Need to buy them now", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Raging Bull", + "screen_name": "Ragingbull6", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501907525863" + }, + { + "created_at": "Sun Jul 30 17:21:34 +0000 2016", + "id": 954724504531586937, + "id_str": "245045315869375790", + "text": "#Sharpie book marker got me through college.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Peace Nick", + "screen_name": "Peacenick", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501450453158" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615865900, + "id_str": "765626469615865856", + "text": "You got a get a look that dog. Really stands out.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": 765625017040265200, + "in_reply_to_status_id_str": "765625017040265216", + "in_reply_to_user_id": 228098750, + "in_reply_to_user_id_str": "228098750", + "in_reply_to_screen_name": "kidrauhlJDrew", + "user": { + "id": 759817319757574100, + "id_str": "759817319757574144", + "name": "Sharon ♥JB", + "screen_name": "SharonBieber111", + "location": "Florida, USA", + "url": null, + "description": "I'll always be here for justin", + "protected": false, + "verified": false, + "followers_count": 25, + "friends_count": 80, + "listed_count": 2, + "favourites_count": 350, + "statuses_count": 179, + "created_at": "Sun Jul 31 18:25:40 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/764101550105124864/7ZPF5YjW_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/764101550105124864/7ZPF5YjW_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/759817319757574144/1470195068", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "kidrauhlJDrew", + "name": "Justin Bieber", + "id": 228098750, + "id_str": "228098750", + "indices": [ + 0, + 14 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469586497500, + "id_str": "765626469586497536", + "text": "RT @TheVampsBrad: HEY DEWDS I BURNT MY FACE TODAY AND IT STINGS A BIT SO LETS DO A FOLLOW SPREE. Use dis hashtag. \n\n#VoteTheVampsR1\n\nhttps:…", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 744585738587672600, + "id_str": "744585738587672576", + "name": "Katie", + "screen_name": "katiechapman202", + "location": "England, United Kingdom", + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 4, + "friends_count": 50, + "listed_count": 0, + "favourites_count": 447, + "statuses_count": 46, + "created_at": "Sun Jun 19 17:40:48 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en-GB", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/763044855383818241/uA2FxiBu_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/763044855383818241/uA2FxiBu_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 19:01:29 +0000 2016", + "id": 765624539996913700, + "id_str": "765624539996913664", + "text": "HEY DEWDS I BURNT MY FACE TODAY AND IT STINGS A BIT SO LETS DO A FOLLOW SPREE. Use dis hashtag. \n\n#VoteTheVampsR1\n\nhttps://t.co/AITRG0aILr", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126370504, + "id_str": "126370504", + "name": "Bradley Will Simpson", + "screen_name": "TheVampsBrad", + "location": "Birmingham.", + "url": null, + "description": "lalalalaaa.", + "protected": false, + "verified": true, + "followers_count": 1681792, + "friends_count": 8078, + "listed_count": 6297, + "favourites_count": 509, + "statuses_count": 5388, + "created_at": "Thu Mar 25 17:07:58 +0000 2010", + "utc_offset": 7200, + "time_zone": "Amsterdam", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F70F0F", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/396276760/tokyo-art-1.jpg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/396276760/tokyo-art-1.jpg", + "profile_background_tile": true, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "EBDDE0", + "profile_sidebar_fill_color": "E0E0E0", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/643779235174330368/sbzSNncG_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/643779235174330368/sbzSNncG_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/126370504/1455448742", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 3848, + "favorite_count": 3363, + "entities": { + "hashtags": [ + { + "text": "VoteTheVampsR1", + "indices": [ + 98, + 113 + ] + } + ], + "urls": [ + { + "url": "https://t.co/AITRG0aILr", + "expanded_url": "http://bbc.in/2aYY5qO", + "display_url": "bbc.in/2aYY5qO", + "indices": [ + 115, + 138 + ] + } + ], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "VoteTheVampsR1", + "indices": [ + 116, + 131 + ] + } + ], + "urls": [ + { + "url": "https://t.co/AITRG0aILr", + "expanded_url": "http://bbc.in/2aYY5qO", + "display_url": "bbc.in/2aYY5qO", + "indices": [ + 139, + 140 + ] + } + ], + "user_mentions": [ + { + "screen_name": "TheVampsBrad", + "name": "Bradley Will Simpson", + "id": 126370504, + "id_str": "126370504", + "indices": [ + 3, + 16 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549658" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590634500, + "id_str": "765626469590634497", + "text": "I'm not a Lakers fan, but they do find a way to win.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765625543903576000, + "in_reply_to_status_id_str": "765625543903576064", + "in_reply_to_user_id": 3324987832, + "in_reply_to_user_id_str": "3324987832", + "in_reply_to_screen_name": "TuptaDarek", + "user": { + "id": 4594628713, + "id_str": "4594628713", + "name": "Bożena Mandat", + "screen_name": "AlfaOmegaB1", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 158, + "friends_count": 375, + "listed_count": 9, + "favourites_count": 9243, + "statuses_count": 7126, + "created_at": "Fri Dec 18 14:52:23 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "pl", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/678541216087187456/tGR5XUXH_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678541216087187456/tGR5XUXH_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "TuptaDarek", + "name": "Darek Tupta", + "id": 3324987832, + "id_str": "3324987832", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "trosmislen", + "name": "⭐⭐CrAcK for WoMaN⭐⭐", + "id": 2938819107, + "id_str": "2938819107", + "indices": [ + 12, + 23 + ] + }, + { + "screen_name": "Dragonfly_KRK", + "name": "Madame Dragonfly", + "id": 4156105535, + "id_str": "4156105535", + "indices": [ + 24, + 38 + ] + }, + { + "screen_name": "Kate_The_Black", + "name": "Kate", + "id": 1463251764, + "id_str": "1463251764", + "indices": [ + 39, + 54 + ] + }, + { + "screen_name": "AgnieszkaGrego1", + "name": "Agnieszka", + "id": 3633650188, + "id_str": "3633650188", + "indices": [ + 55, + 71 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "pl", + "timestamp_ms": "1471374549659" + }, + { + "created_at": "Wed Jul 26 17:08:56 +0000 2016", + "id": 310450594098559473, + "id_str": "505940985594732628", + "text": "I like #AtAGlance the best of all the organizers, but that's me", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Murphy Jordan 73", + "screen_name": "MurphyJordan73", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501059409855" + }, + { + "created_at": "Thu Jul 27 17:20:29 +0000 2016", + "id": 577631873717800041, + "id_str": "318737178000413951", + "text": "#OfficeDepBrand factory seconds -low prices - http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501187371780" + }, + { + "created_at": "Sun Jul 30 17:04:35 +0000 2016", + "id": 431963893164477395, + "id_str": "638931644773959420", + "text": "I have a better option than #3MPostit at http://www.mypostnotes.net", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Heavyman", + "screen_name": "Heavyman8", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501389316447" + }, + { + "created_at": "Sat Jul 29 17:12:05 +0000 2016", + "id": 659423299126618094, + "id_str": "232991266180940738", + "text": "#HPjet, #Epson, - #Canoninkjet we have them all http://wwww.heartsupplysd.com.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Heart Supply", + "screen_name": "HeartSupplySD", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501329912661" + }, + { + "created_at": "Thu Jul 27 17:04:11 +0000 2016", + "id": 764891287091450870, + "id_str": "912870914508708945", + "text": "Used #Canoninkjet repair parts - repair your printer for pennies on the $ at http://wwww.fiadistribution.com/officeco.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501128709145" + }, + { + "created_at": "Thu Aug 03 17:13:40 +0000 2016", + "id": 313397676004606874, + "id_str": "976760046068741688", + "text": "#3MPostit use them too mch", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tree Splitter", + "screen_name": "Tree_splitter", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501767600460" + }, + { + "created_at": "Fri Jul 28 17:12:04 +0000 2016", + "id": 297512434684701481, + "id_str": "124346847014819219", + "text": "Not the way to organize, but I can't do without #3MPostit.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "David Rice", + "screen_name": "DavidRice1967", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501243468470" + }, + { + "created_at": "Fri Jul 28 17:17:22 +0000 2016", + "id": 914972625200000520, + "id_str": "726252000005205016", + "text": "Hate all the organizing �S2 - force to use #AtAGlance at work - any ideas?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Eva Fernandez", + "screen_name": "EvaFernandez", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501262520000" + }, + { + "created_at": "Sun Jul 30 17:01:52 +0000 2016", + "id": 510833795782394477, + "id_str": "337957823944774526", + "text": "New tech organizer fits inside #FranklinCovey: http://wwww.melvinco.net", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Melvin Company", + "screen_name": "TheMelvinCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501379578239" + }, + { + "created_at": "Wed Jul 26 17:06:42 +0000 2016", + "id": 437810513530889826, + "id_str": "105135308898268320", + "text": "#Bicpens is the only vendor", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sara Ahmu", + "screen_name": "Saraahmu", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501051353088" + }, + { + "created_at": "Sat Jul 29 17:10:52 +0000 2016", + "id": 372473255700261641, + "id_str": "732557002616418164", + "text": "There is a problem with my company and cold outdoor #Bicpens - any alternative?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Young Greek", + "screen_name": "TheYoungGreek3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501325570026" + }, + { + "created_at": "Sun Jul 30 17:16:44 +0000 2016", + "id": 910884330400550871, + "id_str": "843304005508710281", + "text": "I ike the warranty on #OfficeDepBrand. �H2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mana Rodriguez", + "screen_name": "manarodriguez", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501433040055" + }, + { + "created_at": "Sun Jul 30 17:22:37 +0000 2016", + "id": 939674542410572166, + "id_str": "745424105721664406", + "text": "The very best organizer is #FranklinCovey - even though its cheaper", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vashan Smith", + "screen_name": "Vashansmith81", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501454241057" + }, + { + "created_at": "Sun Jul 30 17:17:15 +0000 2016", + "id": 843984349562692033, + "id_str": "843495626920331591", + "text": "See the new #DayTimer use video at https://www.youtube.com/watch?v=iRXJXaLV0n4.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Ham Hocks", + "screen_name": "MrHamHocks", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501434956269" + }, + { + "created_at": "Thu Jul 27 17:18:49 +0000 2016", + "id": 120051813976665862, + "id_str": "518139766658627905", + "text": "#Panasonic now moving into printing products big time.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Red Wedding", + "screen_name": "RedWedding", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501181397666" + }, + { + "created_at": "Wed Aug 02 17:10:03 +0000 2016", + "id": 267906681926653695, + "id_str": "066819266536951101", + "text": "You can get #OfficeDepBrand online at #AlphaOffice", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tanya Orchano", + "screen_name": "tanyaorchano", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501668192665" + }, + { + "created_at": "Wed Aug 02 17:12:27 +0000 2016", + "id": 638296768673152964, + "id_str": "967686731529640117", + "text": "Are there actual #AlphaOffice stores or is it just online?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tres Hawkins III", + "screen_name": "TresHawkinsIII", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501676867315" + }, + { + "created_at": "Wed Aug 02 17:05:44 +0000 2016", + "id": 444416526929084595, + "id_str": "165269290845958880", + "text": "Recyled #Scotchpack bubble pack - it only makes sense.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Big Bertha", + "screen_name": "BigBertha", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501652692908" + }, + { + "created_at": "Fri Jul 28 17:22:05 +0000 2016", + "id": 457152795519538130, + "id_str": "527955195381302330", + "text": "Sad story about found #DayTimer and finding the owner http://wwww.truelifenow.net/daytimertragedy.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Gigi Prince", + "screen_name": "GigiPrince", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501279551953" + }, + { + "created_at": "Wed Jul 26 17:05:51 +0000 2016", + "id": 506300483105412553, + "id_str": "004831054125534410", + "text": "We repair #Epson nationwide - shipin - shipout http://wwww.thehestadgroupofficesupply.com", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Hestad Group", + "screen_name": "TheHestadGroup", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501048310541" + }, + { + "created_at": "Fri Aug 04 17:15:59 +0000 2016", + "id": 650408623877197875, + "id_str": "086238771978759987", + "text": "the #AlphaOffice website is simple maybe to simple", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sarah Steinman", + "screen_name": "Sarahsteinman2", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501862387719" + }, + { + "created_at": "Sat Jul 29 17:16:49 +0000 2016", + "id": 834873469783270960, + "id_str": "734697832709605031", + "text": "Lots of uses for the #Sharpie permanent marker", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mason McClintok", + "screen_name": "MasonMcClintok", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501346978327" + }, + { + "created_at": "Thu Aug 03 17:10:24 +0000 2016", + "id": 124717558776848174, + "id_str": "175587768481749858", + "text": "I switched from #FranklinCovey to #DayTimer - both good", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Kim Hong", + "screen_name": "KimJVHong", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501755877684" + }, + { + "created_at": "Sun Aug 06 17:02:25 +0000 2016", + "id": 776879863198199204, + "id_str": "798631981992042296", + "text": "Be careful not to overspend on #FranklinCovey - big differences in prices - http://wwww.beachbobsales.com.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Beach Blob", + "screen_name": "beachblob", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501986319819" + }, + { + "created_at": "Thu Aug 03 17:00:18 +0000 2016", + "id": 366987195211064277, + "id_str": "871952110642774886", + "text": "I use the #Averyoffice shteet protectors - underused product.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Margo Zink", + "screen_name": "MargoZinkSF", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501719521106" + }, + { + "created_at": "Sat Aug 05 17:17:52 +0000 2016", + "id": 451369555748706551, + "id_str": "695557487065518286", + "text": "We bu y #Boisepaper by the truckload -literally", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "James G. Miller", + "screen_name": "JamesGaryMiller", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501955574870" + }, + { + "created_at": "Wed Aug 02 17:11:52 +0000 2016", + "id": 655276747531375866, + "id_str": "767475313758665502", + "text": "#FranklinCovey - always in stock - all supplies - immediate ship - http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501674753137" + }, + { + "created_at": "Sat Jul 29 17:21:37 +0000 2016", + "id": 361133642307266741, + "id_str": "336423072667412716", + "text": "I just discovered #AlphaOffice will use it for some bulk orders for our company #Thermotech.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Lana R. Moore", + "screen_name": "LanaRuMoore", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501364230726" + }, + { + "created_at": "Sat Aug 05 17:07:37 +0000 2016", + "id": 302569186588005179, + "id_str": "691865880051795599", + "text": "The multi-color #FranklinCovey system - very cool. �H1", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Andrea K Thompson", + "screen_name": "AndreaKThompson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501918658800" + }, + { + "created_at": "Mon Jul 31 17:14:17 +0000 2016", + "id": 406515106513470898, + "id_str": "151065134708982391", + "text": "#3MPostit - can build a whole accounting system around them!", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Matt Anselm", + "screen_name": "MattGAnselm", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501510651347" + }, + { + "created_at": "Sun Jul 30 17:01:25 +0000 2016", + "id": 282893779469883855, + "id_str": "937794698838559925", + "text": "I keeping getting my #Epson prntrs stolen!! �S2 �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Spurs Fan", + "screen_name": "Spurs_Fan", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501377946988" + }, + { + "created_at": "Sat Aug 05 17:19:20 +0000 2016", + "id": 189959608174080437, + "id_str": "596081740804379114", + "text": "Does any store in LA carry #Irisfile? Need it today.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Observer 79", + "screen_name": "Theobserver79", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501960817408" + }, + { + "created_at": "Tue Aug 01 17:16:05 +0000 2016", + "id": 140566035467640981, + "id_str": "660354676409815845", + "text": "Any comparisons out there on #AlphaOffice vs Office Depot? Others?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Star Lewis", + "screen_name": "StarLewis03", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501603546764" + }, + { + "created_at": "Sat Jul 29 17:01:07 +0000 2016", + "id": 542892904439186858, + "id_str": "929044391868589090", + "text": "I tried other sheets in my #DayTimer, but din't work out so well. �S2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Lena Maurice", + "screen_name": "LenaMaurice", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501290443918" + }, + { + "created_at": "Sat Aug 05 17:03:22 +0000 2016", + "id": 371429033215525055, + "id_str": "290332155250559381", + "text": "#AtAGlance - see the video on how to use them https://www.youtube.com/watch?v=iRXJXaLV0n4", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Reggie Vaughn", + "screen_name": "ReggieVaughn", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501903321552" + }, + { + "created_at": "Wed Aug 02 17:21:36 +0000 2016", + "id": 346617097800199447, + "id_str": "170978001994472175", + "text": "#Scotchpack - the only packing products my company #DelTraders will use - for good reason.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jose A. Valdez", + "screen_name": "JoseA_Valdez", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501709780019" + }, + { + "created_at": "Wed Jul 26 17:03:11 +0000 2016", + "id": 787090386671026479, + "id_str": "903866710264799278", + "text": "Our only office supplies are #Bicpens and #Swinton pads #CantonTransportation.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Printerco.com", + "screen_name": "Printercocom", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501038667102" + }, + { + "created_at": "Fri Jul 28 17:03:35 +0000 2016", + "id": 704012129351779504, + "id_str": "121293517795048146", + "text": "I just don't want ot spend the money for #DayTimer anymore.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Constant Cycler", + "screen_name": "aConstantCycler", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501212935177" + }, + { + "created_at": "Sat Aug 05 17:03:25 +0000 2016", + "id": 494359035496695307, + "id_str": "590354966953079919", + "text": "Thank god for #3MPostit when your doing taxes! #TaxKing �H1", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Tax King", + "screen_name": "TaxKing", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501903549669" + }, + { + "created_at": "Tue Jul 25 17:21:14 +0000 2016", + "id": 174280172549239364, + "id_str": "801725492393646787", + "text": "I think #OfficeDepBrand is going to gain market share. Buy stock now. #Stockman14", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Bad Journeyman", + "screen_name": "BadJourneyman", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501017254923" + }, + { + "created_at": "Sat Aug 05 17:19:50 +0000 2016", + "id": 760359626111090518, + "id_str": "596261110905187963", + "text": "My 5 year old dauhter eats #Scotchtape. But what doyou do.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Carmen Fernandez", + "screen_name": "carmenfernandez3", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501962611109" + }, + { + "created_at": "Sat Aug 05 17:06:35 +0000 2016", + "id": 835089149467676922, + "id_str": "891494676769228808", + "text": "Did you know #Epson has unique print fingerprint for each printer?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Anna Marie Torres", + "screen_name": "AnnaMarieTorres", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501914946767" + }, + { + "created_at": "Sun Jul 30 17:19:03 +0000 2016", + "id": 543014413992469064, + "id_str": "144139924690643148", + "text": "Our whole company - gone to #Canoninkjet -saves us bundles", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Life Coach Ted", + "screen_name": "Lifecoachted2", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501441399246" + }, + { + "created_at": "Wed Aug 02 17:04:43 +0000 2016", + "id": 455676490386437905, + "id_str": "764903864379059767", + "text": "#3MPostit - they say the glue is some special agent that doesn't go dry , but it does �S1", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Music Distributors", + "screen_name": "MusicDistribCA", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501649038643" + }, + { + "created_at": "Fri Aug 04 17:05:37 +0000 2016", + "id": 491918250357809392, + "id_str": "182503578093927350", + "text": "I own #AlphaOffice stock, so I buy there.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Rich Kosowitz", + "screen_name": "Richdkosowitz", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501825035780" + }, + { + "created_at": "Wed Jul 26 17:23:42 +0000 2016", + "id": 517381125597643044, + "id_str": "811255976430441640", + "text": "Where is the best placeonline for #3MPostit - big quantities", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The Bobster", + "screen_name": "thebobsternel", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501112559764" + }, + { + "created_at": "Sat Jul 29 17:05:57 +0000 2016", + "id": 267383078398865905, + "id_str": "830783988659053623", + "text": "No one has come up with a good alternative to #Scotchtape", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Santash Bagdanni", + "screen_name": "SantashBagdanni", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501307839886" + }, + { + "created_at": "Fri Jul 28 17:05:25 +0000 2016", + "id": 593782195094938490, + "id_str": "821950949384901098", + "text": "I still have #PaperMate pens as a high school grad gift.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sam Dredger", + "screen_name": "SamRDredger", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501219509493" + }, + { + "created_at": "Thu Aug 03 17:03:26 +0000 2016", + "id": 172007307834320351, + "id_str": "073078343203519413", + "text": "Look at the educational discound at #AlphaOffice for #Scotchtape", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Teacher of the Year", + "screen_name": "teacheroftheyear12", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501730783432" + }, + { + "created_at": "Tue Aug 01 17:03:46 +0000 2016", + "id": 964115591932683752, + "id_str": "155919326837528153", + "text": "#AlphaOffice cutomer support kind of bite sometimes �S3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Anne McVay", + "screen_name": "AnneMcVay782", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501559193268" + }, + { + "created_at": "Sat Aug 05 17:07:59 +0000 2016", + "id": 496289199996040583, + "id_str": "891999960405839067", + "text": "I like the coupons at #AlphaOffice.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Rene Estaban", + "screen_name": "ReneEstaban", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501919999604" + }, + { + "created_at": "Mon Jul 31 17:03:53 +0000 2016", + "id": 351174731845130015, + "id_str": "747318451300150313", + "text": "When you want #AtAGlance refills go to http://wwww.officetogo.net", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501473184513" + }, + { + "created_at": "Fri Jul 28 17:23:47 +0000 2016", + "id": 807042856712949696, + "id_str": "428567129496960932", + "text": "When I buy #Averyoffice online its difrent product. Why?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Vena Kubias", + "screen_name": "VenaKubias", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501285671294" + }, + { + "created_at": "Fri Jul 28 17:19:55 +0000 2016", + "id": 890032717565901857, + "id_str": "327175659018573164", + "text": "#Scotchtape - my wife brings it home from the office in boxes.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mark K. Kline", + "screen_name": "Markkevinkline", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501271756590" + }, + { + "created_at": "Wed Aug 02 17:20:56 +0000 2016", + "id": 955027073718174942, + "id_str": "270737181749427586", + "text": "Some of the #OfficeDepBrand specialty products are only available online.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Tennis Jane", + "screen_name": "TennisJane", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501707371817" + }, + { + "created_at": "Tue Aug 01 17:06:47 +0000 2016", + "id": 716965700612030371, + "id_str": "657006120303715020", + "text": "#FranklinCovey - My father always had them. They've been around.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Time Thief", + "screen_name": "Time_Thief", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501570061203" + }, + { + "created_at": "Wed Jul 26 17:06:15 +0000 2016", + "id": 228040497594997917, + "id_str": "404975949979173939", + "text": "The newest #Canoninkjet - more complex, but great output", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Cat Surgeon", + "screen_name": "CatSurgeonJohn", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501049759499" + }, + { + "created_at": "Thu Aug 03 17:04:58 +0000 2016", + "id": 266837362947748356, + "id_str": "373629477483564452", + "text": "Alternative to #AlphaOffice at http://wwww.fiadistribution.com/officeco. - better prices, service.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501736294774" + }, + { + "created_at": "Wed Jul 26 17:16:16 +0000 2016", + "id": 784140857903466269, + "id_str": "408579034662690597", + "text": "Does anyone refill #Canoninkjet cartridges?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Dede Diegnan", + "screen_name": "Dedediegnan", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501085790346" + }, + { + "created_at": "Thu Jul 27 17:00:23 +0000 2016", + "id": 541771150289650075, + "id_str": "711502896500751241", + "text": "The new colors of #Bicpens are krazeeeee. �H2", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Pete Aluna", + "screen_name": "pete_aluna", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501115028965" + }, + { + "created_at": "Mon Jul 31 17:07:45 +0000 2016", + "id": 680384871215671151, + "id_str": "848712156711516574", + "text": "#FranklinCovey is always going to stand up to abuse", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jean Lisa Wilson", + "screen_name": "JeanLisaWilson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501487121567" + }, + { + "created_at": "Tue Aug 01 17:21:03 +0000 2016", + "id": 580406214154585337, + "id_str": "062141545853379144", + "text": "#DayTimer - did that company get bought?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Jean Lisa Wilson", + "screen_name": "JeanLisaWilson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501621415458" + }, + { + "created_at": "Fri Jul 28 17:06:28 +0000 2016", + "id": 104932233374080958, + "id_str": "322333740809584131", + "text": "get #3MPostit -best price fast shipping- at http://wwww.officetogo.net . ", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501223337408" + }, + { + "created_at": "Sun Aug 06 17:01:32 +0000 2016", + "id": 651399831250035459, + "id_str": "998312500354590372", + "text": "What do all the people use #Scotchtape for other than gifts?", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Sonas Perez", + "screen_name": "sonasperez73", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501983125003" + }, + { + "created_at": "Sat Jul 29 17:15:23 +0000 2016", + "id": 980703417970076685, + "id_str": "034179700766857411", + "text": "If you're thinking of buying at #AlphaOffice, look at http://wwww.officetogo.net instead.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501341797007" + }, + { + "created_at": "Fri Jul 28 17:08:01 +0000 2016", + "id": 743902288915786697, + "id_str": "022889157866977545", + "text": "#DayTimer - more complex to me, so a better fit for others", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Morris Knight", + "screen_name": "Morrisknight2", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501228891578" + }, + { + "created_at": "Thu Jul 27 17:08:07 +0000 2016", + "id": 257501428200750318, + "id_str": "014282007503182457", + "text": "When #Crayola is out at a stor I dont buy. Not 4 my kids", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Ava Costello", + "screen_name": "Avacostello", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501142820075" + }, + { + "created_at": "Mon Jul 31 17:09:21 +0000 2016", + "id": 726764929081598646, + "id_str": "649290815986463684", + "text": "Watch out - your HS kid may be getting high on #Expodryerase - see http://wwww.truelifenow.net/dryerasertragedy", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Troy Illikson", + "screen_name": "TroyIllikson", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501492908159" + }, + { + "created_at": "Wed Jul 26 17:08:07 +0000 2016", + "id": 788410564308048708, + "id_str": "105643080487081305", + "text": "#Scotchtape - dominates the market - still no better product.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "The_Cylinder", + "screen_name": "The_Cylinder", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501056430804" + }, + { + "created_at": "Wed Jul 26 17:16:02 +0000 2016", + "id": 614410849473361170, + "id_str": "108494733611707825", + "text": "#OfficeDepBrand has been around for decades.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Last Word", + "screen_name": "Lastword", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501084947336" + }, + { + "created_at": "Wed Aug 02 17:14:50 +0000 2016", + "id": 442186854475893059, + "id_str": "868544758930597888", + "text": "#AtAGlance - Don�t have the weekly views I like anymore.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Linda J. Wang", + "screen_name": "LindaJWang", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501685447589" + }, + { + "created_at": "Wed Aug 02 17:02:04 +0000 2016", + "id": 398656394784243482, + "id_str": "563947842434828081", + "text": "The #Scotchpack shipping tape is simply the best �H3", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Your Grandma", + "screen_name": "YourGrandma", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501639478424" + }, + { + "created_at": "Tue Aug 01 17:06:07 +0000 2016", + "id": 279505676396761518, + "id_str": "056763967615187688", + "text": "Bulk #Scotchpack products - lowest prices - always in stock - http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501567639676" + }, + { + "created_at": "Sun Jul 30 17:14:08 +0000 2016", + "id": 511454236918785036, + "id_str": "542369187850366645", + "text": "The stackable #Irisfile file bins never leak. Even with a basement flooded.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Rolling Fields", + "screen_name": "RollingFields", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501423691878" + }, + { + "created_at": "Fri Aug 04 17:02:20 +0000 2016", + "id": 551868132144056344, + "id_str": "681321440563440387", + "text": "#Boisepaper - official paper of NASA.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Mr. Compulsion", + "screen_name": "MrCompulsion", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501813214405" + }, + { + "created_at": "Thu Aug 03 17:17:16 +0000 2016", + "id": 943287806106515944, + "id_str": "878061065159445637", + "text": "Save on all #Panasonic electronics at http://wwww.fiadistribution.com/officeco.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Office Co.", + "screen_name": "OfficeCo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501780610651" + }, + { + "created_at": "Mon Jul 31 17:07:26 +0000 2016", + "id": 707014860091140170, + "id_str": "148600911401709666", + "text": "#Bicpens at http://wwww.officetogo.net.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "OfficetoGo", + "screen_name": "Office_toGo", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501486009114" + }, + { + "created_at": "Wed Aug 02 17:11:07 +0000 2016", + "id": 628516720706132646, + "id_str": "167207061326466340", + "text": "I like the high end #PaperMate pen sets. Always a good gift.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Connie Baumann", + "screen_name": "ConnieIBaumann", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "Pacific Time (US null)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "", + "profile_image_url_https": "", + "profile_banner_url": "", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "tr", + "timestamp_ms": "1501672070613" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469594771500, + "id_str": "765626469594771457", + "text": "This is not my fight!!!!", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 752641798854602800, + "id_str": "752641798854602753", + "name": "Manford", + "screen_name": "Officer_63104", + "location": "Soulard", + "url": null, + "description": "I'm not special Just hard working", + "protected": false, + "verified": false, + "followers_count": 18, + "friends_count": 205, + "listed_count": 0, + "favourites_count": 349, + "statuses_count": 630, + "created_at": "Mon Jul 11 23:12:43 +0000 2016", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/755562222118502400/Yb4qxHM0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/755562222118502400/Yb4qxHM0_normal.jpg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 19:05:11 +0000 2016", + "id": 765625472357011500, + "id_str": "765625472357011458", + "text": "Dick Van Dyke singing at a Denny's will make your day https://t.co/xkpbu0Gi4f https://t.co/YIrFDmfC4q", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 42921216, + "id_str": "42921216", + "name": "KSDK NewsChannel 5", + "screen_name": "ksdknews", + "location": "St. Louis, Missouri", + "url": "http://www.ksdk.com", + "description": "We're 5 On Your Side for breaking news, weather and sports both on-air and online. Retweets are not endorsements. #STLTogether", + "protected": false, + "verified": true, + "followers_count": 143094, + "friends_count": 1551, + "listed_count": 1777, + "favourites_count": 6406, + "statuses_count": 113005, + "created_at": "Wed May 27 16:45:59 +0000 2009", + "utc_offset": -18000, + "time_zone": "Central Time (US & Canada)", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/558328096772718592/l2ojseup.jpeg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/558328096772718592/l2ojseup.jpeg", + "profile_background_tile": true, + "profile_link_color": "009999", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/735699968686575616/C_VrH0qI_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/735699968686575616/C_VrH0qI_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/42921216/1467830374", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 1, + "favorite_count": 1, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [ + { + "url": "https://t.co/xkpbu0Gi4f", + "expanded_url": "http://on.ksdk.com/2bDBNPG", + "display_url": "on.ksdk.com/2bDBNPG", + "indices": [ + 54, + 77 + ] + } + ], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 78, + 101 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 78, + 101 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [ + { + "url": "https://t.co/xkpbu0Gi4f", + "expanded_url": "http://on.ksdk.com/2bDBNPG", + "display_url": "on.ksdk.com/2bDBNPG", + "indices": [ + 68, + 91 + ] + } + ], + "user_mentions": [ + { + "screen_name": "ksdknews", + "name": "KSDK NewsChannel 5", + "id": 42921216, + "id_str": "42921216", + "indices": [ + 3, + 12 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 92, + 115 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + }, + "source_status_id": 765625472357011500, + "source_status_id_str": "765625472357011458", + "source_user_id": 42921216, + "source_user_id_str": "42921216" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765618441806024700, + "id_str": "765618441806024704", + "indices": [ + 92, + 115 + ], + "media_url": "http://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAF6plWEAATfv4.jpg", + "url": "https://t.co/YIrFDmfC4q", + "display_url": "pic.twitter.com/YIrFDmfC4q", + "expanded_url": "http://twitter.com/ksdknews/status/765625472357011458/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "small": { + "w": 534, + "h": 401, + "resize": "fit" + }, + "medium": { + "w": 534, + "h": 401, + "resize": "fit" + } + }, + "source_status_id": 765625472357011500, + "source_status_id_str": "765625472357011458", + "source_user_id": 42921216, + "source_user_id_str": "42921216" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549660" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615824900, + "id_str": "765626469615824897", + "text": "RT @CIGIonline: \"What are we trying to do, and why?\" #CIGI's @fenhampson & Derek Burney on Canada's #peacekeeping interests: https://t.co/j…", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 472635103, + "id_str": "472635103", + "name": "Sunny", + "screen_name": "senayitb", + "location": "Ontario, CA", + "url": null, + "description": "Senayit Belay | JD, Western Law | BSc, McGill | BA, Carleton", + "protected": false, + "verified": false, + "followers_count": 57, + "friends_count": 146, + "listed_count": 3, + "favourites_count": 471, + "statuses_count": 336, + "created_at": "Tue Jan 24 04:31:17 +0000 2012", + "utc_offset": -10800, + "time_zone": "Atlantic Time (Canada)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "DBE9ED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "profile_background_tile": false, + "profile_link_color": "CC3366", + "profile_sidebar_border_color": "DBE9ED", + "profile_sidebar_fill_color": "E6F6F9", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/592980154160422912/A-14Xuug_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/592980154160422912/A-14Xuug_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/472635103/1360373477", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 15:45:11 +0000 2016", + "id": 765575137752129500, + "id_str": "765575137752129537", + "text": "\"What are we trying to do, and why?\" #CIGI's @fenhampson & Derek Burney on Canada's #peacekeeping interests: https://t.co/jHjLV6MOcA", + "source": "Hootsuite", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 38498866, + "id_str": "38498866", + "name": "CIGI", + "screen_name": "CIGIonline", + "location": "Waterloo, Ontario, Canada", + "url": "http://www.cigionline.org", + "description": "The Centre for International Governance Innovation is a nonpartisan think tank that generates ideas for global governance improvements. Retweets ≠ endorsements.", + "protected": false, + "verified": false, + "followers_count": 14129, + "friends_count": 479, + "listed_count": 612, + "favourites_count": 672, + "statuses_count": 10280, + "created_at": "Thu May 07 19:34:20 +0000 2009", + "utc_offset": -14400, + "time_zone": "Eastern Time (US & Canada)", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455697333674446848/63enz3bN.jpeg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455697333674446848/63enz3bN.jpeg", + "profile_background_tile": true, + "profile_link_color": "2B2A82", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "CDD2DE", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/648963897689546752/9L7glWEp_normal.png", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648963897689546752/9L7glWEp_normal.png", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/38498866/1430353989", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + { + "text": "CIGI", + "indices": [ + 37, + 42 + ] + }, + { + "text": "peacekeeping", + "indices": [ + 88, + 101 + ] + } + ], + "urls": [ + { + "url": "https://t.co/jHjLV6MOcA", + "expanded_url": "http://ow.ly/mBzA303hUK4", + "display_url": "ow.ly/mBzA303hUK4", + "indices": [ + 113, + 136 + ] + } + ], + "user_mentions": [ + { + "screen_name": "fenhampson", + "name": "Fen Hampson", + "id": 2844325784, + "id_str": "2844325784", + "indices": [ + 45, + 56 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "CIGI", + "indices": [ + 53, + 58 + ] + }, + { + "text": "peacekeeping", + "indices": [ + 104, + 117 + ] + } + ], + "urls": [ + { + "url": "https://t.co/jHjLV6MOcA", + "expanded_url": "http://ow.ly/mBzA303hUK4", + "display_url": "ow.ly/mBzA303hUK4", + "indices": [ + 129, + 144 + ] + } + ], + "user_mentions": [ + { + "screen_name": "CIGIonline", + "name": "CIGI", + "id": 38498866, + "id_str": "38498866", + "indices": [ + 3, + 14 + ] + }, + { + "screen_name": "fenhampson", + "name": "Fen Hampson", + "id": 2844325784, + "id_str": "2844325784", + "indices": [ + 61, + 72 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590700000, + "id_str": "765626469590700032", + "text": "I liked the @YouTube video on fire fighters.", + "source": "Google", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2303418558, + "id_str": "2303418558", + "name": "Lee Chambers", + "screen_name": "Leechambers1995", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 134, + "friends_count": 193, + "listed_count": 12, + "favourites_count": 279, + "statuses_count": 10055, + "created_at": "Tue Jan 21 17:17:28 +0000 2014", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": false, + "profile_link_color": "088A08", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/425682506373812224/oHq3Pbcd_normal.jpeg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/425682506373812224/oHq3Pbcd_normal.jpeg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2303418558/1398259378", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [ + { + "url": "https://t.co/JXKt8KxhIt", + "expanded_url": "http://youtu.be/ncaZBEXLBCo?a", + "display_url": "youtu.be/ncaZBEXLBCo?a", + "indices": [ + 46, + 69 + ] + } + ], + "user_mentions": [ + { + "screen_name": "YouTube", + "name": "YouTube", + "id": 10228272, + "id_str": "10228272", + "indices": [ + 10, + 18 + ] + }, + { + "screen_name": "BlackPanthaaYT", + "name": "PANTS @ GAMESCOM", + "id": 40427734, + "id_str": "40427734", + "indices": [ + 30, + 45 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549659" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590638600, + "id_str": "765626469590638592", + "text": "RT @MestreTite: Parece que o jogo virou. https://t.co/skJ4k4G2uY", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3145668795, + "id_str": "3145668795", + "name": "king of crell ♠️", + "screen_name": "g6santana", + "location": "snap:gersonp16", + "url": null, + "description": "since 1998", + "protected": false, + "verified": false, + "followers_count": 901, + "friends_count": 291, + "listed_count": 0, + "favourites_count": 919, + "statuses_count": 8185, + "created_at": "Tue Apr 07 22:28:52 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": true, + "lang": "pt", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/762975397185220609/ozKu2sli_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/762975397185220609/ozKu2sli_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3145668795/1471212985", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Aug 16 19:07:55 +0000 2016", + "id": 765626158335615000, + "id_str": "765626158335614976", + "text": "Parece que o jogo virou. https://t.co/skJ4k4G2uY", + "source": "Twitter for Windows Phone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 283172034, + "id_str": "283172034", + "name": "Mestre Tite", + "screen_name": "MestreTite", + "location": null, + "url": null, + "description": "Para aqueles com falta de neuroniobilidade, esse perfil não tem qualquer relação com o Técnico Tite. É apenas uma página de humor de um fã do Mestre.", + "protected": false, + "verified": false, + "followers_count": 12016, + "friends_count": 5177, + "listed_count": 80, + "favourites_count": 4306, + "statuses_count": 2549, + "created_at": "Sat Apr 16 18:45:02 +0000 2011", + "utc_offset": -10800, + "time_zone": "Brasilia", + "geo_enabled": false, + "lang": "pt", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": true, + "profile_link_color": "FF691F", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "4D4D4D", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/764587540259086336/kqv87NCB_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/764587540259086336/kqv87NCB_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/283172034/1460647644", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 4, + "favorite_count": 2, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 25, + 48 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 25, + 48 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "pt" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "MestreTite", + "name": "Mestre Tite", + "id": 283172034, + "id_str": "283172034", + "indices": [ + 3, + 14 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 41, + 64 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + }, + "source_status_id": 765626158335615000, + "source_status_id_str": "765626158335614976", + "source_user_id": 283172034, + "source_user_id_str": "283172034" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 765626154279731200, + "id_str": "765626154279731200", + "indices": [ + 41, + 64 + ], + "media_url": "http://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "media_url_https": "https://pbs.twimg.com/media/CqAM7kyXgAAVCV-.jpg", + "url": "https://t.co/skJ4k4G2uY", + "display_url": "pic.twitter.com/skJ4k4G2uY", + "expanded_url": "http://twitter.com/MestreTite/status/765626158335614976/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 680, + "h": 383, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + }, + "medium": { + "w": 1024, + "h": 577, + "resize": "fit" + } + }, + "source_status_id": 765626158335615000, + "source_status_id_str": "765626158335614976", + "source_user_id": 283172034, + "source_user_id_str": "283172034" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "pt", + "timestamp_ms": "1471374549659" + }, + { + "delete": { + "status": { + "id": 358706793415180300, + "id_str": "358706793415180288", + "user_id": 1536970177, + "user_id_str": "1536970177" + }, + "timestamp_ms": "1471374549754" + } + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469615829000, + "id_str": "765626469615828992", + "text": "Lot better than the old way of doing attendance.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765616619984945200, + "in_reply_to_status_id_str": "765616619984945152", + "in_reply_to_user_id": 4171250787, + "in_reply_to_user_id_str": "4171250787", + "in_reply_to_screen_name": "nerdsofpreycast", + "user": { + "id": 2882782487, + "id_str": "2882782487", + "name": "Philippe Laroche", + "screen_name": "caramind93", + "location": null, + "url": null, + "description": null, + "protected": false, + "verified": false, + "followers_count": 37, + "friends_count": 26, + "listed_count": 5, + "favourites_count": 234, + "statuses_count": 6962, + "created_at": "Tue Nov 18 16:12:48 +0000 2014", + "utc_offset": -14400, + "time_zone": "Eastern Time (US & Canada)", + "geo_enabled": false, + "lang": "fr", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/534741323341778944/efR7JORy_normal.jpeg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534741323341778944/efR7JORy_normal.jpeg", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "nerdsofpreycast", + "name": "Nerds Of Prey", + "id": 4171250787, + "id_str": "4171250787", + "indices": [ + 0, + 16 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "da", + "timestamp_ms": "1471374549665" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469620023300, + "id_str": "765626469620023296", + "text": "I never used a tablet before - jury is out", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3179113695, + "id_str": "3179113695", + "name": "Dan", + "screen_name": "BellerinOrBolt", + "location": null, + "url": null, + "description": "Alex Iwobi loves me", + "protected": false, + "verified": false, + "followers_count": 72, + "friends_count": 223, + "listed_count": 0, + "favourites_count": 2189, + "statuses_count": 271, + "created_at": "Sat Apr 18 09:18:35 +0000 2015", + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "0084B4", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/761175868840538112/QcTe58z3_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/761175868840538112/QcTe58z3_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3179113695/1469034912", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Aug 15 21:32:41 +0000 2016", + "id": 765300200638414800, + "id_str": "765300200638414850", + "text": "@Hazpillian nah dont do this bro", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": 765299881342857200, + "in_reply_to_status_id_str": "765299881342857221", + "in_reply_to_user_id": 742694976652476400, + "in_reply_to_user_id_str": "742694976652476416", + "in_reply_to_screen_name": "Hazpillian", + "user": { + "id": 2353374818, + "id_str": "2353374818", + "name": "Michy Batshuayi", + "screen_name": "mbatshuayi", + "location": "London, England", + "url": "http://www.sportcover.co", + "description": "Official account of Michy Batshuayi - Football player @ChelseaFC & @BelRedDevils. #CFC #TeamOM #COYRD", + "protected": false, + "verified": true, + "followers_count": 235311, + "friends_count": 275, + "listed_count": 648, + "favourites_count": 628, + "statuses_count": 2274, + "created_at": "Thu Feb 20 15:02:47 +0000 2014", + "utc_offset": 7200, + "time_zone": "Paris", + "geo_enabled": false, + "lang": "fr", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "9C9C9C", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "profile_background_tile": false, + "profile_link_color": "375EF1", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/755896027136270336/R-FIFT-__normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/755896027136270336/R-FIFT-__normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2353374818/1469054628", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 12924, + "favorite_count": 12078, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "Hazpillian", + "name": "H", + "id": 742694976652476400, + "id_str": "742694976652476416", + "indices": [ + 0, + 11 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "mbatshuayi", + "name": "Michy Batshuayi", + "id": 2353374818, + "id_str": "2353374818", + "indices": [ + 3, + 14 + ] + }, + { + "screen_name": "Hazpillian", + "name": "H", + "id": 742694976652476400, + "id_str": "742694976652476416", + "indices": [ + 16, + 27 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549666" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469599109100, + "id_str": "765626469599109120", + "text": "@brianbeutler Hope Hicks", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765624612587769900, + "in_reply_to_status_id_str": "765624612587769856", + "in_reply_to_user_id": 21696279, + "in_reply_to_user_id_str": "21696279", + "in_reply_to_screen_name": "brianbeutler", + "user": { + "id": 1499114946, + "id_str": "1499114946", + "name": "jenn", + "screen_name": "JezebelButler", + "location": "Swing State", + "url": null, + "description": "Obsessed with 2016 election right now; It'll pass after November ~ If you have a Trump logo on your profile pic, I will block you ~", + "protected": false, + "verified": false, + "followers_count": 56, + "friends_count": 147, + "listed_count": 1, + "favourites_count": 7341, + "statuses_count": 1954, + "created_at": "Mon Jun 10 19:24:39 +0000 2013", + "utc_offset": -25200, + "time_zone": "Pacific Time (US & Canada)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "000000", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_link_color": "1B95E0", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/755913881373937666/920N5e-t_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/755913881373937666/920N5e-t_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499114946/1469058991", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "brianbeutler", + "name": "Brian Beutler", + "id": 21696279, + "id_str": "21696279", + "indices": [ + 0, + 13 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549661" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469619859500, + "id_str": "765626469619859456", + "text": "Not my war either, but we may get pulled into it.", + "source": "Facebook", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23947154, + "id_str": "23947154", + "name": "Nick Courtney", + "screen_name": "NickCourtney", + "location": "Portsmouth, UK", + "url": "http://www.vinylrecords.co.uk", + "description": "Independent Music Promoter booking agent (Victorious Festival) http://www.book.events and Sweet Memories Vinyl Records https://www.facebook.com/nickcourtney", + "protected": false, + "verified": false, + "followers_count": 1399, + "friends_count": 592, + "listed_count": 21, + "favourites_count": 599, + "statuses_count": 17772, + "created_at": "Thu Mar 12 13:35:46 +0000 2009", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "profile_background_tile": true, + "profile_link_color": "009999", + "profile_sidebar_border_color": "EEEEEE", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/697776971057594368/kMfUzOxw_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23947154/1455198015", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [ + { + "url": "https://t.co/9DGGpEX0js", + "expanded_url": "http://fb.me/7y5d5kFTD", + "display_url": "fb.me/7y5d5kFTD", + "indices": [ + 79, + 102 + ] + } + ], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549666" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469611692000, + "id_str": "765626469611692032", + "text": "This is great!!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 765622020180762600, + "in_reply_to_status_id_str": "765622020180762625", + "in_reply_to_user_id": 16886087, + "in_reply_to_user_id_str": "16886087", + "in_reply_to_screen_name": "mattingham", + "user": { + "id": 17285374, + "id_str": "17285374", + "name": "Josh R", + "screen_name": "technicalfault", + "location": "Manchester, EU", + "url": "http://technicalfault.net/", + "description": "Cooking, cycling, gaming, sci-fi and @twelve47. Aspiring journalist. Introvert. Open DMs. Snapchat/Instagram: technicalfault.", + "protected": false, + "verified": false, + "followers_count": 4845, + "friends_count": 652, + "listed_count": 317, + "favourites_count": 15962, + "statuses_count": 129409, + "created_at": "Mon Nov 10 11:55:51 +0000 2008", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "8C8B91", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/200950254/threadlessTechnicolourRex_865_3745.jpg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/200950254/threadlessTechnicolourRex_865_3745.jpg", + "profile_background_tile": false, + "profile_link_color": "892DD8", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "1D1D1D", + "profile_text_color": "BABABA", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/757277137820868608/TD9ajaDw_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/757277137820868608/TD9ajaDw_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17285374/1453287670", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": { + "id": "7c9c234d2cbd0fae", + "url": "https://api.twitter.com/1.1/geo/id/7c9c234d2cbd0fae.json", + "place_type": "city", + "name": "Lymington", + "full_name": "Lymington, England", + "country_code": "GB", + "country": "United Kingdom", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.57534, + 50.743174 + ], + [ + -1.57534, + 50.776249 + ], + [ + -1.525807, + 50.776249 + ], + [ + -1.525807, + 50.743174 + ] + ] + ] + }, + "attributes": {} + }, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [ + { + "screen_name": "mattingham", + "name": "mattingham", + "id": 16886087, + "id_str": "16886087", + "indices": [ + 0, + 11 + ] + } + ], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549664" + }, + { + "delete": { + "status": { + "id": 346934963364577300, + "id_str": "346934963364577280", + "user_id": 1354288765, + "user_id_str": "1354288765" + }, + "timestamp_ms": "1471374549814" + } + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469594824700, + "id_str": "765626469594824705", + "text": "The traffic in LA is killing me", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 331800082, + "id_str": "331800082", + "name": "JT", + "screen_name": "j_toosmooth21", + "location": "Dayton, OH ✈✈ ", + "url": null, + "description": "10-06-07", + "protected": false, + "verified": false, + "followers_count": 628, + "friends_count": 139, + "listed_count": 7, + "favourites_count": 4507, + "statuses_count": 21086, + "created_at": "Fri Jul 08 18:49:08 +0000 2011", + "utc_offset": -14400, + "time_zone": "America/New_York", + "geo_enabled": true, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "131516", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/636219769/biwx62qd5qcdam6n6p14.jpeg", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/636219769/biwx62qd5qcdam6n6p14.jpeg", + "profile_background_tile": false, + "profile_link_color": "009999", + "profile_sidebar_border_color": "EEEEEE", + "profile_sidebar_fill_color": "EFEFEF", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/758721043959656449/q9r8HmQA_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/758721043959656449/q9r8HmQA_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/331800082/1428767745", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [], + "symbols": [] + }, + "favorited": false, + "retweeted": false, + "filter_level": "low", + "lang": "en", + "timestamp_ms": "1471374549660" + }, + { + "created_at": "Tue Aug 16 19:09:09 +0000 2016", + "id": 765626469590655000, + "id_str": "765626469590654976", + "text": "A rose by any other name ...", + "source": "Mobile Web (M5)", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1069563721, + "id_str": "1069563721", + "name": "colomBIAna", + "screen_name": "naogostodeti__", + "location": "Torres Vedras, Portugal", + "url": "http://good-girls-are-baad-girls.tumblr.com/", + "description": "19/06 | #TeamLinguasQueimadas | #QueremosÉPessoasQueSaibamUsarGramática", + "protected": false, + "verified": false, + "followers_count": 1199, + "friends_count": 592, + "listed_count": 5, + "favourites_count": 2736, + "statuses_count": 36498, + "created_at": "Tue Jan 08 00:24:10 +0000 2013", + "utc_offset": 3600, + "time_zone": "London", + "geo_enabled": true, + "lang": "pt", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "FFFFFF", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/523430655539965953/2iUR2SKA.png", + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/523430655539965953/2iUR2SKA.png", + "profile_background_tile": true, + "profile_link_color": "F6AAA5", + "profile_sidebar_border_color": "FFFFFF", + "profile_sidebar_fill_color": "FFFFFF", + "profile_text_color": "000000", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/736288040554008576/Ho4s39UM_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/736288040554008576/Ho4s39UM_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1069563721/1462290680", + "default_profile": false, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Jul 28 12:56:37 +0000 2016", + "id": 758647348541001700, + "id_str": "758647348541001728", + "text": "https://t.co/SNj6MNxlhO", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 714482171097059300, + "id_str": "714482171097059331", + "name": "Sad Screenshots", + "screen_name": "SadScreenshots_", + "location": "DM your submission", + "url": null, + "description": "Sad screenshots taken out of context.", + "protected": false, + "verified": false, + "followers_count": 87992, + "friends_count": 1, + "listed_count": 62, + "favourites_count": 161, + "statuses_count": 330, + "created_at": "Mon Mar 28 15:59:58 +0000 2016", + "utc_offset": -25200, + "time_zone": "Pacific Time (US & Canada)", + "geo_enabled": false, + "lang": "en", + "contributors_enabled": false, + "is_translator": false, + "profile_background_color": "F5F8FA", + "profile_background_image_url": "", + "profile_background_image_url_https": "", + "profile_background_tile": false, + "profile_link_color": "2B7BB9", + "profile_sidebar_border_color": "C0DEED", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "profile_use_background_image": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/717213126081568768/2kBP5DWs_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/717213126081568768/2kBP5DWs_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/714482171097059331/1464810496", + "default_profile": true, + "default_profile_image": false, + "following": null, + "follow_request_sent": null, + "notifications": null + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 739, + "favorite_count": 1732, + "entities": { + "hashtags": [], + "urls": [], + "user_mentions": [], + "symbols": [], + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "und" + }, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + { + "text": "", + "indices": [ + 0, + 1 + ] + } + ], + "urls": [], + "user_mentions": [ + { + "screen_name": "SadScreenshots_", + "name": "Sad Screenshots", + "id": 714482171097059300, + "id_str": "714482171097059331", + "indices": [ + 3, + 19 + ] + } + ], + "symbols": [], + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 21, + 44 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + }, + "source_status_id": 758647348541001700, + "source_status_id_str": "758647348541001728", + "source_user_id": 714482171097059300, + "source_user_id_str": "714482171097059331" + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 758647341125505000, + "id_str": "758647341125505024", + "indices": [ + 21, + 44 + ], + "media_url": "http://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "media_url_https": "https://pbs.twimg.com/media/CodBvL2UkAAMJV8.jpg", + "url": "https://t.co/SNj6MNxlhO", + "display_url": "pic.twitter.com/SNj6MNxlhO", + "expanded_url": "http://twitter.com/SadScreenshots_/status/758647348541001728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 750, + "h": 327, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 327, + "resize": "fit" + } + }, + "source_status_id": 758647348541001700, + "source_status_id_str": "758647348541001728", + "source_user_id": 714482171097059300, + "source_user_id_str": "714482171097059331" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "filter_level": "low", + "lang": "und", + "timestamp_ms": "1471374549659" + } + ] + } \ No newline at end of file diff --git a/src/test/resources/twitter-auth.json b/src/test/resources/twitter-auth.json new file mode 100644 index 00000000..c8642b00 --- /dev/null +++ b/src/test/resources/twitter-auth.json @@ -0,0 +1,6 @@ +{ + "consumerKey":"xxxxxxxxxxxxxxxxxxxxxx", + "consumerSecret":"xxxxxxxxxxxxxxxxxxxxxx", + "token":"xxxxxxxxxxxxxxxxxxxxxx", + "tokenSecret":"xxxxxxxxxxxxxxxxxxxxxx" +} diff --git a/twitter-feed.kubernetes.yml b/twitter-feed.kubernetes.yml new file mode 100644 index 00000000..286d37b6 --- /dev/null +++ b/twitter-feed.kubernetes.yml @@ -0,0 +1,56 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: twitter-feed-v2 + labels: + commit: 9a8fa77277c4a8c3c96d96d4b804e83c26ac6cc0 +spec: + replicas: 2 + selector: + matchLabels: + app: twitter-feed + template: + metadata: + labels: + app: twitter-feed + commit: 9a8fa77277c4a8c3c96d96d4b804e83c26ac6cc0 + color: green + spec: + containers: + - name: twitter-feed + image: wcr.io/derekoneil/twitter-feed:master-9a8fa77277c4a8c3c96d96d4b804e83c26ac6cc0 + imagePullPolicy: Always + ports: + - name: twitter-feed + containerPort: 8080 + protocol: TCP + volumeMounts: + - name: podinfo + mountPath: /tmp + readOnly: false + volumes: + - name: podinfo + downwardAPI: + items: + - path: "labels" + fieldRef: + fieldPath: metadata.labels + imagePullSecrets: + - name: wercker +--- +apiVersion: v1 +kind: Service +metadata: + name: twitter-feed + labels: + app: twitter-feed + commit: 9a8fa77277c4a8c3c96d96d4b804e83c26ac6cc0 +spec: + ports: + - port: 30000 + targetPort: 8080 + selector: + app: twitter-feed + color: green + type: ClusterIP +--- diff --git a/wercker.yml.final b/wercker.yml.final new file mode 100644 index 00000000..f3e300bc --- /dev/null +++ b/wercker.yml.final @@ -0,0 +1,48 @@ +#Use OpenJDK base docker image from dockerhub and open the application port on the docker container +box: + id: openjdk + ports: + - 8080 + +#Build our application using Maven, just as we always have +build: + steps: + - install-packages: + packages: maven + - script: + name: maven build + code: mvn clean assembly:assembly + +#Push the docker image with our built and tested application to the Oracle Container Registry +push-release: + steps: + - internal/docker-push: + username: $DOCKER_USERNAME + password: $DOCKER_PASSWORD + repository: $DOCKER_REPO + registry: $DOCKER_REGISTRY + tag: $WERCKER_GIT_BRANCH-$WERCKER_GIT_COMMIT + working-dir: /pipeline/source + ports: $PORT + cmd: sh target/bin/start + +#Deploy our container from the Oracle Container Registry to the Oracle Container Engine (Kubernetes) +deploy-to-cluster: + box: + id: alpine + cmd: /bin/sh + steps: + + - bash-template + + - script: + name: "Visualise Kubernetes config" + code: cat kubernetes.yml + + - kubectl: + name: deploy to kubernetes + server: $KUBERNETES_MASTER + #username: $KUBERNETES_USERNAME + token: $KUBERNETES_TOKEN + insecure-skip-tls-verify: true + command: apply -f kubernetes.yml