From e36ca9534ad22bebd333291e8771b3a9a0691142 Mon Sep 17 00:00:00 2001 From: matt01671 <matt01671@gmail.com> Date: Fri, 8 May 2020 10:30:33 +1200 Subject: [PATCH] cleaned directory --- CouchDB/upload.sh | 14 + ansible/roles/react-build/tasks/main.yaml | 204 - main.yaml | 237 - twitter/data.json | 93531 ++++++++++++++++ twitter/language/_id | 1 + twitter/language/language | 1 + twitter/language/lists/geojson 2.js | 28 + twitter/language/lists/geojson.js | 28 + twitter/language/lists/html 2.js | 10 + twitter/language/lists/html.js | 10 + twitter/language/shows/html 2.js | 8 + twitter/language/shows/html.js | 8 + twitter/language/views/language/map 2.js | 3 + twitter/language/views/language/map.js | 3 + twitter/language/views/language/reduce 2.js | 1 + twitter/language/views/language/reduce.js | 1 + twitter/language/views/languagegroup/map 2.js | 4 + twitter/language/views/languagegroup/map.js | 4 + .../language/views/languagegroup/reduce 2.js | 1 + .../language/views/languagegroup/reduce.js | 1 + twitter/language/views/lib/lib 2.js | 10 + twitter/language/views/lib/lib.js | 10 + twitter/language/views/useimpact/map 2.js | 3 + twitter/language/views/useimpact/map.js | 3 + twitter/language/views/useimpact/reduce 2.js | 13 + twitter/language/views/useimpact/reduce.js | 13 + twitter/language/views/words/map 2.js | 7 + twitter/language/views/words/map.js | 7 + twitter/language/views/words/reduce 2.js | 23 + twitter/language/views/words/reduce.js | 23 + twitter/textsearch/text.json | 8 + web/.dockerignore | 5 - web/.gitignore | 23 - web/Dockerfile | 20 - web/README.md | 22 - web/docker-compose.yaml | 17 - web/package-lock.json | 15279 --- web/package.json | 34 - web/public/favicon.ico | Bin 3150 -> 0 bytes web/public/index.html | 43 - web/public/logo192.png | Bin 5347 -> 0 bytes web/public/logo512.png | Bin 9664 -> 0 bytes web/public/manifest.json | 25 - web/public/robots.txt | 3 - web/src/App.css | 38 - web/src/App.js | 26 - web/src/App.test.js | 9 - web/src/index.css | 13 - web/src/index.js | 17 - web/src/logo.svg | 7 - web/src/serviceWorker.js | 141 - web/src/setupTests.js | 5 - 52 files changed, 93777 insertions(+), 16168 deletions(-) create mode 100755 CouchDB/upload.sh delete mode 100644 main.yaml create mode 100644 twitter/data.json create mode 100644 twitter/language/_id create mode 100644 twitter/language/language create mode 100644 twitter/language/lists/geojson 2.js create mode 100644 twitter/language/lists/geojson.js create mode 100644 twitter/language/lists/html 2.js create mode 100644 twitter/language/lists/html.js create mode 100644 twitter/language/shows/html 2.js create mode 100644 twitter/language/shows/html.js create mode 100644 twitter/language/views/language/map 2.js create mode 100644 twitter/language/views/language/map.js create mode 100644 twitter/language/views/language/reduce 2.js create mode 100644 twitter/language/views/language/reduce.js create mode 100644 twitter/language/views/languagegroup/map 2.js create mode 100644 twitter/language/views/languagegroup/map.js create mode 100644 twitter/language/views/languagegroup/reduce 2.js create mode 100644 twitter/language/views/languagegroup/reduce.js create mode 100644 twitter/language/views/lib/lib 2.js create mode 100644 twitter/language/views/lib/lib.js create mode 100644 twitter/language/views/useimpact/map 2.js create mode 100644 twitter/language/views/useimpact/map.js create mode 100644 twitter/language/views/useimpact/reduce 2.js create mode 100644 twitter/language/views/useimpact/reduce.js create mode 100644 twitter/language/views/words/map 2.js create mode 100644 twitter/language/views/words/map.js create mode 100644 twitter/language/views/words/reduce 2.js create mode 100644 twitter/language/views/words/reduce.js create mode 100644 twitter/textsearch/text.json delete mode 100644 web/.dockerignore delete mode 100644 web/.gitignore delete mode 100644 web/Dockerfile delete mode 100644 web/README.md delete mode 100755 web/docker-compose.yaml delete mode 100644 web/package-lock.json delete mode 100644 web/package.json delete mode 100644 web/public/favicon.ico delete mode 100644 web/public/index.html delete mode 100644 web/public/logo192.png delete mode 100644 web/public/logo512.png delete mode 100644 web/public/manifest.json delete mode 100644 web/public/robots.txt delete mode 100644 web/src/App.css delete mode 100644 web/src/App.js delete mode 100644 web/src/App.test.js delete mode 100644 web/src/index.css delete mode 100644 web/src/index.js delete mode 100644 web/src/logo.svg delete mode 100644 web/src/serviceWorker.js delete mode 100644 web/src/setupTests.js diff --git a/CouchDB/upload.sh b/CouchDB/upload.sh new file mode 100755 index 0000000..5718076 --- /dev/null +++ b/CouchDB/upload.sh @@ -0,0 +1,14 @@ +export declare -a nodes=(172.26.133.58 172.26.132.78 172.26.133.15) #NEED TO AUTOMATE +export user=admin +export pass=admin +export VERSION='3.0.0' +export cookie='a192aeb9904e6590849337933b000c99' +export uuid='a192aeb9904e6590849337933b001159' +export masternode=`echo ${nodes} | cut -f1 -d' '` +export declare -a othernodes=`echo ${nodes[@]} | sed s/${masternode}//` +export size=${#nodes[@]} + +curl -XPUT "http://${user}:${pass}@${masternode}:5984/twitter" + +curl -XPOST "http://${user}:${pass}@${masternode}:5984/twitter/_bulk_docs " --header "Content-Type: application/json" \ + --data @../twitter/data.json diff --git a/ansible/roles/react-build/tasks/main.yaml b/ansible/roles/react-build/tasks/main.yaml index faf5b27..6b4d19b 100644 --- a/ansible/roles/react-build/tasks/main.yaml +++ b/ansible/roles/react-build/tasks/main.yaml @@ -1,198 +1,3 @@ -<<<<<<< HEAD -# --- -# - name: check if packages exits -# package_facts: -# manager: auto - -# - name: 'install all the dependencies ' -# tags: always -# become: yes -# apt: -# name: ['nodejs','npm'] -# state: latest -# install_recommends: no -# update_cache: yes -# - debug: -# msg: "node and npm installed" - -# - name: make sure the latest npm is installed -# tags: 'node' -# become: yes -# npm: -# name: npm -# global: yes -# state: latest - -# - name: install pm2 server -# tags: 'pm2' -# become: yes -# npm: -# name: pm2 -# global: yes -# state: latest - -# - name: install react -# tags: 'react' -# become: yes -# npm: -# name: create-react-app -# global: yes -# state: present - -# - name: traverse into the project directory. -# become: yes -# shell: cd -# args: -# chdir: /var/lib/react -# register: dir_changed - -# - name: clone git repo -# become: yes -# git: -# repo: https://github.com/advait22/react-server.git -# dest: /var/lib/react -# force: yes -# - debug: -# msg: 'git repo cloned' -# when: dir_changed.rc == 0 - -# - name: change working directory to the app -# become: yes -# shell: cd -# args: -# chdir: /var/lib/react/express_react_example -# register: server - -# - name: install all the packages for server -# become: yes -# npm: -# path: /var/lib/react/express_react_example/ -# name: install -# - debug: -# msg: 'inside server' -# when: server.rc == 0 - -# - name: install dependencies -# become: yes -# command: npm install --save express -# - debug: -# msg: 'Client express installed' -# when: server.rc == 0 - -# - name: change working directory to the client -# become: yes -# shell: cd -# args: -# chdir: /var/lib/react/express_react_example/client -# register: client - -# - name: install dependencies -# become: yes -# npm: -# path: /var/lib/react/express_react_example/client -# name: install -# - debug: -# msg: 'Client Dependencies installed' -# when: client.rc == 0 - - -# - name: Ansible check directory exists build in client. -# stat: -# path: /var/lib/react/express_react_example/client/build -# register: files_to_delete - -# - name: delete previous build folder -# become: yes -# shell: rm -rf build -# args: -# chdir: /var/lib/react/express_react_example/client/ -# register: build_delete -# - debug: -# msg: "build deleted" -# when: files_to_delete.stat.exists == true - -# ###workaround for react js bug in build command - - -# - name: delete dependencies on client -# become: yes -# shell: rm -rf node_modules -# args: -# chdir: /var/lib/react/express_react_example/client/ -# register: deleted_modules -# - debug: -# msg: 'Client Dependencies delete' - -# - name: clear npm cache -# tags: 'clear cache' -# become: yes -# shell: npm cache clean --force -# args: -# chdir: /var/lib/react/express_react_example/client -# register: cache_cleaned -# when: deleted_modules.rc == 0 - -# - name: install dependencies -# become: yes -# npm: -# path: /var/lib/react/express_react_example/client -# name: install -# - debug: -# msg: 'Client Dependencies installed' -# when: cache_cleaned.rc == 0 - -# - name: install react scripts -# tags: 'react scripts' -# become: yes -# shell: npm install --save react-scripts@3.0.1 react react-dom -# args: -# chdir: /var/lib/react/express_react_example/client -# register: react_scripts -# when: cache_cleaned.rc == 0 - -# ################################################################# - -# - name : compile the new build -# tags: build -# become: yes -# shell: npm run build -# args: -# chdir: /var/lib/react/express_react_example/client -# - debug: -# msg: 'new build successfull' - -# - name: Ansible check directory exists build in server. -# stat: -# path: /var/lib/react/express_react_example/build -# register: files_to_delete_from_server - - -# - name: delete previous build folder in server -# become: yes -# shell: rm -rf build -# args: -# chdir: /var/lib/react/express_react_example/ -# register: build_delete_server -# - debug: -# msg: "deleting old build from server" -# when: files_to_delete_from_server.stat.exists == true - -# - name: copy new build to parent folder -# become: yes -# command: mv /var/lib/react/express_react_example/client/build /var/lib/react/express_react_example -# register: build_copy -# - debug: -# msg: 'build copied' -# when: build_delete_server.rc == 0 - - # - name: stop all the running server - # become: yes - # command: pm2 stop all - # register: stop_server - # - debug: - # msg: 'all servers stopped' - # # when: build_copy.rc == 0 -======= --- - name: check if packages exits package_facts: @@ -382,17 +187,9 @@ command: forever list register: forever_list changed_when: false ->>>>>>> 526fcc749ba8644fccb39286d817d314a38308f0 - name: stop if the server is running become: yes -<<<<<<< HEAD - command: node /var/lib/react/express_react_example/server.js & - # command: pm2 start /var/lib/react/express_react_example/server.js - - debug: - msg: 'yayyyyyyyyyyy app is running' - # when: stop_server.rc == 0 -======= command: forever stopall - debug: msg: "server stopped" @@ -404,4 +201,3 @@ - debug: msg: "server started" when: forever_list.stdout.find('/var/lib/react/express_react_example/server.js') == -1 ->>>>>>> 526fcc749ba8644fccb39286d817d314a38308f0 diff --git a/main.yaml b/main.yaml deleted file mode 100644 index b5a3303..0000000 --- a/main.yaml +++ /dev/null @@ -1,237 +0,0 @@ ---- -- name: check if packages exits - package_facts: - manager: auto - -- name: 'install all the dependencies ' - tags: always - become: yes - apt: - name: ['nodejs','npm'] - state: latest - install_recommends: no - update_cache: yes -- debug: - msg: "node and npm installed" - -- name: make sure the latest npm is installed - tags: 'node' - become: yes - npm: - name: npm - global: yes - state: latest - -- name: install pm2 server - tags: 'pm2' - become: yes - npm: - name: pm2 - global: yes - state: latest - - -- name: install react - tags: 'react' - become: yes - npm: - name: create-react-app - global: yes - state: present - -- name: Checking folders - tags: 'volumes' - become: yes - stat: - path: "{{ item.mountpoint }}" - register: directory_stats - with_items: - - "{{ volumes }}" - -- name: Create directory - tags: 'volumes' - become: yes - file: - path: "{{ item.item.mountpoint }}" - recurse: yes - state: directory - when: item.stat.exists == false - with_items: - - "{{ directory_stats.results }}" - -- name: Mount device - tags: 'volumes' - become: yes - mount: - path: "{{ item.mountpoint }}" - src: "{{ item.device }}" - fstype: xfs - state: mounted - when: item.device is defined - with_items: - - "{{ volumes }}" - -- name: traverse into the project directory. - become: yes - shell: cd - args: - chdir: /var/lib/react - register: dir_changed - -- name: clone git repo - become: yes - git: - repo: https://github.com/advait22/react-server.git - dest: /var/lib/react - force: yes -- debug: - msg: 'git repo cloned' - when: dir_changed.rc == 0 - -- name: change working directory to the app - become: yes - shell: cd - args: - chdir: /var/lib/react/express_react_example - register: server - -- name: install all the packages for server - become: yes - npm: - path: /var/lib/react/express_react_example/ - name: install -- debug: - msg: 'inside server' - when: server.rc == 0 - -- name: install dependencies - become: yes - command: npm install --save express -- debug: - msg: 'Client express installed' - when: server.rc == 0 - -- name: change working directory to the client - become: yes - shell: cd - args: - chdir: /var/lib/react/express_react_example/client - register: client - -- name: install dependencies - become: yes - npm: - path: /var/lib/react/express_react_example/client - name: install -- debug: - msg: 'Client Dependencies installed' - when: client.rc == 0 - - -- name: Ansible check directory exists build in client. - stat: - path: /var/lib/react/express_react_example/client/build - register: files_to_delete - -- name: delete previous build folder - become: yes - shell: rm -rf build - args: - chdir: /var/lib/react/express_react_example/client/ - register: build_delete -- debug: - msg: "build deleted" - when: files_to_delete.stat.exists == true - - ###workaround for react js bug in build command - - -- name: delete dependencies on client - become: yes - shell: rm -rf node_modules - args: - chdir: /var/lib/react/express_react_example/client/ - register: deleted_modules -- debug: - msg: 'Client Dependencies delete' - -- name: clear npm cache - tags: 'clear cache' - become: yes - shell: npm cache clean --force - args: - chdir: /var/lib/react/express_react_example/client - register: cache_cleaned - when: deleted_modules.rc == 0 - -- name: install dependencies - become: yes - npm: - path: /var/lib/react/express_react_example/client - name: install -- debug: - msg: 'Client Dependencies installed' - when: cache_cleaned.rc == 0 - -- name: install react scripts - tags: 'react scripts' - become: yes - shell: npm install --save react-scripts@3.0.1 react react-dom - args: - chdir: /var/lib/react/express_react_example/client - register: react_scripts - when: cache_cleaned.rc == 0 - -################################################################# - -- name : compile the new build - tags: build - become: yes - shell: npm run build - args: - chdir: /var/lib/react/express_react_example/client -- debug: - msg: 'new build successfull' - -- name: Ansible check directory exists build in server. - stat: - path: /var/lib/react/express_react_example/build - register: files_to_delete_from_server - - -- name: delete previous build folder in server - become: yes - shell: rm -rf build - args: - chdir: /var/lib/react/express_react_example/ - register: build_delete_server -- debug: - msg: "deleting old build from server" - when: files_to_delete_from_server.stat.exists == true - -- name: copy new build to parent folder - become: yes - command: mv /var/lib/react/express_react_example/client/build /var/lib/react/express_react_example - register: build_copy -- debug: - msg: 'build copied' - when: build_delete_server.rc == 0 - -- name: stop all the running server - become: yes - command: pm2 stop all - register: stop_server -- debug: - msg: 'all servers stopped' -# when: build_copy.rc == 0 - - -- name: start the server - become: yes - # command: node /var/lib/react/express_react_example/server.js & - command: pm2 start /var/lib/react/express_react_example/server.js -- debug: - msg: 'yayyyyyyyyyyy app is running' - # when: stop_server.rc == 0 - - \ No newline at end of file diff --git a/twitter/data.json b/twitter/data.json new file mode 100644 index 0000000..c93bff9 --- /dev/null +++ b/twitter/data.json @@ -0,0 +1,93531 @@ +{ + "new_edits": false, + "docs": [ + { + "_id": "51f39676462cca21859bd92d8e000f24", + "_rev": "1-c9f6dd432eab992ca35ea0e82fa8fa48", + "oldid": "4eb37efb3de67c4eca000000", + "favorited": false, + "in_reply_to_user_id": 85224059, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Tienkoon change to apple la macha.", + "created_at": "Fri Nov 04 06:00:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132336028009771008", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.08645638, + -37.96924206 + ] + }, + "id": 132336463206551550, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 85224059, + "id_str": "85224059", + "screen_name": "Tienkoon", + "name": "Koh Tien Koon" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132336028009771000, + "in_reply_to_screen_name": "Tienkoon", + "id_str": "132336463206551552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.96924206, + 145.08645638 + ] + }, + "in_reply_to_user_id_str": "85224059", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1487874128/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 352158211, + "profile_text_color": "666666", + "followers_count": 47, + "profile_sidebar_border_color": "181A1E", + "id_str": "352158211", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 443, + "description": "I'm 20; Melbourne. I'm a ninja; you cant see me.", + "friends_count": 89, + "location": "Kuala Lumpur, Malaysia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1487874128/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Karthigan Suppiah", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 438, + "screen_name": "k91x", + "notifications": null, + "url": "https://www.facebook.com/Karthigan91", + "created_at": "Wed Aug 10 06:52:39 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e001d0f", + "_rev": "1-7944da2db341cbb71c372456d927ac96", + "oldid": "4eb37eff3de67c4eca000001", + "favorited": false, + "in_reply_to_user_id": 122616612, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@abigailyh -___- don tel me I did similar pose w yang during his bday!!! I wanna c all my obese pic wen I'm back", + "created_at": "Fri Nov 04 06:00:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335360901529600", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96573506, + -37.81440438 + ] + }, + "id": 132336477853073400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 122616612, + "id_str": "122616612", + "screen_name": "abigailyh", + "name": "Abigail Yap" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335360901529600, + "in_reply_to_screen_name": "abigailyh", + "id_str": "132336477853073410", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81440438, + 144.96573506 + ] + }, + "in_reply_to_user_id_str": "122616612", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1569213411/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 44612685, + "profile_text_color": "3E4415", + "followers_count": 99, + "profile_sidebar_border_color": "829D5E", + "id_str": "44612685", + "profile_background_color": "352726", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 3765, + "description": "", + "friends_count": 169, + "location": "Australia", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1569213411/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Michelle Yap", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "michelleysl", + "notifications": null, + "url": "http://www.mic-bebe.blogspot.com", + "created_at": "Thu Jun 04 13:18:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0022b1", + "_rev": "1-4fecdedbf016f0cc2c0cbbf3e2616698", + "oldid": "4eb37f013de67c4eca000002", + "favorited": false, + "in_reply_to_user_id": 248094444, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@rainedrop86 .......... mmmhhmmmm nah its cool :-)", + "created_at": "Fri Nov 04 06:00:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335489268187136", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1787841, + -33.9352939 + ] + }, + "id": 132336489580335100, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 248094444, + "id_str": "248094444", + "screen_name": "rainedrop86", + "name": "Raine Zuurbier" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335489268187140, + "in_reply_to_screen_name": "rainedrop86", + "id_str": "132336489580335104", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9352939, + 151.1787841 + ] + }, + "in_reply_to_user_id_str": "248094444", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1611369469/jlJuslNl_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 304138446, + "profile_text_color": "333333", + "followers_count": 28, + "profile_sidebar_border_color": "C0DEED", + "id_str": "304138446", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 403, + "description": "Gay, proud but not defined as such.", + "friends_count": 62, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1611369469/jlJuslNl_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Corey R Cosgrove", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "cjparkermaston", + "notifications": null, + "url": null, + "created_at": "Tue May 24 00:40:09 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e002a45", + "_rev": "1-7aa951e26591a5a5d6e8c9e3ef80e8b7", + "oldid": "4eb37f093de67c4efd000000", + "favorited": false, + "in_reply_to_user_id": 272956575, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@lyyght I'll check it out if you want :-)", + "created_at": "Fri Nov 04 06:01:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132336296566857729", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97874092, + -37.84910485 + ] + }, + "id": 132336521603854340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 272956575, + "id_str": "272956575", + "screen_name": "lyyght", + "name": "lyyght ҉" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132336296566857730, + "in_reply_to_screen_name": "lyyght", + "id_str": "132336521603854336", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84910485, + 144.97874092 + ] + }, + "in_reply_to_user_id_str": "272956575", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1559043114/IMG_3109_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20843430, + "profile_text_color": "333333", + "followers_count": 112, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20843430", + "profile_background_color": "C0DEED", + "listed_count": 12, + "utc_offset": 36000, + "statuses_count": 2385, + "description": "Awkward, gay, geek, programmer guy. ", + "friends_count": 109, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1559043114/IMG_3109_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Chris Scobell", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "snobell", + "notifications": null, + "url": null, + "created_at": "Sat Feb 14 12:00:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0031c2", + "_rev": "1-13270dd45f9d8fb3e28f7f1e1839702a", + "oldid": "4eb37f0c3de67c4efd000001", + "contributors": null, + "truncated": false, + "text": "Fantastic Review for Ella Bache Melbourne Central "My first experience at Ella Bache, Melbourne Central, was a ... http://t.co/t7o33VuW", + "in_reply_to_status_id": null, + "id": 132336533775728640, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 120, + 140 + ], + "url": "http://t.co/t7o33VuW", + "expanded_url": "http://bit.ly/vKz59d", + "display_url": "bit.ly/vKz59d" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.963937, + -37.8152065 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132336533775728640", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1400014122/logo_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 319007890, + "profile_text_color": "333333", + "followers_count": 149, + "profile_sidebar_border_color": "C0DEED", + "id_str": "319007890", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 61, + "description": "Want to relax and escape from the everyday hustle and bustle? Ella Bache Melbourne Central can be your peaceful sanctuary.Reach us At: 03 9988 9613", + "friends_count": 336, + "location": "VIC", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1400014122/logo_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/312677134/background_6.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/312677134/background_6.png", + "name": "EllaBacheMC", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "EllaBacheMC", + "notifications": null, + "url": "http://www.ellabachemelbournecentral.com.au", + "created_at": "Fri Jun 17 12:20:57 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8152065, + 144.963937 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:01:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0036cd", + "_rev": "1-fbb3606a8ec7f82e56a329c2f6cd3e0a", + "oldid": "4eb382393de67c5117000000", + "favorited": false, + "in_reply_to_user_id": 385585397, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@IsahFauatea @hammmlet keep going vita! Ha", + "created_at": "Fri Nov 04 06:14:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132338311233667072", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.04357488, + -27.51426274 + ] + }, + "id": 132339943862312960, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 385585397, + "id_str": "385585397", + "screen_name": "IsahFauatea", + "name": "Louisa Fauatea" + }, + { + "indices": [ + 13, + 22 + ], + "id": 355180677, + "id_str": "355180677", + "screen_name": "HammmLET", + "name": "Vita's World" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132338311233667070, + "in_reply_to_screen_name": "IsahFauatea", + "id_str": "132339943862312960", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.51426274, + 153.04357488 + ] + }, + "in_reply_to_user_id_str": "385585397", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621024528/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 31552012, + "profile_text_color": "3D1957", + "followers_count": 13, + "profile_sidebar_border_color": "65B0DA", + "id_str": "31552012", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 46, + "description": "", + "friends_count": 39, + "location": "Brisbane", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621024528/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "matt clark", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "mattclark10", + "notifications": null, + "url": null, + "created_at": "Wed Apr 15 22:59:52 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e003e7b", + "_rev": "1-bb40b002f2ac54f5b05542b69756df08", + "oldid": "4eb3823c3de67c5117000001", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "mmmm . shmell shoo naise", + "created_at": "Fri Nov 04 06:14:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.89796333, + -31.97384912 + ] + }, + "id": 132339958005514240, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132339958005514240", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.97384912, + 115.89796333 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621164025/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 112107701, + "profile_text_color": "f7f70a", + "followers_count": 121, + "profile_sidebar_border_color": "f51152", + "id_str": "112107701", + "profile_background_color": "f0225c", + "listed_count": 1, + "utc_offset": 28800, + "statuses_count": 2056, + "description": "Pink , glitters , kitties & knocky 3", + "friends_count": 120, + "location": "asia,singapore", + "profile_link_color": "cc0877", + "profile_image_url": "http://a2.twimg.com/profile_images/1621164025/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/180052366/ador.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/180052366/ador.jpg", + "name": "AnaSui", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "ilurvekitties", + "notifications": null, + "url": "http://wobleywobley.tumblr.com", + "created_at": "Sun Feb 07 09:03:53 +0000 2010", + "contributors_enabled": false, + "time_zone": "Singapore", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0048aa", + "_rev": "1-fc0daf3895d5eeb27992106970ad67bf", + "oldid": "4eb382433de67c5117000002", + "favorited": false, + "in_reply_to_user_id": 169390444, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@alexabedford see chu there ;)", + "created_at": "Fri Nov 04 06:14:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335868559097856", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.51879384, + -38.21565768 + ] + }, + "id": 132339987034275840, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 169390444, + "id_str": "169390444", + "screen_name": "alexabedford", + "name": "Alexa (Lexi) Bedford" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335868559097860, + "in_reply_to_screen_name": "alexabedford", + "id_str": "132339987034275840", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.21565768, + 144.51879384 + ] + }, + "in_reply_to_user_id_str": "169390444", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/963861558/3wuy65t7u_normal.JPG", + "profile_sidebar_fill_color": "DDFFCC", + "id": 152252822, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "152252822", + "profile_background_color": "9AE4E8", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 10590, + "description": "I could watch you forever ", + "friends_count": 165, + "location": "Wallington, Victoria", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/963861558/3wuy65t7u_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/149614044/tumblr_l1hdq7Jhxm1qan5d7o1_500.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/149614044/tumblr_l1hdq7Jhxm1qan5d7o1_500.jpg", + "name": "Tayla Nott", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3841, + "screen_name": "taylanott", + "notifications": null, + "url": null, + "created_at": "Sat Jun 05 13:46:05 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e004cad", + "_rev": "1-3e80862440e69688f5e8c1d5f1153e99", + "oldid": "4eb382433de67c5117000003", + "favorited": false, + "in_reply_to_user_id": 15439395, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@stephenfry or you could just try the \"don't you know who I am?\" line!! Better to be a pompous fool than a drugged up loon! #desperatetimes", + "created_at": "Fri Nov 04 06:14:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132319092437823488", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20924729, + -33.87038394 + ] + }, + "id": 132339987696975870, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 15439395, + "id_str": "15439395", + "screen_name": "stephenfry", + "name": "Stephen Fry" + } + ], + "hashtags": [ + { + "indices": [ + 124, + 139 + ], + "text": "desperatetimes" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132319092437823490, + "in_reply_to_screen_name": "stephenfry", + "id_str": "132339987696975872", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87038394, + 151.20924729 + ] + }, + "in_reply_to_user_id_str": "15439395", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576484270/085b4a41d81f4b6b8d28e93924ff6ab9_7_normal.jpg", + "profile_sidebar_fill_color": "A0C5C7", + "id": 19596304, + "profile_text_color": "333333", + "followers_count": 53, + "profile_sidebar_border_color": "86A4A6", + "id_str": "19596304", + "profile_background_color": "709397", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 378, + "description": "I want it all, especially the stuff I know I can't have.... ", + "friends_count": 122, + "location": "", + "profile_link_color": "FF3300", + "profile_image_url": "http://a3.twimg.com/profile_images/1576484270/085b4a41d81f4b6b8d28e93924ff6ab9_7_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme6/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme6/bg.gif", + "name": "Victoria Aitchison", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "Vickieplum", + "notifications": null, + "url": null, + "created_at": "Tue Jan 27 15:18:30 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e004de6", + "_rev": "1-cd762ca0e2eb625d6f8769b4eac3f7ba", + "oldid": "4eb382493de67c5117000004", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Doesn't want to go to work...", + "created_at": "Fri Nov 04 06:14:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.06382045, + -37.7559261 + ] + }, + "id": 132340011159924740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340011159924736", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.7559261, + 145.06382045 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1402646018/Photo_on_2011-06-19_at_19.04_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 64072603, + "profile_text_color": "666666", + "followers_count": 43, + "profile_sidebar_border_color": "181A1E", + "id_str": "64072603", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 688, + "description": "i have dreams :)\r\n", + "friends_count": 50, + "location": "Melbourne victoria", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1402646018/Photo_on_2011-06-19_at_19.04_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/256692596/done_n10.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/256692596/done_n10.jpg", + "name": "Jerusha Philip", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "jerushaphilip", + "notifications": null, + "url": null, + "created_at": "Sun Aug 09 00:18:48 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e005249", + "_rev": "1-9e7c1849bd63c34da16c7019823d03da", + "oldid": "4eb382543de67c5117000005", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "My phone seems fast today", + "created_at": "Fri Nov 04 06:15:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.04414534, + -37.87777897 + ] + }, + "id": 132340057737674750, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340057737674752", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.87777897, + 145.04414534 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1312430718/IMG_0340_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 266356081, + "profile_text_color": "333333", + "followers_count": 31, + "profile_sidebar_border_color": "C0DEED", + "id_str": "266356081", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 200, + "description": "I is greater than U", + "friends_count": 92, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1312430718/IMG_0340_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Josh", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "jalati", + "notifications": null, + "url": null, + "created_at": "Tue Mar 15 03:02:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e005c19", + "_rev": "1-2819b75150ca2812451b1814056b2be4", + "oldid": "4eb382553de67c5117000006", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Might have to wipe my iPhone. It has been a bit buggy", + "created_at": "Fri Nov 04 06:15:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20948219, + -33.86870306 + ] + }, + "id": 132340058312278020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340058312278016", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86870306, + 151.20948219 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1540663841/Tech_Helper_Logo_2_normal.png", + "profile_sidebar_fill_color": "ffffff", + "id": 245228743, + "profile_text_color": "d66400", + "followers_count": 45, + "profile_sidebar_border_color": "1c00bd", + "id_str": "245228743", + "profile_background_color": "2b5e8a", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 405, + "description": "Your IT guy If you are after help for your home/biz or friends IT solutions, please recommend me.\r\nPH: 0417204182\r\nEmail: contact@techhelper.com.au\r\n", + "friends_count": 96, + "location": "Sydney", + "profile_link_color": "b00e0e", + "profile_image_url": "http://a3.twimg.com/profile_images/1540663841/Tech_Helper_Logo_2_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Tech Helper", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "techhelp3r", + "notifications": null, + "url": "http://www.techhelper.com.au", + "created_at": "Mon Jan 31 05:27:27 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0069e2", + "_rev": "1-bd8ac821cc0742381d84d7d3d8bc1d48", + "oldid": "4eb382563de67c5117000007", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "RT @AAljameel: يا حبيبي شرهة العاشق كبيره ,,, كل ما زاد الغلا زاد العتاب ...\nالقليله من هوى بالي كثيره ,,, والكثير من الذي غيره هباب", + "created_at": "Fri Nov 04 06:15:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.03076694, + -27.46114631 + ] + }, + "id": 132340064658268160, + "entities": { + "user_mentions": [ + { + "indices": [ + 3, + 13 + ], + "id": 227646670, + "id_str": "227646670", + "screen_name": "AAljameel", + "name": "Ahmed Aljameel ♛ " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340064658268160", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.46114631, + 153.03076694 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616622572/4C0296D2-B7B5-4821-BFF8-A7A8E7219A9D_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 250448669, + "profile_text_color": "333333", + "followers_count": 42, + "profile_sidebar_border_color": "C0DEED", + "id_str": "250448669", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 263, + "description": "I'm from Riyadh, I'm student in Australia , I'll study accounting in QUT university, and I'm photorgfer", + "friends_count": 147, + "location": "Brisbane,Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1616622572/4C0296D2-B7B5-4821-BFF8-A7A8E7219A9D_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Mohammed F Alrasheed", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 27, + "screen_name": "mohammedalrashe", + "notifications": null, + "url": null, + "created_at": "Fri Feb 11 03:21:53 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e006bd9", + "_rev": "1-7b0ce77ffa56d436349079d4c9b0276c", + "oldid": "4eb382563de67c5117000008", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker Badly...I think I'm gonna fall asleep early this time.", + "created_at": "Fri Nov 04 06:15:05 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339110051446785", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132340067460055040, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339110051446780, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132340067460055040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20029, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e00749a", + "_rev": "1-f54817e0a33309c7604407706804adea", + "oldid": "4eb382573de67c5117000009", + "favorited": false, + "in_reply_to_user_id": 97958172, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@nigeyStreetwise hi babes ;) xx", + "created_at": "Fri Nov 04 06:15:06 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132326580264513536", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20707279, + -33.87738529 + ] + }, + "id": 132340070123446270, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 97958172, + "id_str": "97958172", + "screen_name": "nigeyStreetwise", + "name": "Nigel Prasad" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132326580264513540, + "in_reply_to_screen_name": "nigeyStreetwise", + "id_str": "132340070123446272", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87738529, + 151.20707279 + ] + }, + "in_reply_to_user_id_str": "97958172", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600491393/image_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 22728654, + "profile_text_color": "b01ab0", + "followers_count": 48, + "profile_sidebar_border_color": "5edb86", + "id_str": "22728654", + "profile_background_color": "5600b8", + "listed_count": 1, + "utc_offset": -36000, + "statuses_count": 203, + "description": "love,life, fruit of the loom ", + "friends_count": 225, + "location": "Sydney", + "profile_link_color": "0099B9", + "profile_image_url": "http://a2.twimg.com/profile_images/1600491393/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/129170521/Snapshot_2010-07-17_22-02-01.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/129170521/Snapshot_2010-07-17_22-02-01.jpg", + "name": "Valerie Stuart", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "Valerie_Stuart", + "notifications": null, + "url": null, + "created_at": "Wed Mar 04 03:43:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e007f7d", + "_rev": "1-73e0abc0f3a8be63bb79420b04d3bfc4", + "oldid": "4eb3825a3de67c511700000a", + "favorited": false, + "in_reply_to_user_id": 23412555, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@castillorocas solo Morris", + "created_at": "Fri Nov 04 06:15:09 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132292732986200064", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19376515, + -33.88509151 + ] + }, + "id": 132340083998195710, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 23412555, + "id_str": "23412555", + "screen_name": "castillorocas", + "name": "陈古城" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132292732986200060, + "in_reply_to_screen_name": "castillorocas", + "id_str": "132340083998195712", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88509151, + 151.19376515 + ] + }, + "in_reply_to_user_id_str": "23412555", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608346725/IMG_0718_normal.JPG", + "profile_sidebar_fill_color": "efefef", + "id": 28396637, + "profile_text_color": "333333", + "followers_count": 1179, + "profile_sidebar_border_color": "eeeeee", + "id_str": "28396637", + "profile_background_color": "131516", + "listed_count": 39, + "utc_offset": 36000, + "statuses_count": 7755, + "description": "PhD candidate at USYD. I research online gambling cultures and TV meta-narratives. I'm also a film critic and boxing enthusiast. When depressed, eat sushi. \r\n", + "friends_count": 1991, + "location": "Ultimo, Sydney, NSW", + "profile_link_color": "994700", + "profile_image_url": "http://a3.twimg.com/profile_images/1608346725/IMG_0718_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/353135447/typo.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/353135447/typo.jpg", + "name": "César Albarrán T", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "cesar_pescado", + "notifications": null, + "url": "http://goo.gl/u3bCi", + "created_at": "Thu Apr 02 19:02:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0086a0", + "_rev": "1-f921a26b13d08b0694753556b48c174a", + "oldid": "4eb3825b3de67c511700000b", + "contributors": null, + "truncated": false, + "text": "Precisely. (@ The Russian Club w/ 2 others) http://t.co/Z1SkSUQd", + "in_reply_to_status_id": null, + "id": 132340086246354940, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 44, + 64 + ], + "url": "http://t.co/Z1SkSUQd", + "expanded_url": "http://4sq.com/uiBqLZ", + "display_url": "4sq.com/uiBqLZ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.092499, + -33.87137 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340086246354944", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1512055388/wiggopunk2_normal.JPG", + "profile_sidebar_fill_color": "e0ff92", + "id": 10482452, + "profile_text_color": "000000", + "followers_count": 2371, + "profile_sidebar_border_color": "87bc44", + "id_str": "10482452", + "profile_background_color": "9ae4e8", + "listed_count": 172, + "utc_offset": 36000, + "statuses_count": 40020, + "description": "(Sub)editor, designer, news writer Australia lat. and long. above", + "friends_count": 2227, + "location": " -33.869160,151.093704", + "profile_link_color": "0000ff", + "profile_image_url": "http://a0.twimg.com/profile_images/1512055388/wiggopunk2_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/2556838/wthatsmeinthecorner.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/2556838/wthatsmeinthecorner.JPG", + "name": "Paul Wiggins", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "paulwiggins", + "notifications": null, + "url": "http://Theleader.com.au", + "created_at": "Fri Nov 23 03:29:41 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87137, + 151.092499 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:15:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e008bd7", + "_rev": "1-4522869dfd180fe13b815a703d2266dd", + "oldid": "4eb3825c3de67c511700000c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Any unions not planning industrial action at the moment then please let me know do that I can kick you in the ass for being unreasonable!", + "created_at": "Fri Nov 04 06:15:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98568208, + -37.86808087 + ] + }, + "id": 132340089694068740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340089694068736", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.86808087, + 144.98568208 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1335600596/CJM_9032005_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 33060166, + "profile_text_color": "666666", + "followers_count": 96, + "profile_sidebar_border_color": "181A1E", + "id_str": "33060166", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 518, + "description": "An aviation professional working within the airline industry. Also loves getting into the wild, photography and amateur road cycling. Just a mad dog really.", + "friends_count": 360, + "location": "Melbourne", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1335600596/CJM_9032005_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Carl Maroney", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "carlmaroney", + "notifications": null, + "url": "http://monteycarlos.deviantart.com/gallery", + "created_at": "Sun Apr 19 00:06:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e009b49", + "_rev": "1-2c79dafbc88e656e06d907b5d82feec8", + "oldid": "4eb3825e3de67c511700000d", + "favorited": false, + "in_reply_to_user_id": 36504357, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@stevecrombie you and Damo both always getting nude... Will be a big one tonight in Sticky we just signed lease on new place.... Finally", + "created_at": "Fri Nov 04 06:15:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339512260038659", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21438908, + -33.88628917 + ] + }, + "id": 132340100968366080, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 36504357, + "id_str": "36504357", + "screen_name": "stevecrombie", + "name": "Steve Crombie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339512260038660, + "in_reply_to_screen_name": "stevecrombie", + "id_str": "132340100968366080", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88628917, + 151.21438908 + ] + }, + "in_reply_to_user_id_str": "36504357", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 318139112, + "profile_text_color": "333333", + "followers_count": 74, + "profile_sidebar_border_color": "eeeeee", + "id_str": "318139112", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": -36000, + "statuses_count": 71, + "description": "One guy is reinventing the idea of the evening meal by opening his space for a weekly gathering of friends & strangers.This is neighbourhood dining at its best", + "friends_count": 56, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/270991326/tf20.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/270991326/tf20.jpg", + "name": "Michael Fantuz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "_Tablefor20", + "notifications": null, + "url": "http://www.tablefor20.blogspot.com/", + "created_at": "Thu Jun 16 01:17:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e009e7c", + "_rev": "1-443bc06bd5ca03cc15403e7f6cdace81", + "oldid": "4eb3825f3de67c511700000e", + "contributors": null, + "truncated": false, + "text": "#Beer! (@ Clare Hotel) http://t.co/ypkB4RrY", + "in_reply_to_status_id": null, + "id": 132340102159536130, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 5 + ], + "text": "Beer" + } + ], + "urls": [ + { + "indices": [ + 23, + 43 + ], + "url": "http://t.co/ypkB4RrY", + "expanded_url": "http://4sq.com/utwUxE", + "display_url": "4sq.com/utwUxE" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2012291, + -33.88448927 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340102159536128", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1101666404/23197_675505852_4029_q_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 106913449, + "profile_text_color": "333333", + "followers_count": 62, + "profile_sidebar_border_color": "C0DEED", + "id_str": "106913449", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 436, + "description": "Always having a giggle and a hoot. ", + "friends_count": 99, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1101666404/23197_675505852_4029_q_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bryson J Hall", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "brysonjhall", + "notifications": null, + "url": "http://www.brysonjhall.com", + "created_at": "Thu Jan 21 02:05:20 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.88448927, + 151.2012291 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:15:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e00abf2", + "_rev": "1-46cd3458951d4a5be006b6e9ba201bf8", + "oldid": "4eb382613de67c511700000f", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "is_translator": false, + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "protected": false, + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12614, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "profile_sidebar_border_color": "C0DEED", + "default_profile": true, + "following": null + }, + "favorited": false, + "in_reply_to_user_id": 16076062, + "contributors": null, + "truncated": false, + "text": "@__mares__ As many genres as the real stuff. Probably more.", + "created_at": "Fri Nov 04 06:15:15 +0000 2011", + "retweeted": false, + "in_reply_to_status_id": 132339725955645440, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12270333, + -37.85281122 + ] + }, + "id": 132340109134659580, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 16076062, + "screen_name": "__mares__", + "name": "♥.m.a.r.y.♥", + "id_str": "16076062" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id_str": "132339725955645440", + "place": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "__mares__", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85281122, + 145.12270333 + ] + }, + "in_reply_to_user_id_str": "16076062", + "id_str": "132340109134659584" + }, + { + "_id": "51f39676462cca21859bd92d8e00ac60", + "_rev": "1-521319e816693eb57b21659f65227c63", + "oldid": "4eb382623de67c5117000010", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Drove past the local after-school-care place which had a sign; 'If life stinks, use god-oderant'. Evidently running low on ideas today.", + "created_at": "Fri Nov 04 06:15:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0473528, + -27.59916558 + ] + }, + "id": 132340116545998850, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340116545998848", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.59916558, + 153.0473528 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1573411362/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 215877943, + "profile_text_color": "333333", + "followers_count": 67, + "profile_sidebar_border_color": "C0DEED", + "id_str": "215877943", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1461, + "description": "I wouldnt be complete without my best friends, horror movies or lazy baths and naps. Biggest night owl out. ", + "friends_count": 145, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1573411362/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243087955/Mini_Marshmallows.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/243087955/Mini_Marshmallows.jpg", + "name": "Kristina", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Kristinaaa____", + "notifications": null, + "url": null, + "created_at": "Mon Nov 15 04:44:35 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e00bb42", + "_rev": "1-78ce034ac76e04769def481128835dd0", + "oldid": "4eb382643de67c5117000011", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1558189397/nurshaheera_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 41528945, + "profile_text_color": "634047", + "followers_count": 224, + "protected": false, + "location": "Sydney,Australia.", + "default_profile_image": false, + "id_str": "41528945", + "utc_offset": 36000, + "statuses_count": 4362, + "description": "i just like to tweet about everything , okay not all actually, but almost-lah ! \r\n", + "friends_count": 117, + "profile_link_color": "088253", + "profile_image_url": "http://a1.twimg.com/profile_images/1558189397/nurshaheera_normal.jpg", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/358029412/319091_172498532827649_160335227377313_363515_1052740552_n.jpg", + "profile_background_color": "EDECE9", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/358029412/319091_172498532827649_160335227377313_363515_1052740552_n.jpg", + "screen_name": "nurshaheera", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "name": "♛ scha la la ♛", + "notifications": null, + "url": "http://www.facebook.com/scha.lala", + "created_at": "Thu May 21 04:29:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "profile_sidebar_border_color": "D3D2CF", + "default_profile": false, + "is_translator": false, + "listed_count": 3 + }, + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "truncated": false, + "text": "Bertahaaan", + "created_at": "Fri Nov 04 06:15:19 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.22828727, + -33.92405306 + ] + }, + "id": 132340124510982140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "place": null, + "id_str": "132340124510982144", + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.92405306, + 151.22828727 + ] + }, + "in_reply_to_user_id_str": null, + "source": "<a href=\"http://www.nibirutech.com\" rel=\"nofollow\">TwitBird</a>" + }, + { + "_id": "51f39676462cca21859bd92d8e00c9b1", + "_rev": "1-f8d65e41460f8c6266e00f31eb52e60b", + "oldid": "4eb3826b3de67c5117000012", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.skyhookwireless.com/localfaves\" rel=\"nofollow\">Local Faves</a>", + "text": "#p127 #o4E67 #t63A6 Live above Thai place", + "created_at": "Fri Nov 04 06:15:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.013152, + -33.951852 + ] + }, + "id": 132340153099358200, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 5 + ], + "text": "p127" + }, + { + "indices": [ + 6, + 12 + ], + "text": "o4E67" + }, + { + "indices": [ + 13, + 19 + ], + "text": "t63A6" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340153099358208", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.951852, + 151.013152 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 130704141, + "profile_text_color": "333333", + "followers_count": 27, + "profile_sidebar_border_color": "C0DEED", + "id_str": "130704141", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -18000, + "statuses_count": 15256, + "description": null, + "friends_count": 0, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "localfaveschat", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "lfchatsrvr", + "notifications": null, + "url": null, + "created_at": "Thu Apr 08 02:08:51 +0000 2010", + "contributors_enabled": false, + "time_zone": "Eastern Time (US & Canada)", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e00cb88", + "_rev": "1-2305fca7eef0f063a37306fb4bea3278", + "oldid": "4eb382783de67c5117000013", + "favorited": false, + "in_reply_to_user_id": 145792957, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Ray1Griffin I think that officially classes you as a techno geek #Siri", + "created_at": "Fri Nov 04 06:15:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337573912788993", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.91039844, + -31.12191071 + ] + }, + "id": 132340208988454910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 145792957, + "id_str": "145792957", + "screen_name": "Ray1Griffin", + "name": "Ray Griffin" + } + ], + "hashtags": [ + { + "indices": [ + 66, + 71 + ], + "text": "Siri" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132337573912789000, + "in_reply_to_screen_name": "Ray1Griffin", + "id_str": "132340208988454913", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.12191071, + 150.91039844 + ] + }, + "in_reply_to_user_id_str": "145792957", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1222490425/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 179880463, + "profile_text_color": "333333", + "followers_count": 104, + "profile_sidebar_border_color": "C0DEED", + "id_str": "179880463", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 381, + "description": "Customer Support Services Manager @statewater. Love my life in Tamworth. Passionate for cycling and my community. All comments and opinions are my own.", + "friends_count": 343, + "location": "Tamworth, NSW Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1222490425/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Gavin inglis", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 61, + "screen_name": "Gavinglis", + "notifications": null, + "url": null, + "created_at": "Wed Aug 18 09:29:30 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e00d386", + "_rev": "1-a314eaaafa73ac1edd7d16d98876424f", + "oldid": "4eb382903de67c5117000014", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "It's a fu*king sin to call at 4:59pm on a sunny Friday afternoon with matters that keep you working until 5:20pm. #ihateyou", + "created_at": "Fri Nov 04 06:16:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99284769, + -37.85467921 + ] + }, + "id": 132340310746468350, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 114, + 123 + ], + "text": "ihateyou" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340310746468352", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85467921, + 144.99284769 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1551490824/IMG_6933resized_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 17039651, + "profile_text_color": "333333", + "followers_count": 306, + "profile_sidebar_border_color": "C0DEED", + "id_str": "17039651", + "profile_background_color": "C0DEED", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 1079, + "description": "That guy from that television cooking show and that radio station. Work hard - play hard - eat lots. ", + "friends_count": 104, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1551490824/IMG_6933resized_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/341305558/fantasy_17.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/341305558/fantasy_17.jpg", + "name": "Kane Lillywhite", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "kanelillywhite", + "notifications": null, + "url": "http://kaneskitchen.blogspot.com", + "created_at": "Wed Oct 29 11:52:25 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e00d5a8", + "_rev": "1-8993b40d54a26508a486136a5e318f01", + "oldid": "4eb382963de67c5117000015", + "favorited": false, + "in_reply_to_user_id": 33252339, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@hem_sabz sohoj kotha keo bujhe na.", + "created_at": "Fri Nov 04 06:16:09 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339612646522882", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20460611, + -33.8686891 + ] + }, + "id": 132340334595293180, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 33252339, + "id_str": "33252339", + "screen_name": "hem_sabz", + "name": "Sabrina Shahed" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339612646522880, + "in_reply_to_screen_name": "hem_sabz", + "id_str": "132340334595293184", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8686891, + 151.20460611 + ] + }, + "in_reply_to_user_id_str": "33252339", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1599110278/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 34539433, + "profile_text_color": "333333", + "followers_count": 12, + "profile_sidebar_border_color": "C0DEED", + "id_str": "34539433", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 223, + "description": "An IT consultant. Originally from Bangladeshi, Living in Sydney. Love traveling, Photography, making friend etc.", + "friends_count": 92, + "location": "bangladesh", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1599110278/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "ricochet", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "kavizaman", + "notifications": null, + "url": null, + "created_at": "Thu Apr 23 05:05:35 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e00e3b8", + "_rev": "1-c907fb886b43fdf40239d04df7cdb4df", + "oldid": "4eb382983de67c5117000016", + "contributors": null, + "truncated": false, + "text": "I'm at The Odin Tavern w/ @jeffperth [pic]: http://t.co/HdsZrpgq", + "in_reply_to_status_id": null, + "id": 132340340911906820, + "entities": { + "user_mentions": [ + { + "indices": [ + 26, + 36 + ], + "id": 15142267, + "id_str": "15142267", + "screen_name": "jeffperth", + "name": "Jeff Williams" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 44, + 64 + ], + "url": "http://t.co/HdsZrpgq", + "expanded_url": "http://4sq.com/sV5BOU", + "display_url": "4sq.com/sV5BOU" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.807646, + -31.866016 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340340911906816", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/572759053/MeDisplay4_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 14934970, + "profile_text_color": "333333", + "followers_count": 41, + "profile_sidebar_border_color": "eeeeee", + "id_str": "14934970", + "profile_background_color": "131516", + "listed_count": 2, + "utc_offset": 28800, + "statuses_count": 550, + "description": "Name:Aaron Job: System Engineer @Anittel Interests: I love Guitar, Web & Graphic Design, Technology and Astronomy.", + "friends_count": 56, + "location": "-31.741402,115.766716", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/572759053/MeDisplay4_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Aaron Harvey", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "Insomniac86", + "notifications": null, + "url": "http://www.facebook.com/aaronharvey86", + "created_at": "Wed May 28 16:11:41 +0000 2008", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.866016, + 115.807646 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:16:10 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e00eefb", + "_rev": "1-26f4253530ca457e7158f2e2c2f3274d", + "oldid": "4eb3829a3de67c5117000017", + "contributors": null, + "truncated": false, + "text": "I'm at Bendigo Bank (482 Golden Four Dr., Tugun) http://t.co/51Nq2l4I", + "in_reply_to_status_id": null, + "id": 132340350315544580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 49, + 69 + ], + "url": "http://t.co/51Nq2l4I", + "expanded_url": "http://4sq.com/rujACz", + "display_url": "4sq.com/rujACz" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.49309087, + -28.14235135 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340350315544576", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1401447797/avatar_normal.jpg", + "profile_sidebar_fill_color": "e0ff92", + "id": 14273485, + "profile_text_color": "000000", + "followers_count": 2812, + "profile_sidebar_border_color": "87bc44", + "id_str": "14273485", + "profile_background_color": "9ae4e8", + "listed_count": 44, + "utc_offset": 36000, + "statuses_count": 4785, + "description": "Weekly Aussie Podcast since 2006", + "friends_count": 3034, + "location": "Gold Coast, Australia", + "profile_link_color": "0000ff", + "profile_image_url": "http://a2.twimg.com/profile_images/1401447797/avatar_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/38007496/ATH_PODCAST_Colour_Logo.JPG", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/38007496/ATH_PODCAST_Colour_Logo.JPG", + "name": "Aussie Tech Heads", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "aussietechheads", + "notifications": null, + "url": "http://www.aussietechheads.com.au", + "created_at": "Tue Apr 01 09:17:47 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.14235135, + 153.49309087 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:16:12 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e00f9ac", + "_rev": "1-2e3bdec2ed24a49675a9d329caacf5b8", + "oldid": "4eb3829a3de67c5117000018", + "favorited": false, + "in_reply_to_user_id": 66646829, + "contributors": null, + "source": "<a href=\"http://www.tweetings.net/\" rel=\"nofollow\">Tweetings for iPhone</a>", + "text": "@Amanda_haines have you seen @SirKenRobinson talk on #TED about that very topic?", + "created_at": "Fri Nov 04 06:16:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339476503605248", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.098898, + -33.815058 + ] + }, + "id": 132340351716433920, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 66646829, + "id_str": "66646829", + "screen_name": "Amanda_haines", + "name": "Amanda Haines" + }, + { + "indices": [ + 29, + 44 + ], + "id": 20551303, + "id_str": "20551303", + "screen_name": "SirKenRobinson", + "name": "Sir Ken Robinson" + } + ], + "hashtags": [ + { + "indices": [ + 53, + 57 + ], + "text": "TED" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132339476503605250, + "in_reply_to_screen_name": "Amanda_haines", + "id_str": "132340351716433920", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.815058, + 151.098898 + ] + }, + "in_reply_to_user_id_str": "66646829", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1491177070/262592_10150279741108614_8452618613_7453898_1187365_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 30205761, + "profile_text_color": "666666", + "followers_count": 505, + "profile_sidebar_border_color": "181A1E", + "id_str": "30205761", + "profile_background_color": "1A1B1F", + "listed_count": 19, + "utc_offset": 36000, + "statuses_count": 8724, + "description": "Son, brother & a good mate. I make videos. Please follow @SkylineProd. If you follow me I will be grateful, if you speak to me I will most likely follow back :)", + "friends_count": 1382, + "location": "West Ryde, New South Wales AU", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1491177070/262592_10150279741108614_8452618613_7453898_1187365_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/309878506/267992_10150238469561781_570406780_7887625_4718167_n.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/309878506/267992_10150238469561781_570406780_7887625_4718167_n.jpg", + "name": "Dennis Vollmer", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1032, + "screen_name": "DennisVollmer", + "notifications": null, + "url": "http://www.facebook.com/dennis.vollmer", + "created_at": "Fri Apr 10 12:22:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e00f9e1", + "_rev": "1-707300b4c1fe8248ccf18e4ef9968e5b", + "oldid": "4eb382a13de67c5117000019", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@Nichole_Circus: @kylie__k @krissyistormy @sunriseon7 How lame would a concert be if you couldn't get down or mosh or whatever ur style is", + "created_at": "Fri Nov 04 06:16:20 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.79461198, + -27.56752189 + ] + }, + "id": 132340381022035970, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 16 + ], + "id": 131298679, + "id_str": "131298679", + "screen_name": "Nichole_Circus", + "name": "Nichole " + }, + { + "indices": [ + 18, + 27 + ], + "id": 111855925, + "id_str": "111855925", + "screen_name": "kylie__k", + "name": "Kylie" + }, + { + "indices": [ + 28, + 42 + ], + "id": 202324598, + "id_str": "202324598", + "screen_name": "krissyistormy", + "name": "Krissy Day" + }, + { + "indices": [ + 43, + 54 + ], + "id": 18753424, + "id_str": "18753424", + "screen_name": "sunriseon7", + "name": "Sunrise" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340381022035968", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.56752189, + 152.79461198 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1432215768/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 202324598, + "profile_text_color": "333333", + "followers_count": 291, + "profile_sidebar_border_color": "C0DEED", + "id_str": "202324598", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 5548, + "description": "Singer/Song writer,actress, comedian with vast vulgar vocabulary, great cook & ditzy with a side of fries. i wana sing the oz nat anthem @ next big NRL match!", + "friends_count": 453, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1432215768/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Krissy Day", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 21, + "screen_name": "krissyistormy", + "notifications": null, + "url": "http://www.myspace.com/abrokendownpalace", + "created_at": "Wed Oct 13 20:04:12 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e010843", + "_rev": "1-ca77c7d51c47213c36a7a9ca9acf220a", + "oldid": "4eb382a33de67c511700001a", + "favorited": false, + "in_reply_to_user_id": 21678575, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@FrickingKaos just went out to reception to remind them I'm still here", + "created_at": "Fri Nov 04 06:16:21 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340072916856833", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.27843189, + -36.76156061 + ] + }, + "id": 132340387405762560, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 21678575, + "id_str": "21678575", + "screen_name": "FrickingKaos", + "name": "Tracy/Delphina " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340072916856830, + "in_reply_to_screen_name": "FrickingKaos", + "id_str": "132340387405762560", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.76156061, + 144.27843189 + ] + }, + "in_reply_to_user_id_str": "21678575", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620368394/9fc179e5-9b52-4004-a238-2fc9cd896196_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 335186853, + "profile_text_color": "333333", + "followers_count": 11, + "profile_sidebar_border_color": "C0DEED", + "id_str": "335186853", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1126, + "description": "", + "friends_count": 162, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1620368394/9fc179e5-9b52-4004-a238-2fc9cd896196_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/356234988/817560731.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/356234988/817560731.png", + "name": "Denise", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "dpowell3550", + "notifications": null, + "url": null, + "created_at": "Thu Jul 14 08:47:49 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e011347", + "_rev": "1-1384b529998ea3ea797fa86954093904", + "oldid": "4eb382a63de67c511700001b", + "contributors": null, + "truncated": false, + "text": "I'm at Central Station (Platforms 22 & 23) (Eddy Ave., btwn Chalmers St. & George St., Sydney) http://t.co/3ryiZ3WJ", + "in_reply_to_status_id": null, + "id": 132340400596848640, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 95, + 115 + ], + "url": "http://t.co/3ryiZ3WJ", + "expanded_url": "http://4sq.com/rTpY95", + "display_url": "4sq.com/rTpY95" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20726138, + -33.88433118 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340400596848640", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1419764629/Photo_on_2010-03-12_at_16.12_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 15350011, + "profile_text_color": "333333", + "followers_count": 332, + "profile_sidebar_border_color": "eeeeee", + "id_str": "15350011", + "profile_background_color": "131516", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 1381, + "description": "I build stuff. Newly (and happily) married to @sparkly_sheryn. I also am the technical manager at the church I attend.", + "friends_count": 1172, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1419764629/Photo_on_2010-03-12_at_16.12_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Tim Gleeson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 19, + "screen_name": "timjgleeson", + "notifications": null, + "url": null, + "created_at": "Tue Jul 08 04:23:40 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.88433118, + 151.20726138 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:16:24 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e011945", + "_rev": "1-714038ed21ee4bc7e57a1b0cadf2de6e", + "oldid": "4eb382a73de67c511700001c", + "favorited": false, + "in_reply_to_user_id": 16076062, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@__mares__ Google tentacle sex and you'll see what I mean. (not at work!) =D", + "created_at": "Fri Nov 04 06:16:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339725955645440", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12270333, + -37.85281122 + ] + }, + "id": 132340403553832960, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 16076062, + "id_str": "16076062", + "screen_name": "__mares__", + "name": "♥.m.a.r.y.♥" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339725955645440, + "in_reply_to_screen_name": "__mares__", + "id_str": "132340403553832960", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85281122, + 145.12270333 + ] + }, + "in_reply_to_user_id_str": "16076062", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12615, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01212e", + "_rev": "1-9af18edf1b3b594315d811ad7354241d", + "oldid": "4eb382ae3de67c511700001d", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Any unions not planning industrial action at the moment then please let me know so that I can kick you in the ass for being unreasonable!", + "created_at": "Fri Nov 04 06:16:32 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98566776, + -37.8681335 + ] + }, + "id": 132340433891246080, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340433891246081", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8681335, + 144.98566776 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1335600596/CJM_9032005_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 33060166, + "profile_text_color": "666666", + "followers_count": 96, + "profile_sidebar_border_color": "181A1E", + "id_str": "33060166", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 518, + "description": "An aviation professional working within the airline industry. Also loves getting into the wild, photography and amateur road cycling. Just a mad dog really.", + "friends_count": 360, + "location": "Melbourne", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1335600596/CJM_9032005_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Carl Maroney", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "carlmaroney", + "notifications": null, + "url": "http://monteycarlos.deviantart.com/gallery", + "created_at": "Sun Apr 19 00:06:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e012710", + "_rev": "1-1d68a0fabcab8eb46d40fbb33f65ecf2", + "oldid": "4eb382af3de67c511700001e", + "contributors": null, + "truncated": false, + "text": "#wtfonv is now trending in #Melbourne http://t.co/NPVjLhLL", + "in_reply_to_status_id": null, + "id": 132340436953083900, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 7 + ], + "text": "wtfonv" + }, + { + "indices": [ + 27, + 37 + ], + "text": "Melbourne" + } + ], + "urls": [ + { + "indices": [ + 38, + 58 + ], + "url": "http://t.co/NPVjLhLL", + "expanded_url": "http://trendsmap.com/au/melbourne", + "display_url": "trendsmap.com/au/melbourne" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.963, + -37.8143 + ] + }, + "source": "<a href=\"http://trendsmap.com/\" rel=\"nofollow\">Trendsmap Alerting</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340436953083904", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/819021543/tm.icon.large_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 124026965, + "profile_text_color": "333333", + "followers_count": 4869, + "profile_sidebar_border_color": "C0DEED", + "id_str": "124026965", + "profile_background_color": "C0DEED", + "listed_count": 82, + "utc_offset": 36000, + "statuses_count": 9795, + "description": "Real-Time Local Twitter Trends for Melbourne", + "friends_count": 1034, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/819021543/tm.icon.large_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/91675745/TrendsMelbourne.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/91675745/TrendsMelbourne.png", + "name": "Trendsmap Melbourne", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "TrendsMelbourne", + "notifications": null, + "url": "http://trendsmap.com/local/au/melbourne", + "created_at": "Thu Mar 18 00:59:14 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8143, + 144.963 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:16:33 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e01313a", + "_rev": "1-bb63e0647340ed129754d7218c9a5611", + "oldid": "4eb382b13de67c511700001f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Go for it; mistakes might happen. But mistakes become experiences. And ask yourself what worst can happen.", + "created_at": "Fri Nov 04 06:16:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.05606089, + -37.96351399 + ] + }, + "id": 132340446335741950, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340446335741953", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.96351399, + 145.05606089 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1487874128/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 352158211, + "profile_text_color": "666666", + "followers_count": 47, + "profile_sidebar_border_color": "181A1E", + "id_str": "352158211", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 448, + "description": "I'm 20; Melbourne. I'm a ninja; you cant see me.", + "friends_count": 89, + "location": "Kuala Lumpur, Malaysia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1487874128/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Karthigan Suppiah", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 439, + "screen_name": "k91x", + "notifications": null, + "url": "https://www.facebook.com/Karthigan91", + "created_at": "Wed Aug 10 06:52:39 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e013749", + "_rev": "1-4d032c97eb8c84fdea0d1f9c5741d856", + "oldid": "4eb382b63de67c5117000020", + "contributors": null, + "truncated": false, + "text": "'civil', 'qlds', 'outweigh' & 'lapcsesc' are now trending in #Brisbane http://t.co/XLYgUgng", + "in_reply_to_status_id": null, + "id": 132340467823153150, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 61, + 70 + ], + "text": "Brisbane" + } + ], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/XLYgUgng", + "expanded_url": "http://trendsmap.com/au/brisbane", + "display_url": "trendsmap.com/au/brisbane" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.028, + -27.4676 + ] + }, + "source": "<a href=\"http://trendsmap.com/\" rel=\"nofollow\">Trendsmap Alerting</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340467823153152", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1078802883/TrendsMap-Logo-_Dark___1__normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 132038515, + "profile_text_color": "333333", + "followers_count": 1240, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "132038515", + "profile_background_color": "022330", + "listed_count": 40, + "utc_offset": 36000, + "statuses_count": 4309, + "description": "Real-time Brisbane Twitter Trends", + "friends_count": 401, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1078802883/TrendsMap-Logo-_Dark___1__normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/149124874/TrendsBrisbane.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/149124874/TrendsBrisbane.png", + "name": "Trendsmap Brisbane", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "TrendsBrisbane", + "notifications": null, + "url": "http://trendsmap.com/local/au/brisbane", + "created_at": "Mon Apr 12 03:18:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.4676, + 153.028 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:16:40 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e013b05", + "_rev": "1-a1b7b583f5b90766da622e59a19e8428", + "oldid": "4eb382bb3de67c5117000021", + "contributors": null, + "truncated": false, + "text": "Watching some junior football, 2 hours left in Darwin. (@ Wanguri Park) http://t.co/4sOZ7da6", + "in_reply_to_status_id": null, + "id": 132340490631778300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/4sOZ7da6", + "expanded_url": "http://4sq.com/uYIJOh", + "display_url": "4sq.com/uYIJOh" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 130.887136, + -12.369668 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340490631778304", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610829828/yasminbee_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 47210345, + "profile_text_color": "3E4415", + "followers_count": 46, + "profile_sidebar_border_color": "829D5E", + "id_str": "47210345", + "profile_background_color": "352726", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 978, + "description": "Yasmin Barbara Jarman is queen regnant of no independant states. She is also Head, Duke, Supreme Governor and Chief of Nowhere. Just little old me.", + "friends_count": 199, + "location": "Melbourne, Australia", + "profile_link_color": "D02B55", + "profile_image_url": "http://a0.twimg.com/profile_images/1610829828/yasminbee_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Yasmin Jarman", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 44, + "screen_name": "yasminbee", + "notifications": null, + "url": "http://yasminwanderbee.wordpress.com/", + "created_at": "Mon Jun 15 00:07:10 +0000 2009", + "contributors_enabled": false, + "time_zone": "Darwin", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -12.369668, + 130.887136 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:16:46 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e01492f", + "_rev": "1-0a5aea848affffc31dfdda72915fada0", + "oldid": "4eb382bc3de67c5117000022", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Im an extremely lazy person who did nth d whole day n refuses to go gym. Fk!!!!!", + "created_at": "Fri Nov 04 06:16:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96574127, + -37.81440134 + ] + }, + "id": 132340492527599620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340492527599617", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81440134, + 144.96574127 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1569213411/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 44612685, + "profile_text_color": "3E4415", + "followers_count": 99, + "profile_sidebar_border_color": "829D5E", + "id_str": "44612685", + "profile_background_color": "352726", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 3766, + "description": "", + "friends_count": 170, + "location": "Australia", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1569213411/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Michelle Yap", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "michelleysl", + "notifications": null, + "url": "http://www.mic-bebe.blogspot.com", + "created_at": "Thu Jun 04 13:18:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0156fd", + "_rev": "1-06175f297c308bab6b1880aafed3c091", + "oldid": "4eb382bd3de67c5117000023", + "favorited": false, + "in_reply_to_user_id": 337235712, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Moto42Rogers \n\nAWWW you better CUMMM to my dM I'm hard and horny as", + "created_at": "Fri Nov 04 06:16:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132340498219282430, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 337235712, + "id_str": "337235712", + "screen_name": "Moto42Rogers", + "name": "#42. 4evrmxr" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "Moto42Rogers", + "id_str": "132340498219282432", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": "337235712", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 912, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9567, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1708, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e015b56", + "_rev": "1-70b3e2e80170dd6418f10c07a474d4b8", + "oldid": "4eb382bf3de67c5117000024", + "favorited": false, + "in_reply_to_user_id": 185618618, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@stuman31 well said.", + "created_at": "Fri Nov 04 06:16:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132321842357743616", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9800714, + -37.84867558 + ] + }, + "id": 132340504716247040, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 185618618, + "id_str": "185618618", + "screen_name": "stuman31", + "name": "Stu Jones" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132321842357743620, + "in_reply_to_screen_name": "stuman31", + "id_str": "132340504716247040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84867558, + 144.9800714 + ] + }, + "in_reply_to_user_id_str": "185618618", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/983202787/photo-3_normal.jpeg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15123999, + "profile_text_color": "333333", + "followers_count": 97, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15123999", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1062, + "description": "All I can say is that my life is pretty plain,\r\nAnd all I can do is just pour some tea for two and speak my point of view", + "friends_count": 75, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/983202787/photo-3_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Graf", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "spozguy", + "notifications": null, + "url": null, + "created_at": "Sun Jun 15 11:34:26 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01608c", + "_rev": "1-741fd9148250cd21d4093bbb4dc62b14", + "oldid": "4eb382c93de67c5117000025", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I guess age does change you.", + "created_at": "Fri Nov 04 06:17:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.7070765, + -32.89771666 + ] + }, + "id": 132340549184262140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340549184262144", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.89771666, + 151.7070765 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613942688/2264114_normal.jpg", + "profile_sidebar_fill_color": "140e0a", + "id": 245908679, + "profile_text_color": "4f3f38", + "followers_count": 101, + "profile_sidebar_border_color": "9db98c", + "id_str": "245908679", + "profile_background_color": "1c130e", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 3439, + "description": "i can haz kookies?", + "friends_count": 108, + "location": "Newcastle,Australia", + "profile_link_color": "838978", + "profile_image_url": "http://a3.twimg.com/profile_images/1613942688/2264114_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/355919175/cookie-monster.gif", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/355919175/cookie-monster.gif", + "name": "zaty nordin", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "zatynordin", + "notifications": null, + "url": "http://zatynordin.blogspot.com", + "created_at": "Tue Feb 01 18:35:46 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01614b", + "_rev": "1-86bc6b43abad38097970308283dc45d5", + "oldid": "4eb382ca3de67c5117000026", + "favorited": false, + "in_reply_to_user_id": 168281661, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@AusRichie @khyrenwest escort rate is $370 or something and they usually get half, so 4 clients a week about 40k lol", + "created_at": "Fri Nov 04 06:17:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132334933866848256", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.94733618, + -37.74563813 + ] + }, + "id": 132340550518054910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 168281661, + "id_str": "168281661", + "screen_name": "AusRichie", + "name": "Richard W Krajewski" + }, + { + "indices": [ + 11, + 22 + ], + "id": 15914693, + "id_str": "15914693", + "screen_name": "KhyrenWest", + "name": "Khyren as in Ky-ren" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132334933866848260, + "in_reply_to_screen_name": "AusRichie", + "id_str": "132340550518054912", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.74563813, + 144.94733618 + ] + }, + "in_reply_to_user_id_str": "168281661", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1260225974/37295_439410613427_684553427_5907470_2526903_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 114184122, + "profile_text_color": "333333", + "followers_count": 868, + "profile_sidebar_border_color": "C0DEED", + "id_str": "114184122", + "profile_background_color": "C0DEED", + "listed_count": 37, + "utc_offset": 36000, + "statuses_count": 15440, + "description": "Queer. Observer. Conversationalist. Traveller. Dreamer.", + "friends_count": 509, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1260225974/37295_439410613427_684553427_5907470_2526903_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Shaun", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "src89", + "notifications": null, + "url": null, + "created_at": "Sun Feb 14 12:52:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e016b32", + "_rev": "1-b65d0939a2443cedb63028bbe83be9e6", + "oldid": "4eb382cb3de67c5117000027", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "If some Doctors dressed like Cuddy... Eksay!", + "created_at": "Fri Nov 04 06:17:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.06519557, + -27.5409367 + ] + }, + "id": 132340554754297860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340554754297856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.5409367, + 153.06519557 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615258302/image1xm_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 57945820, + "profile_text_color": "BA0404", + "followers_count": 348, + "profile_sidebar_border_color": "CC2F1E", + "id_str": "57945820", + "profile_background_color": "F4E8C2", + "listed_count": 9, + "utc_offset": 36000, + "statuses_count": 21798, + "description": "Life is a beach I'm just playing in the sand. Proudly Kenyan. #IDoIt", + "friends_count": 508, + "location": "Brisbane, Australia", + "profile_link_color": "ED1C21", + "profile_image_url": "http://a0.twimg.com/profile_images/1615258302/image1xm_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/354803376/1680_1050_20091204112548351823_crop_II.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/354803376/1680_1050_20091204112548351823_crop_II.jpg", + "name": "James Ndege", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 100, + "screen_name": "jndegz", + "notifications": null, + "url": "http://www.facebook.com/jndegz", + "created_at": "Sat Jul 18 14:38:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01797a", + "_rev": "1-d037ae37e4804e0982cc0c3ecd642696", + "oldid": "4eb382cb3de67c5117000028", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Took mum for her first experience down chapel st today. can't say she was a fan. #unlucky", + "created_at": "Fri Nov 04 06:17:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12494017, + -37.70459785 + ] + }, + "id": 132340554137747460, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 81, + 89 + ], + "text": "unlucky" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340554137747456", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.70459785, + 145.12494017 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1560614641/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 195174609, + "profile_text_color": "333333", + "followers_count": 25, + "profile_sidebar_border_color": "C0DEED", + "id_str": "195174609", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 526, + "description": "completing year 12, hope to study vet science. i live for summer", + "friends_count": 149, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1560614641/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/265082099/yay.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/265082099/yay.jpg", + "name": "Bree Wittison", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "breewittison", + "notifications": null, + "url": null, + "created_at": "Sun Sep 26 00:51:12 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0185f7", + "_rev": "1-725de4b18b0a3b1bfc3aefeab91b2d27", + "oldid": "4eb382cb3de67c5117000029", + "favorited": false, + "in_reply_to_user_id": 36504357, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@stevecrombie legg!", + "created_at": "Fri Nov 04 06:17:02 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340336096837633", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21340674, + -33.88632953 + ] + }, + "id": 132340556796936200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 36504357, + "id_str": "36504357", + "screen_name": "stevecrombie", + "name": "Steve Crombie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340336096837630, + "in_reply_to_screen_name": "stevecrombie", + "id_str": "132340556796936192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88632953, + 151.21340674 + ] + }, + "in_reply_to_user_id_str": "36504357", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 318139112, + "profile_text_color": "333333", + "followers_count": 74, + "profile_sidebar_border_color": "eeeeee", + "id_str": "318139112", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": -36000, + "statuses_count": 72, + "description": "One guy is reinventing the idea of the evening meal by opening his space for a weekly gathering of friends & strangers.This is neighbourhood dining at its best", + "friends_count": 56, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/270991326/tf20.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/270991326/tf20.jpg", + "name": "Michael Fantuz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "_Tablefor20", + "notifications": null, + "url": "http://www.tablefor20.blogspot.com/", + "created_at": "Thu Jun 16 01:17:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e018b34", + "_rev": "1-47ea197627aa46f3330682fc38453f2c", + "oldid": "4eb382d33de67c511700002a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@GrandTheftAutoMemories Dickheads! And the Sabre Turbo. Enough said", + "created_at": "Fri Nov 04 06:17:09 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.00304126, + -33.81640695 + ] + }, + "id": 132340588279369730, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340588279369728", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.81640695, + 151.00304126 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1433452279/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 156092731, + "profile_text_color": "333333", + "followers_count": 7, + "profile_sidebar_border_color": "C0DEED", + "id_str": "156092731", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 22, + "description": "Writer. Broadcaster. Musician", + "friends_count": 33, + "location": "St Clair", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1433452279/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "andrewtsanadis", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "AndrewTsanadis", + "notifications": null, + "url": "http://www.wix.com/atsanadis/andrew-tsanadis", + "created_at": "Wed Jun 16 00:39:40 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0196b3", + "_rev": "1-099ad28149b814c98315b8f509728aeb", + "oldid": "4eb382d33de67c511700002b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Thank you to the handsome young blonde boy who just blew me a kiss . :)", + "created_at": "Fri Nov 04 06:17:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.16745126, + -33.89811205 + ] + }, + "id": 132340590238121980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340590238121984", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89811205, + 151.16745126 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1454487011/WEB_martynFRINGE_normal.jpg", + "profile_sidebar_fill_color": "f5f5f5", + "id": 204719736, + "profile_text_color": "333333", + "followers_count": 62, + "profile_sidebar_border_color": "ededed", + "id_str": "204719736", + "profile_background_color": "acded6", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 146, + "description": "A Complicated Creature\r\nwww.martynbadoui.com", + "friends_count": 153, + "location": "Sydney", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1454487011/WEB_martynFRINGE_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/299843764/editorial.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/299843764/editorial.jpg", + "name": "Martyn Badoui", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "MartynBadoui", + "notifications": null, + "url": "http://www.martynbadoui.com", + "created_at": "Tue Oct 19 09:56:28 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01a50d", + "_rev": "1-ba0b4fc72161f96d75d6664b8b5e551f", + "oldid": "4eb382d83de67c511700002c", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker ...But I'm watching TMZ.", + "created_at": "Fri Nov 04 06:17:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339636457582592", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132340610345611260, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339636457582600, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132340610345611264", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20028, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01b4f8", + "_rev": "1-2e23610488ef39bd9f0d3c562d320267", + "oldid": "4eb382df3de67c511700002d", + "favorited": false, + "in_reply_to_user_id": 40656687, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@vvassilev My skills suck.", + "created_at": "Fri Nov 04 06:17:21 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339419624644608", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.12271499, + -33.78457572 + ] + }, + "id": 132340639743492100, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 40656687, + "id_str": "40656687", + "screen_name": "vvassilev", + "name": "Vesselin Vassilev" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339419624644600, + "in_reply_to_screen_name": "vvassilev", + "id_str": "132340639743492096", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.78457572, + 151.12271499 + ] + }, + "in_reply_to_user_id_str": "40656687", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1196456174/John_Bristowe__Profile__-_Copy_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 2184401, + "profile_text_color": "333333", + "followers_count": 2407, + "profile_sidebar_border_color": "eeeeee", + "id_str": "2184401", + "profile_background_color": "131516", + "listed_count": 202, + "utc_offset": -25200, + "statuses_count": 17402, + "description": "Developer Evangelist at Telerik, father, husband, aspiring software craftsman, blogger, community supporter, Canadian, expat in Australia.", + "friends_count": 972, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1196456174/John_Bristowe__Profile__-_Copy_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "John Bristowe", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 12, + "screen_name": "JohnBristowe", + "notifications": null, + "url": "http://bristowe.com/", + "created_at": "Sun Mar 25 16:05:08 +0000 2007", + "contributors_enabled": false, + "time_zone": "Mountain Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01b75a", + "_rev": "1-d3955b45be27ec8ee22ce309d86aa82f", + "oldid": "4eb382e13de67c511700002e", + "favorited": false, + "in_reply_to_user_id": 33590001, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@MicSyLim i emailed you already. Let me know what you think. It's just what I heard.", + "created_at": "Fri Nov 04 06:17:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337738509848576", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.8365376, + -37.8503282 + ] + }, + "id": 132340648232763400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 33590001, + "id_str": "33590001", + "screen_name": "MicSyLim", + "name": "Fashion PULIS" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337738509848580, + "in_reply_to_screen_name": "MicSyLim", + "id_str": "132340648232763393", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8503282, + 144.8365376 + ] + }, + "in_reply_to_user_id_str": "33590001", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1311948039/image_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 27421445, + "profile_text_color": "201b18", + "followers_count": 225, + "profile_sidebar_border_color": "CC3366", + "id_str": "27421445", + "profile_background_color": "FF6699", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 10004, + "description": "☺ narcissistic bastard ☺", + "friends_count": 210, + "location": "Geelong, Australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1311948039/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/9272934/1_160362835l.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/9272934/1_160362835l.jpg", + "name": "Ady Red", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 41, + "screen_name": "AdyRedolme", + "notifications": null, + "url": "http://www.facebook.com/adyhottie", + "created_at": "Sun Mar 29 13:12:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01c172", + "_rev": "1-ed020a0a33ad93e8ef9af8953d8e8a8d", + "oldid": "4eb382e73de67c511700002f", + "favorited": false, + "in_reply_to_user_id": 16076062, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@__mares__ Ty! =]\nMy life is fulfilled.", + "created_at": "Fri Nov 04 06:17:30 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340254299529216", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12276715, + -37.85296025 + ] + }, + "id": 132340674946281470, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 16076062, + "id_str": "16076062", + "screen_name": "__mares__", + "name": "♥.m.a.r.y.♥" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340254299529220, + "in_reply_to_screen_name": "__mares__", + "id_str": "132340674946281472", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85296025, + 145.12276715 + ] + }, + "in_reply_to_user_id_str": "16076062", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12616, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01c780", + "_rev": "1-4438ba1288d034ad2c215eae07bccb28", + "oldid": "4eb382eb3de67c5117000030", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "porfin escaneando :)", + "created_at": "Fri Nov 04 06:17:34 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20194375, + -33.88318983 + ] + }, + "id": 132340690523914240, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340690523914240", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88318983, + 151.20194375 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1276456999/Picture_8_normal.png", + "profile_sidebar_fill_color": "2e1505", + "id": 45077294, + "profile_text_color": "ad3b0a", + "followers_count": 129, + "profile_sidebar_border_color": "080103", + "id_str": "45077294", + "profile_background_color": "050400", + "listed_count": 1, + "utc_offset": -25200, + "statuses_count": 7104, + "description": "i keep my feet on the ground and my head in the clouds", + "friends_count": 223, + "location": "", + "profile_link_color": "8c5f05", + "profile_image_url": "http://a2.twimg.com/profile_images/1276456999/Picture_8_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142851365/7029_259488950643_544090643_9027065_8248483_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/142851365/7029_259488950643_544090643_9027065_8248483_n.jpg", + "name": "Maricarmen Villarrea", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 61, + "screen_name": "maricarmen_v", + "notifications": null, + "url": null, + "created_at": "Sat Jun 06 05:40:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Mountain Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01d685", + "_rev": "1-f87a04f5169cc7d1f4563c6bf5354c78", + "oldid": "4eb382ed3de67c5117000031", + "favorited": false, + "in_reply_to_user_id": 31745447, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@SydneyTheatreCo What a classic line from The Seagull. Brings back memories of studying first year Drama at Uni :-) #theatre", + "created_at": "Fri Nov 04 06:17:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339768343265280", + "coordinates": { + "type": "Point", + "coordinates": [ + 146.99980711, + -36.20287537 + ] + }, + "id": 132340697184469000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 31745447, + "id_str": "31745447", + "screen_name": "SydneyTheatreCo", + "name": "SydneyTheatreCompany" + } + ], + "hashtags": [ + { + "indices": [ + 116, + 124 + ], + "text": "theatre" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132339768343265280, + "in_reply_to_screen_name": "SydneyTheatreCo", + "id_str": "132340697184468992", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.20287537, + 146.99980711 + ] + }, + "in_reply_to_user_id_str": "31745447", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1497939940/image_normal.jpg", + "profile_sidebar_fill_color": "0cf0e5", + "id": 34874466, + "profile_text_color": "54077a", + "followers_count": 109, + "profile_sidebar_border_color": "b366d9", + "id_str": "34874466", + "profile_background_color": "642d8b", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1170, + "description": "Theatre Go-er and Do-er!, Drama Teacher, Part Thespian, Artist, Writer, Shopper: online & in person, Music Listener, TV Watcher, Movie Fan.", + "friends_count": 165, + "location": "Albury, Australia.", + "profile_link_color": "b700ff", + "profile_image_url": "http://a2.twimg.com/profile_images/1497939940/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Karen H.", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 21, + "screen_name": "purplgrl", + "notifications": null, + "url": null, + "created_at": "Fri Apr 24 07:27:29 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01e0a7", + "_rev": "1-169e0427301790c14e1e2c2daa0c1681", + "oldid": "4eb382f13de67c5117000032", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Man. So glad today is over. One of those days where the impending weekend takes precedence ovr everything.", + "created_at": "Fri Nov 04 06:17:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9800714, + -37.84867558 + ] + }, + "id": 132340714024611840, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340714024611840", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84867558, + 144.9800714 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/983202787/photo-3_normal.jpeg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15123999, + "profile_text_color": "333333", + "followers_count": 97, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15123999", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1063, + "description": "All I can say is that my life is pretty plain,\r\nAnd all I can do is just pour some tea for two and speak my point of view", + "friends_count": 75, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/983202787/photo-3_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Graf", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "spozguy", + "notifications": null, + "url": null, + "created_at": "Sun Jun 15 11:34:26 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e01e1e8", + "_rev": "1-da87ac5a88ec94addd9f08a594cbcb2b", + "oldid": "4eb382f33de67c5117000033", + "contributors": null, + "truncated": false, + "text": "Techy? @ Reina's kaharian http://t.co/zq3lOtdd", + "in_reply_to_status_id": null, + "id": 132340724975939580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 27, + 47 + ], + "url": "http://t.co/zq3lOtdd", + "expanded_url": "http://instagr.am/p/SqL-R/", + "display_url": "instagr.am/p/SqL-R/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0793, + -33.7695 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340724975939584", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594455887/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 171054290, + "profile_text_color": "333333", + "followers_count": 56, + "profile_sidebar_border_color": "C0DEED", + "id_str": "171054290", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 70, + "description": "there are no mistakes nor accidents… i just believe that everything happens for a reason.Ü", + "friends_count": 129, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1594455887/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Purieh Alonzo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "okayfynpuh", + "notifications": null, + "url": "http://facebook.com/pure.alonzo", + "created_at": "Mon Jul 26 12:56:22 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.7695, + 151.0793 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:17:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e01eef8", + "_rev": "1-f3172ad6075bdb10d9c69e13e035d96b", + "oldid": "4eb383043de67c5117000034", + "contributors": null, + "truncated": false, + "text": "Another 5:30 with Denise. Nice Friday finish. #bikram (@ Bikram Yoga) http://t.co/1tjWPkUh", + "in_reply_to_status_id": null, + "id": 132340797667426300, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 46, + 53 + ], + "text": "bikram" + } + ], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/1tjWPkUh", + "expanded_url": "http://4sq.com/tv1Tio", + "display_url": "4sq.com/tv1Tio" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.276943, + -33.768006 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340797667426304", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "time_zone": "Sydney", + "id": 16228530, + "description": "Gen-Y questioning, bikram practicing, coffee drinking, motorcycling computer nerd.", + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1564977256/iPhoto-14_normal.jpg", + "profile_sidebar_fill_color": "e0ff92", + "profile_text_color": "000000", + "followers_count": 91, + "profile_sidebar_border_color": "87bc44", + "id_str": "16228530", + "default_profile_image": false, + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 4616, + "profile_background_color": "9ae4e8", + "friends_count": 140, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/3017212/drawn-anime-imagination.jpg", + "profile_link_color": "0000ff", + "profile_image_url": "http://a0.twimg.com/profile_images/1564977256/iPhoto-14_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "geo_enabled": true, + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/3017212/drawn-anime-imagination.jpg", + "name": "OliT", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 80, + "screen_name": "OliT", + "notifications": null, + "url": null, + "created_at": "Wed Sep 10 21:22:58 +0000 2008", + "contributors_enabled": false, + "location": "Sydney, New South Wales", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.768006, + 151.276943 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:17:59 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e01f4d5", + "_rev": "1-9c9d7821f12ea5624b3867bf9ec63291", + "oldid": "4eb383123de67c5117000035", + "contributors": null, + "truncated": false, + "text": "Made it until 5pm.....what a fantastic day!!!!!! #DDB (@ DDB Sydney) http://t.co/1yddLAWr", + "in_reply_to_status_id": null, + "id": 132340853707505660, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 49, + 53 + ], + "text": "DDB" + } + ], + "urls": [ + { + "indices": [ + 69, + 89 + ], + "url": "http://t.co/1yddLAWr", + "expanded_url": "http://4sq.com/umfwdw", + "display_url": "4sq.com/umfwdw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19677663, + -33.883481 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340853707505664", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1417056033/jaddan8_twit_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 173345491, + "profile_text_color": "666666", + "followers_count": 648, + "profile_sidebar_border_color": "181A1E", + "id_str": "173345491", + "profile_background_color": "1A1B1F", + "listed_count": 11, + "utc_offset": 36000, + "statuses_count": 1133, + "description": "Devil's advocate, advertising graduate; I pay all my bills by cheque.\r\nhttp://scribd.com/jbruhn", + "friends_count": 2000, + "location": "Inner West, Sydney", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1417056033/jaddan8_twit_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/279297579/jaddan_june_twitt_8.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/279297579/jaddan_june_twitt_8.jpg", + "name": "Jaddan Bruhn", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 88, + "screen_name": "jaddan1", + "notifications": null, + "url": "http://au.linkedin.com/in/jaddan", + "created_at": "Sun Aug 01 04:19:31 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.883481, + 151.19677663 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:12 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0202ab", + "_rev": "1-8495d60273c12bd2bf842d7607853b69", + "oldid": "4eb383123de67c5117000036", + "favorited": false, + "in_reply_to_user_id": 27404952, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@calezor I hope you're ready to\nGet waaaaaaysted", + "created_at": "Fri Nov 04 06:18:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.119927, + -27.386329 + ] + }, + "id": 132340854449905660, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 27404952, + "id_str": "27404952", + "screen_name": "calezor", + "name": "Caleb Collins" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "calezor", + "id_str": "132340854449905664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.386329, + 153.119927 + ] + }, + "in_reply_to_user_id_str": "27404952", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609110706/295861_10150295779063603_575078602_7728323_2089422350_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 393357733, + "profile_text_color": "333333", + "followers_count": 5, + "profile_sidebar_border_color": "C0DEED", + "id_str": "393357733", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 27, + "description": "", + "friends_count": 31, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1609110706/295861_10150295779063603_575078602_7728323_2089422350_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Maddison Taddeucci", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Madstadd", + "notifications": null, + "url": null, + "created_at": "Tue Oct 18 12:21:56 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e020f0a", + "_rev": "1-52fcc6ecdd61dcc4be56ab069feb65c6", + "oldid": "4eb383123de67c5117000037", + "favorited": false, + "in_reply_to_user_id": 42839525, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@kelseeyh we will get in at around 10:30?", + "created_at": "Fri Nov 04 06:18:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340453398945792", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1766953, + -33.93148686 + ] + }, + "id": 132340856131817470, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 42839525, + "id_str": "42839525", + "screen_name": "kelseeyh", + "name": "kelsey hoffmann" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340453398945800, + "in_reply_to_screen_name": "kelseeyh", + "id_str": "132340856131817472", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93148686, + 151.1766953 + ] + }, + "in_reply_to_user_id_str": "42839525", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595399771/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16257578, + "profile_text_color": "333333", + "followers_count": 227, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16257578", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 6574, + "description": "Twitter account of sean mildred. word to big bird", + "friends_count": 123, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1595399771/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sean Patrick Mildred", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "SeanMildred", + "notifications": null, + "url": "http://seanyptyp.tumblr.com", + "created_at": "Fri Sep 12 15:16:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e021a07", + "_rev": "1-bccef63906c61a0dd0746a1189585beb", + "oldid": "4eb3831d3de67c5117000038", + "favorited": false, + "in_reply_to_user_id": 22244756, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@craigofleeds meh. What can you do. I've got a beer in hand now in the sun, feel less pretentious now", + "created_at": "Fri Nov 04 06:18:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340650824826880", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96874253, + -37.81850367 + ] + }, + "id": 132340899442212860, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 22244756, + "id_str": "22244756", + "screen_name": "craigofleeds", + "name": "Craig B" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340650824826880, + "in_reply_to_screen_name": "craigofleeds", + "id_str": "132340899442212864", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81850367, + 144.96874253 + ] + }, + "in_reply_to_user_id_str": "22244756", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613602807/image_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 19908338, + "profile_text_color": "663B12", + "followers_count": 689, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "19908338", + "profile_background_color": "C6E2EE", + "listed_count": 23, + "utc_offset": 36000, + "statuses_count": 14991, + "description": "Scottish. Failed heterosexual. Sci-fi & comic geek. Living in Melbourne. Plan to be the next Dr Who. Say hi! All views are my own!", + "friends_count": 852, + "location": "Melbourne", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a2.twimg.com/profile_images/1613602807/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/87481678/HeManSheRa.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/87481678/HeManSheRa.jpg", + "name": "Tom", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 14, + "screen_name": "mr_gilmour", + "notifications": null, + "url": null, + "created_at": "Mon Feb 02 14:18:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e021c9b", + "_rev": "1-dfeaa9a18bb1af62585c3931ea1814cd", + "oldid": "4eb383223de67c5117000039", + "contributors": null, + "truncated": false, + "text": "I'm at Marion Shopping Center Food Court (297 Diagonal Rd., Sturt Rd., Oaklands Park) http://t.co/a41EgdgY", + "in_reply_to_status_id": null, + "id": 132340917859389440, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 86, + 106 + ], + "url": "http://t.co/a41EgdgY", + "expanded_url": "http://4sq.com/uOzBzH", + "display_url": "4sq.com/uOzBzH" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.54596615, + -35.01629011 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340917859389440", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1537845456/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 65600703, + "profile_text_color": "3E4415", + "followers_count": 160, + "profile_sidebar_border_color": "829D5E", + "id_str": "65600703", + "profile_background_color": "352726", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 9067, + "description": "BananaJane! LameJane!", + "friends_count": 254, + "location": "in the jungle!", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1537845456/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/261511376/186193_1030495200_7514493_n.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/261511376/186193_1030495200_7514493_n.jpg", + "name": "Vanessa Jane", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "mynamelamejane", + "notifications": null, + "url": null, + "created_at": "Fri Aug 14 09:26:35 +0000 2009", + "contributors_enabled": false, + "time_zone": "Singapore", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.01629011, + 138.54596615 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:28 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e021f80", + "_rev": "1-5d2128320ebebd5335744bc7bfd494ae", + "oldid": "4eb383243de67c511700003a", + "favorited": false, + "in_reply_to_user_id": 255389892, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@samanthaeloisee Nawsssss babes you are :-$", + "created_at": "Fri Nov 04 06:18:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335802968584192", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.95755557, + -33.8720546 + ] + }, + "id": 132340931205668860, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 255389892, + "id_str": "255389892", + "screen_name": "samanthaeloisee", + "name": "samantha" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335802968584200, + "in_reply_to_screen_name": "samanthaeloisee", + "id_str": "132340931205668864", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8720546, + 150.95755557 + ] + }, + "in_reply_to_user_id_str": "255389892", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1516680171/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 34551972, + "profile_text_color": "ff0000", + "followers_count": 349, + "profile_sidebar_border_color": "ff0000", + "id_str": "34551972", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1318, + "description": "Dj / Producer \\ Dj SonudHunter \r\nWelcome to My Twitter! and Click on the \r\nFollow Me!....\r\nFollow My Tumblr . . .\r\n\r\n", + "friends_count": 1325, + "location": "Sydney, Australia", + "profile_link_color": "eb0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1516680171/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/335435112/NGC3372_gendlerhannahoe900.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/335435112/NGC3372_gendlerhannahoe900.jpg", + "name": "Dj SoundHunter", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 26, + "screen_name": "NicolasMaidana9", + "notifications": null, + "url": "http://futuresexlovesounds8.tumblr.com/", + "created_at": "Thu Apr 23 06:20:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e02260c", + "_rev": "1-da507d514cd63759908b42d39b71e701", + "oldid": "4eb383283de67c511700003b", + "favorited": false, + "in_reply_to_user_id": 18449101, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@paulverhoeven At least that way you'll have something to do.", + "created_at": "Fri Nov 04 06:18:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340348889468928", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.71853411, + -37.91374284 + ] + }, + "id": 132340946355490820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 18449101, + "id_str": "18449101", + "screen_name": "paulverhoeven", + "name": "Paul Verhoeven" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340348889468930, + "in_reply_to_screen_name": "paulverhoeven", + "id_str": "132340946355490817", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.91374284, + 147.71853411 + ] + }, + "in_reply_to_user_id_str": "18449101", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1368238343/250234_10150260787110400_557760399_9402997_1886090_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 6989, + "profile_text_color": "666666", + "followers_count": 2790, + "profile_sidebar_border_color": "181A1E", + "id_str": "6989", + "profile_background_color": "1A1B1F", + "listed_count": 170, + "utc_offset": 36000, + "statuses_count": 34421, + "description": "Online community manager, traveller.\nMoving to Hong Kong on 12 January 2012.", + "friends_count": 2088, + "location": "Paynesville, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1368238343/250234_10150260787110400_557760399_9402997_1886090_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/187640146/141300158_9e21723ad5_o.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/187640146/141300158_9e21723ad5_o.jpg", + "name": "Greg Lexiphanic", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 628, + "screen_name": "lexiphanic", + "notifications": null, + "url": "http://greg.lexiphanic.com", + "created_at": "Wed Sep 27 03:48:34 +0000 2006", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e022cff", + "_rev": "1-57ed3b6bae567ca924410e49d4196b09", + "oldid": "4eb3832a3de67c511700003c", + "contributors": null, + "truncated": false, + "text": "I'm at The Big Lobster [pic]: http://t.co/uRyKpieB", + "in_reply_to_status_id": null, + "id": 132340953066373120, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 30, + 50 + ], + "url": "http://t.co/uRyKpieB", + "expanded_url": "http://4sq.com/uBfYmI", + "display_url": "4sq.com/uBfYmI" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 139.862698, + -36.823756 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340953066373120", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1181863988/d97a2a733da331d430d57_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 54533327, + "profile_text_color": "3C3940", + "followers_count": 108, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "54533327", + "profile_background_color": "0099B9", + "listed_count": 1, + "utc_offset": 3600, + "statuses_count": 2570, + "description": "Music Lovin' Developer (Java, Objective-C, PHP) with a wide range of interests", + "friends_count": 307, + "location": "Groningen, NL", + "profile_link_color": "0099B9", + "profile_image_url": "http://a3.twimg.com/profile_images/1181863988/d97a2a733da331d430d57_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "Berend Mulder", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 34, + "screen_name": "bhmulder", + "notifications": null, + "url": null, + "created_at": "Tue Jul 07 12:40:33 +0000 2009", + "contributors_enabled": false, + "time_zone": "Amsterdam", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -36.823756, + 139.862698 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e023239", + "_rev": "1-7913367eb4228f4ece651eea75a172de", + "oldid": "4eb3832a3de67c511700003d", + "contributors": null, + "truncated": false, + "text": "RT warning dont drink... insect in the drink #Easyway !!!!!!! http://t.co/VklDXQFp", + "in_reply_to_status_id": null, + "id": 132340950847594500, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYrZMTCIAA29sH.jpg", + "expanded_url": "http://twitter.com/pauljourdan/status/132340950847594496/photo/1", + "display_url": "pic.twitter.com/VklDXQFp", + "url": "http://t.co/VklDXQFp", + "sizes": { + "large": { + "h": 1024, + "w": 768, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132340950851788800", + "indices": [ + 62, + 82 + ], + "type": "photo", + "id": 132340950851788800, + "media_url": "http://p.twimg.com/AdYrZMTCIAA29sH.jpg" + } + ], + "hashtags": [ + { + "indices": [ + 45, + 53 + ], + "text": "Easyway" + } + ], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0295033, + -27.47185438 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340950847594496", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1482722844/222542_10150185704311313_684336312_6821728_7658770_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 51544990, + "profile_text_color": "666666", + "followers_count": 232, + "profile_sidebar_border_color": "181A1E", + "id_str": "51544990", + "profile_background_color": "1A1B1F", + "listed_count": 8, + "utc_offset": 3600, + "statuses_count": 3608, + "description": "Ce qui est possible est fait ce qui est impossible seras fait !!! fan d’actualités, high-tech, de politique, de music mais également d’œnologie !!", + "friends_count": 737, + "location": "france", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1482722844/222542_10150185704311313_684336312_6821728_7658770_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "jourdan paul", + "lang": "fr", + "profile_background_tile": false, + "favourites_count": 21, + "screen_name": "pauljourdan", + "notifications": null, + "url": "https://pauljourdan.wordpress.com/", + "created_at": "Sat Jun 27 20:22:29 +0000 2009", + "contributors_enabled": false, + "time_zone": "Paris", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.47185438, + 153.0295033 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0233ad", + "_rev": "1-087dd86e35ec2c9d0573eb33bb89e8c2", + "oldid": "4eb3832a3de67c511700003e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "The destination will be the same, but trying taking a different route there. You'll be surprise what you learn and see along the way....", + "created_at": "Fri Nov 04 06:18:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.17294067, + -33.85634368 + ] + }, + "id": 132340955054481400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340955054481409", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85634368, + 151.17294067 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608400087/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 289415696, + "profile_text_color": "333333", + "followers_count": 148, + "profile_sidebar_border_color": "C0DEED", + "id_str": "289415696", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 892, + "description": "Follow your dreams no matter what people say. One life. Make it happen.", + "friends_count": 167, + "location": "Rozelle Sydney NSW Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608400087/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Edwin Asotasi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "EddyDAYONE", + "notifications": null, + "url": "http://www.rubylotel.com.au", + "created_at": "Thu Apr 28 16:19:30 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e023563", + "_rev": "1-d3434b18d4fdc4e80983fcec86a31a3d", + "oldid": "4eb383333de67c511700003f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Oh iya udah tua. Hhmmm.. RT @IndhiraAgung: Emang bisa salto? (˙▿˙?) Kan udah tua.. RT agungsemarajaya: So? Gue mesti salto?", + "created_at": "Fri Nov 04 06:18:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21371883, + -33.87138861 + ] + }, + "id": 132340992765472770, + "entities": { + "user_mentions": [ + { + "indices": [ + 28, + 41 + ], + "id": 101955558, + "id_str": "101955558", + "screen_name": "IndhiraAgung", + "name": "Arya Putri Agung .I." + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132340992765472768", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87138861, + 151.21371883 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 77386228, + "profile_text_color": "333333", + "followers_count": 229, + "profile_sidebar_border_color": "C0DEED", + "id_str": "77386228", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 14195, + "description": "Football is my life; Internetworking is my world; I am a big fan of @Kaka & Steve Jobs!", + "friends_count": 204, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/128619184/Sydney.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/128619184/Sydney.jpg", + "name": "Agung Semarajaya", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 30, + "screen_name": "agungsemarajaya", + "notifications": null, + "url": "http://www.facebook.com/agungsemarajaya", + "created_at": "Sat Sep 26 03:30:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e023ea7", + "_rev": "1-0b026f34daa0375cd6414fea81657f3e", + "oldid": "4eb383333de67c5117000040", + "contributors": null, + "truncated": false, + "text": "Kitchen Designers Perth - What to Look For in a Designer http://t.co/LWgfi1It", + "in_reply_to_status_id": null, + "id": 132340994619355140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 57, + 77 + ], + "url": "http://t.co/LWgfi1It", + "expanded_url": "http://bit.ly/rJAPLB", + "display_url": "bit.ly/rJAPLB" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.7693535, + -31.752231 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340994619355136", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1555693664/Logo_-_TW_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 356731009, + "profile_text_color": "333333", + "followers_count": 611, + "profile_sidebar_border_color": "C0DEED", + "id_str": "356731009", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 28800, + "statuses_count": 34, + "description": "Kitchen Craftsmen is WA's most popular manufacturer and retailer of quality, custom kitchens in WA. Reach Us At: (08) 6555 3490", + "friends_count": 699, + "location": "WA", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1555693664/Logo_-_TW_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/334877138/Background.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/334877138/Background.png", + "name": "Kitchen Craftsmen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "kitchencraftmen", + "notifications": null, + "url": "http://kitcraft.castpage.com.au", + "created_at": "Wed Aug 17 08:33:34 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.752231, + 115.7693535 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:46 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e024907", + "_rev": "1-0803a30b4f90e24f9e9ce94346a0b841", + "oldid": "4eb383343de67c5117000041", + "contributors": null, + "truncated": false, + "text": "I'm at Gloria Jean's Marion Shopping Centre http://t.co/VNQCmplA", + "in_reply_to_status_id": null, + "id": 132340996666179580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 44, + 64 + ], + "url": "http://t.co/VNQCmplA", + "expanded_url": "http://4sq.com/tVgtLX", + "display_url": "4sq.com/tVgtLX" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.54598761, + -35.01629011 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132340996666179584", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1537845456/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 65600703, + "profile_text_color": "3E4415", + "followers_count": 160, + "profile_sidebar_border_color": "829D5E", + "id_str": "65600703", + "profile_background_color": "352726", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 9068, + "description": "BananaJane! LameJane!", + "friends_count": 254, + "location": "in the jungle!", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1537845456/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/261511376/186193_1030495200_7514493_n.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/261511376/186193_1030495200_7514493_n.jpg", + "name": "Vanessa Jane", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "mynamelamejane", + "notifications": null, + "url": null, + "created_at": "Fri Aug 14 09:26:35 +0000 2009", + "contributors_enabled": false, + "time_zone": "Singapore", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.01629011, + 138.54598761 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:47 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e025396", + "_rev": "1-1ac48c1a0e3168b1e29dbc434cd7f023", + "oldid": "4eb383383de67c5117000042", + "favorited": false, + "in_reply_to_user_id": 21472634, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@SamLandsberger haha awesome! What a cute pet.", + "created_at": "Fri Nov 04 06:18:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339348652830721", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.06111179, + -37.93749676 + ] + }, + "id": 132341014332575740, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 21472634, + "id_str": "21472634", + "screen_name": "SamLandsberger", + "name": "Sam Landsberger" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339348652830720, + "in_reply_to_screen_name": "SamLandsberger", + "id_str": "132341014332575744", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93749676, + 145.06111179 + ] + }, + "in_reply_to_user_id_str": "21472634", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1328048663/Jack_with_Bon_Scott_Statue_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 41522563, + "profile_text_color": "333333", + "followers_count": 320, + "profile_sidebar_border_color": "C0DEED", + "id_str": "41522563", + "profile_background_color": "C0DEED", + "listed_count": 6, + "utc_offset": null, + "statuses_count": 887, + "description": "Crocmedia's @AllNightApp overnights producer, Melbourne Football & Cricket Club member that lives & breaths sport", + "friends_count": 855, + "location": "Mentone", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1328048663/Jack_with_Bon_Scott_Statue_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Jack Richter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "jackrichter", + "notifications": null, + "url": null, + "created_at": "Thu May 21 03:41:13 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e025cc1", + "_rev": "1-f94de011373ccdd341cb6a029f3de63f", + "oldid": "4eb3833b3de67c5117000043", + "contributors": null, + "truncated": false, + "text": "I'm at Surry Hills Shopping Village (Cleveland St., Baptist St., Surry Hills) http://t.co/l8xMI628", + "in_reply_to_status_id": null, + "id": 132341025212604420, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 78, + 98 + ], + "url": "http://t.co/l8xMI628", + "expanded_url": "http://4sq.com/szkJTA", + "display_url": "4sq.com/szkJTA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2121205, + -33.8923867 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341025212604416", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1497833613/Donna_normal.jpg", + "profile_sidebar_fill_color": "9beaeb", + "id": 20639758, + "profile_text_color": "26046b", + "followers_count": 399, + "profile_sidebar_border_color": "1ddec4", + "id_str": "20639758", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 18832, + "description": "Spin junkie - Pilates guru in training. Sales person extraordinaire. *L*", + "friends_count": 181, + "location": "Surry Hills", + "profile_link_color": "a60525", + "profile_image_url": "http://a3.twimg.com/profile_images/1497833613/Donna_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/150021843/Bubbly.jpeg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/150021843/Bubbly.jpeg", + "name": "Donna Gow", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 27, + "screen_name": "donnagow", + "notifications": null, + "url": null, + "created_at": "Wed Feb 11 23:30:25 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8923867, + 151.2121205 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:53 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e026c2a", + "_rev": "1-02a4ca0ada550c8241fd48f8efff2233", + "oldid": "4eb3833f3de67c5117000044", + "contributors": null, + "truncated": false, + "text": "\"@shineethailand: 111103 Minho's Solo - Rocketeer! http://t.co/MSpsCuUZ\"", + "in_reply_to_status_id": null, + "id": 132341044447686660, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 16 + ], + "id": 131087085, + "id_str": "131087085", + "screen_name": "shineethailand", + "name": "SHINee Thailand" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 51, + 71 + ], + "url": "http://t.co/MSpsCuUZ", + "expanded_url": "http://youtu.be/4HJ2VdsJQmA", + "display_url": "youtu.be/4HJ2VdsJQmA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6946852, + -34.6390709 + ] + }, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341044447686656", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570717877/Xy37VOSD_normal", + "profile_sidebar_fill_color": "ffebfe", + "id": 248039464, + "profile_text_color": "666666", + "followers_count": 41, + "profile_sidebar_border_color": "181A1E", + "id_str": "248039464", + "profile_background_color": "fa9be7", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 582, + "description": "A Locket, Part of the Harry Potter Generation, Just an Average Girl, Totally Relatable, Her Obsessions are way out of hand. Does She Care? No ;)", + "friends_count": 186, + "location": "Australia :)", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1570717877/Xy37VOSD_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/340449687/funny.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/340449687/funny.jpg", + "name": "Thoa Turtle", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 16, + "screen_name": "thoax3", + "notifications": null, + "url": "http://aloha-key.tumblr.com/", + "created_at": "Sun Feb 06 03:43:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.6390709, + 138.6946852 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:18:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e026dfe", + "_rev": "1-88ee029e5cb1b65ca2f232188ec89f93", + "oldid": "4eb383413de67c5117000045", + "favorited": false, + "in_reply_to_user_id": 358096399, + "contributors": null, + "source": "<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>", + "text": "@intanurafniPS haha.. Iy.. Baru inget... Hahaha", + "created_at": "Fri Nov 04 06:19:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340846312955904", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2106, + -33.88999 + ] + }, + "id": 132341051074686980, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 358096399, + "id_str": "358096399", + "screen_name": "intanurafniPS", + "name": "Intan NP" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340846312955900, + "in_reply_to_screen_name": "intanurafniPS", + "id_str": "132341051074686976", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88999, + 151.2106 + ] + }, + "in_reply_to_user_id_str": "358096399", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1538183593/gus_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 28932072, + "profile_text_color": "333333", + "followers_count": 80, + "profile_sidebar_border_color": "C0DEED", + "id_str": "28932072", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3020, + "description": "IT Networking student at TAFE in Sydney, Australia", + "friends_count": 98, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1538183593/gus_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/112798825/meeeee.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/112798825/meeeee.jpg", + "name": "Kurniawan Bagus S", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "GusSardjono", + "notifications": null, + "url": "http://facebook.com/guszlicious", + "created_at": "Sun Apr 05 03:28:38 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e027786", + "_rev": "1-6020135a45f8e32adcb4db98c7130d22", + "oldid": "4eb383433de67c5117000046", + "contributors": null, + "truncated": false, + "text": "Bishops cocktail party (@ Craig's Royal Hotel Ballarat) [pic]: http://t.co/IkQQeWU9", + "in_reply_to_status_id": null, + "id": 132341057504559100, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 63, + 83 + ], + "url": "http://t.co/IkQQeWU9", + "expanded_url": "http://4sq.com/u3WTX2", + "display_url": "4sq.com/u3WTX2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 143.857619, + -37.5628 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341057504559104", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1494408098/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 19704213, + "profile_text_color": "333333", + "followers_count": 112, + "profile_sidebar_border_color": "C0DEED", + "id_str": "19704213", + "profile_background_color": "C0DEED", + "listed_count": 7, + "utc_offset": -36000, + "statuses_count": 1465, + "description": "Anglican Diocese of Ballarat\r\nLydiard Street\r\nBallarat, VIC. Australia", + "friends_count": 114, + "location": "iPhone: -37.591492,144.217133", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1494408098/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4802437/SV502179.JPG", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4802437/SV502179.JPG", + "name": "Kevin Harper", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "stdunstan", + "notifications": null, + "url": "http://st-dunstans.blogspot.com/", + "created_at": "Thu Jan 29 09:56:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.5628, + 143.857619 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:19:01 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e02805b", + "_rev": "1-a4bd11860d6e71715e07e43a4df2a619", + "oldid": "4eb383453de67c5117000047", + "favorited": false, + "in_reply_to_user_id": 14706898, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Saresa Time to get wasted and puke in his sock drawer.", + "created_at": "Fri Nov 04 06:19:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340449003319296", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12276715, + -37.85296025 + ] + }, + "id": 132341069013721090, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 14706898, + "id_str": "14706898", + "screen_name": "Saresa", + "name": "Angela" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340449003319300, + "in_reply_to_screen_name": "Saresa", + "id_str": "132341069013721088", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85296025, + 145.12276715 + ] + }, + "in_reply_to_user_id_str": "14706898", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12617, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e028e57", + "_rev": "1-0e7ed7af6b92e2faebf97651004945d7", + "oldid": "4eb3834b3de67c5117000048", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "description": "Football is my life; Internetworking is my world; I am a big fan of @Kaka & Steve Jobs!", + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "is_translator": false, + "id": 77386228, + "profile_text_color": "333333", + "followers_count": 229, + "profile_sidebar_border_color": "C0DEED", + "location": "Sydney, Australia", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 14196, + "default_profile_image": false, + "friends_count": 204, + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/128619184/Sydney.jpg", + "id_str": "77386228", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/128619184/Sydney.jpg", + "screen_name": "agungsemarajaya", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 30, + "name": "Agung Semarajaya", + "url": "http://www.facebook.com/agungsemarajaya", + "created_at": "Sat Sep 26 03:30:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "favorited": false, + "contributors": null, + "truncated": false, + "text": "Sssstt.. RT @karizkungkung: Kiiiiirrrr RT agungsemarajaya: Hehehe.. RT @yoyyo_ms: Ya kak. Ok. RT agungsemarajaya: Mu je.. Hahaha. :p", + "created_at": "Fri Nov 04 06:19:10 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21371883, + -33.87138861 + ] + }, + "id": 132341094766755840, + "entities": { + "user_mentions": [ + { + "indices": [ + 12, + 26 + ], + "id_str": "179514426", + "screen_name": "karizkungkung", + "name": "karis", + "id": 179514426 + }, + { + "indices": [ + 71, + 80 + ], + "id_str": "108272213", + "screen_name": "yoyyo_ms", + "name": "MarsyellaNandaSmgnsg", + "id": 108272213 + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "id_str": "132341094766755840", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87138861, + 151.21371883 + ] + }, + "in_reply_to_user_id_str": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>" + }, + { + "_id": "51f39676462cca21859bd92d8e0293d6", + "_rev": "1-59f270ce5ed911caef0b8ddb58c7d262", + "oldid": "4eb3834c3de67c5117000049", + "favorited": false, + "in_reply_to_user_id": 68907635, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@KrE8oR69 @undacover not sure about design, but that's pretty dazzley :D", + "created_at": "Fri Nov 04 06:19:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132312813401145344", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97000444, + -37.80846097 + ] + }, + "id": 132341096561913860, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 68907635, + "id_str": "68907635", + "screen_name": "KrE8oR69", + "name": "Steven White" + }, + { + "indices": [ + 10, + 20 + ], + "id": 15940829, + "id_str": "15940829", + "screen_name": "undacover", + "name": "undacover" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132312813401145340, + "in_reply_to_screen_name": "KrE8oR69", + "id_str": "132341096561913856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80846097, + 144.97000444 + ] + }, + "in_reply_to_user_id_str": "68907635", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "profile_sidebar_fill_color": "efefef", + "id": 15393010, + "profile_text_color": "333333", + "followers_count": 343, + "profile_sidebar_border_color": "eeeeee", + "id_str": "15393010", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 5420, + "description": "Zinc Saucier", + "friends_count": 342, + "location": "Coburg, VIC, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Vince Lumberking", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "nopersonality", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=1246058646", + "created_at": "Fri Jul 11 16:00:43 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e02a377", + "_rev": "1-307dbdc3287b4429c00e616d3f7d34f4", + "oldid": "4eb3834f3de67c511700004a", + "contributors": null, + "truncated": false, + "text": "Stopping in for a chocolate sundae for the ride home. McFlurry's are shit now (@ McDonald's) http://t.co/bwCdgTVa", + "in_reply_to_status_id": null, + "id": 132341108624736260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 93, + 113 + ], + "url": "http://t.co/bwCdgTVa", + "expanded_url": "http://4sq.com/szbTiA", + "display_url": "4sq.com/szbTiA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.94826653, + -27.535683 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341108624736256", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1599252443/Webb-Ellis-Trophy_800_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 118017287, + "profile_text_color": "333333", + "followers_count": 223, + "profile_sidebar_border_color": "eeeeee", + "id_str": "118017287", + "profile_background_color": "131516", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 3954, + "description": "All Blacks, Crusaders, Fishing, Family", + "friends_count": 181, + "location": "Paradise - Brisbane - Qld", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1599252443/Webb-Ellis-Trophy_800_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Glenn", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "ABCrusader", + "notifications": null, + "url": null, + "created_at": "Sat Feb 27 09:54:21 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.535683, + 152.94826653 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:19:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e02a86f", + "_rev": "1-0a9ebfd9e0fbb95cbbf12c22db275d84", + "oldid": "4eb383533de67c511700004b", + "contributors": null, + "truncated": false, + "text": "Buying soda (@ Liquorland Surry Hills) http://t.co/XoYjA1P3", + "in_reply_to_status_id": null, + "id": 132341126031085570, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/XoYjA1P3", + "expanded_url": "http://4sq.com/uxHXpM", + "display_url": "4sq.com/uxHXpM" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.212356, + -33.8915126 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341126031085568", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1497833613/Donna_normal.jpg", + "profile_sidebar_fill_color": "9beaeb", + "id": 20639758, + "profile_text_color": "26046b", + "followers_count": 399, + "profile_sidebar_border_color": "1ddec4", + "id_str": "20639758", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 18833, + "description": "Spin junkie - Pilates guru in training. Sales person extraordinaire. *L*", + "friends_count": 181, + "location": "Surry Hills", + "profile_link_color": "a60525", + "profile_image_url": "http://a3.twimg.com/profile_images/1497833613/Donna_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/150021843/Bubbly.jpeg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/150021843/Bubbly.jpeg", + "name": "Donna Gow", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 27, + "screen_name": "donnagow", + "notifications": null, + "url": null, + "created_at": "Wed Feb 11 23:30:25 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8915126, + 151.212356 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:19:17 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e02ae3e", + "_rev": "1-d54e3edbf50c57a19c696ccce75c93f8", + "oldid": "4eb383533de67c511700004c", + "contributors": null, + "truncated": false, + "text": "Wedding ceremony rehearsals. (@ St. Stephen's Cathedral (Catholic)) [pic]: http://t.co/FHNpqyaH", + "in_reply_to_status_id": null, + "id": 132341126702178300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 75, + 95 + ], + "url": "http://t.co/FHNpqyaH", + "expanded_url": "http://4sq.com/uEDIPA", + "display_url": "4sq.com/uEDIPA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0287156, + -27.469117 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341126702178304", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1378510659/Robelen_MA_close_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 17823643, + "profile_text_color": "333333", + "followers_count": 777, + "profile_sidebar_border_color": "D9B17E", + "id_str": "17823643", + "profile_background_color": "8B542B", + "listed_count": 32, + "utc_offset": 36000, + "statuses_count": 2204, + "description": "Marketer, writer, social networker, lifestyle blogger, shoe lover and ballroom latin dancer.", + "friends_count": 668, + "location": "Melbourne, Australia", + "profile_link_color": "9D582E", + "profile_image_url": "http://a0.twimg.com/profile_images/1378510659/Robelen_MA_close_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Robelen Bajar", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 148, + "screen_name": "Robelen", + "notifications": null, + "url": "http://www.robelenbajar.com", + "created_at": "Wed Dec 03 00:36:40 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.469117, + 153.0287156 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:19:18 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e02b10d", + "_rev": "1-04107d252b33779e39761b7652cd2c1a", + "oldid": "4eb383533de67c511700004d", + "favorited": false, + "in_reply_to_user_id": 91644349, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@malcadarroca they nver fail to make me smile, hihihi.. sleep kn moo...", + "created_at": "Fri Nov 04 06:19:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335841849774080", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.84217399, + -33.77773714 + ] + }, + "id": 132341128316989440, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 91644349, + "id_str": "91644349", + "screen_name": "malcadarroca", + "name": "sweetsexything" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335841849774080, + "in_reply_to_screen_name": "malcadarroca", + "id_str": "132341128316989441", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77773714, + 150.84217399 + ] + }, + "in_reply_to_user_id_str": "91644349", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1168834097/7_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 216503806, + "profile_text_color": "663B12", + "followers_count": 53, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "216503806", + "profile_background_color": "C6E2EE", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 711, + "description": "God is indeed so Great!\r\n\r\n", + "friends_count": 83, + "location": "Sydney, Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a2.twimg.com/profile_images/1168834097/7_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/172411909/7.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/172411909/7.jpg", + "name": "Elmer Baylon", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "cuteelmer", + "notifications": null, + "url": "http://elmercute.blogspot.com", + "created_at": "Tue Nov 16 22:23:29 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e02be50", + "_rev": "1-50d6574a64d32d24a7b8750aed42b2cf", + "oldid": "4eb383563de67c511700004e", + "contributors": null, + "truncated": false, + "text": "I'm at Centro Surfers Paradise (Cavill Ave., Surfers Paradise) http://t.co/u1Urg31T", + "in_reply_to_status_id": null, + "id": 132341137942904830, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 63, + 83 + ], + "url": "http://t.co/u1Urg31T", + "expanded_url": "http://4sq.com/sviATA", + "display_url": "4sq.com/sviATA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.43044519, + -28.00225465 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341137942904833", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1543432844/Nick_Looking_Up_Helment_Springbrook_normal.jpg", + "profile_sidebar_fill_color": "e0ff92", + "id": 9905812, + "profile_text_color": "000000", + "followers_count": 1701, + "profile_sidebar_border_color": "87bc44", + "id_str": "9905812", + "profile_background_color": "9ae4e8", + "listed_count": 151, + "utc_offset": 36000, + "statuses_count": 41825, + "description": "I'm a serial entrepreneur searching for a repeatable business model around cycling. My #cyclists questionnaire http://bit.ly/ihsxiJ takes 5 mins.", + "friends_count": 827, + "location": "Gold Coast, Australia", + "profile_link_color": "0000ff", + "profile_image_url": "http://a1.twimg.com/profile_images/1543432844/Nick_Looking_Up_Helment_Springbrook_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/146770137/IMGP0519.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/146770137/IMGP0519.JPG", + "name": "Nick Hortovanyi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 16, + "screen_name": "hortovanyi", + "notifications": null, + "url": "http://newco1.com", + "created_at": "Sat Nov 03 03:18:43 +0000 2007", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.00225465, + 153.43044519 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:19:20 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e02cc32", + "_rev": "1-3d66bd0201b173dda210ed930bd56316", + "oldid": "4eb383583de67c511700004f", + "favorited": false, + "in_reply_to_user_id": 267126098, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MartinaLouise_ haha verkar som det va;)", + "created_at": "Fri Nov 04 06:19:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132334912601726977", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96045541, + -37.83241927 + ] + }, + "id": 132341148638392320, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 267126098, + "id_str": "267126098", + "screen_name": "MartinaLouise_", + "name": "Martina Carlsson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132334912601726980, + "in_reply_to_screen_name": "MartinaLouise_", + "id_str": "132341148638392320", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.83241927, + 144.96045541 + ] + }, + "in_reply_to_user_id_str": "267126098", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1360048143/bildem_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 300889040, + "profile_text_color": "333333", + "followers_count": 39, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "300889040", + "profile_background_color": "EBEBEB", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1217, + "description": "", + "friends_count": 55, + "location": "Falkenberg", + "profile_link_color": "990000", + "profile_image_url": "http://a0.twimg.com/profile_images/1360048143/bildem_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Emelie Carlsson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "EmeliieCarlsson", + "notifications": null, + "url": "http://eemeliec.blogg.se", + "created_at": "Wed May 18 14:39:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e02d0b1", + "_rev": "1-21cbdbf5fad3d9f901950ffd815913dd", + "oldid": "4eb383593de67c5117000050", + "contributors": null, + "truncated": false, + "text": "LOLWUT?! http://t.co/QUUwk1em", + "in_reply_to_status_id": null, + "id": 132341151251447800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 9, + 29 + ], + "url": "http://t.co/QUUwk1em", + "expanded_url": "http://people.howstuffworks.com/kissing.htm", + "display_url": "people.howstuffworks.com/kissing.htm" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.78211618, + -37.82305392 + ] + }, + "source": "<a href=\"http://levelupstudio.com\" rel=\"nofollow\">Plume </a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341151251447808", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1512892388/208117_5346002943_536672943_188163_7301_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 183241477, + "profile_text_color": "333333", + "followers_count": 133, + "profile_sidebar_border_color": "eeeeee", + "id_str": "183241477", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 5210, + "description": "A 30s-something guy with a life switch stuck at 'Difficult'.", + "friends_count": 109, + "location": "Melbourne, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1512892388/208117_5346002943_536672943_188163_7301_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/182563470/twitter-bg-1c.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/182563470/twitter-bg-1c.jpg", + "name": "Shane", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "seoidau", + "notifications": null, + "url": null, + "created_at": "Thu Aug 26 14:34:35 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82305392, + 144.78211618 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:19:23 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e02d7b7", + "_rev": "1-bc635f899d81b3edef1c44d0edd0ad16", + "oldid": "4eb383633de67c5117000051", + "favorited": false, + "in_reply_to_user_id": 20206851, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@jamesbergin Thanks for the RT!", + "created_at": "Fri Nov 04 06:19:34 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335118571409408", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97030132, + -37.81294856 + ] + }, + "id": 132341194826072060, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 20206851, + "id_str": "20206851", + "screen_name": "jamesbergin", + "name": "James Bergin" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335118571409400, + "in_reply_to_screen_name": "jamesbergin", + "id_str": "132341194826072064", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81294856, + 144.97030132 + ] + }, + "in_reply_to_user_id_str": "20206851", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/979562224/Darren_profile_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 27604831, + "profile_text_color": "3C3940", + "followers_count": 1203, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "27604831", + "profile_background_color": "0099B9", + "listed_count": 60, + "utc_offset": 36000, + "statuses_count": 1644, + "description": "Social media junkie, Gov2 groupie, geek translator, PR professional, cultural spectator, speaker, proud dad. Views are my own.\r\nGoogle+ http://gplus.to/DarrenW", + "friends_count": 1103, + "location": "Melbourne, Australia", + "profile_link_color": "0099B9", + "profile_image_url": "http://a3.twimg.com/profile_images/979562224/Darren_profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "Darren Whitelaw", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 78, + "screen_name": "darrenwhitelaw", + "notifications": null, + "url": "http://au.linkedin.com/in/digitaldarren", + "created_at": "Mon Mar 30 08:16:49 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e02e4f7", + "_rev": "1-5d878d2cc41f4c79f03689ebb4cfb8a8", + "oldid": "4eb383653de67c5117000052", + "contributors": null, + "truncated": false, + "text": "Drinking (@ Woolpack Hotel) http://t.co/tKXADyVQ", + "in_reply_to_status_id": null, + "id": 132341201255936000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 28, + 48 + ], + "url": "http://t.co/tKXADyVQ", + "expanded_url": "http://4sq.com/stEThw", + "display_url": "4sq.com/stEThw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.002439, + -33.813557 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341201255936000", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1543663231/100_0132_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14211324, + "profile_text_color": "333333", + "followers_count": 14, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14211324", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 214, + "description": "Just a Guy ...", + "friends_count": 55, + "location": "New South Wales, Lurnea", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1543663231/100_0132_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Michael Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Mr_Notes_Man", + "notifications": null, + "url": "http://www.mjharris.com.au", + "created_at": "Mon Mar 24 22:42:57 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.813557, + 151.002439 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:19:35 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e02e5f0", + "_rev": "1-fb31db33921b241ac74b70680b04ac99", + "oldid": "4eb383673de67c5117000053", + "favorited": false, + "in_reply_to_user_id": 16820809, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@MyAchingHead there is bang bang in Surry Hills, good coffee and food. Strand Coffee in the Strand Arcade is good too. Where you situated.", + "created_at": "Fri Nov 04 06:19:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132331115372494849", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20484296, + -33.87743407 + ] + }, + "id": 132341210940575740, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 16820809, + "id_str": "16820809", + "screen_name": "MyAchingHead", + "name": "Michael@MyAchingHead" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132331115372494850, + "in_reply_to_screen_name": "MyAchingHead", + "id_str": "132341210940575745", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87743407, + 151.20484296 + ] + }, + "in_reply_to_user_id_str": "16820809", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1100280058/Photo_122_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 19740462, + "profile_text_color": "666666", + "followers_count": 435, + "profile_sidebar_border_color": "181A1E", + "id_str": "19740462", + "profile_background_color": "1A1B1F", + "listed_count": 11, + "utc_offset": 36000, + "statuses_count": 8323, + "description": "Formally @flungabunga. Sydney based dev, geek, nerd, father, n' things", + "friends_count": 539, + "location": "iPhone: -33.861181,151.180817", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1100280058/Photo_122_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Ian J. Grant", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 21, + "screen_name": "MrFlungabunga", + "notifications": null, + "url": null, + "created_at": "Thu Jan 29 22:53:42 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e02f373", + "_rev": "1-190dd485de49e7ef005252dc5b844df3", + "oldid": "4eb383693de67c5117000054", + "favorited": false, + "in_reply_to_user_id": 343310766, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Newjocke HAHA det tkr du va! ;)", + "created_at": "Fri Nov 04 06:19:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337093287493633", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96045541, + -37.83241927 + ] + }, + "id": 132341217840209920, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 343310766, + "id_str": "343310766", + "screen_name": "Newjocke", + "name": "Joakim Nyman" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337093287493630, + "in_reply_to_screen_name": "Newjocke", + "id_str": "132341217840209920", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.83241927, + 144.96045541 + ] + }, + "in_reply_to_user_id_str": "343310766", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1360048143/bildem_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 300889040, + "profile_text_color": "333333", + "followers_count": 39, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "300889040", + "profile_background_color": "EBEBEB", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1218, + "description": "", + "friends_count": 55, + "location": "Falkenberg", + "profile_link_color": "990000", + "profile_image_url": "http://a0.twimg.com/profile_images/1360048143/bildem_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Emelie Carlsson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "EmeliieCarlsson", + "notifications": null, + "url": "http://eemeliec.blogg.se", + "created_at": "Wed May 18 14:39:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e02f812", + "_rev": "1-0b6cf242f08d12c59907339ec8f6ea3d", + "oldid": "4eb3836b3de67c5117000055", + "favorited": false, + "in_reply_to_user_id": 72815339, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mezza16 No way! I am at Cabra library with the I.T boys. I think they get too distracted with all the girls around lol.", + "created_at": "Fri Nov 04 06:19:42 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132329948793946112", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.93548825, + -33.89624369 + ] + }, + "id": 132341228711837700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 72815339, + "id_str": "72815339", + "screen_name": "mezza16", + "name": "Aimy Le" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132329948793946110, + "in_reply_to_screen_name": "mezza16", + "id_str": "132341228711837697", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89624369, + 150.93548825 + ] + }, + "in_reply_to_user_id_str": "72815339", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1134954499/2010_11_51_58_PM_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 11032242, + "profile_text_color": "333333", + "followers_count": 26, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "11032242", + "profile_background_color": "EBEBEB", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 161, + "description": "", + "friends_count": 31, + "location": "sydney, Australia", + "profile_link_color": "990000", + "profile_image_url": "http://a0.twimg.com/profile_images/1134954499/2010_11_51_58_PM_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Norman Vuong", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "normanvuong", + "notifications": null, + "url": "http://normanvuong.com", + "created_at": "Mon Dec 10 23:05:50 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03061f", + "_rev": "1-4df6f3f74b92a7c8c5a5b3db6c38c605", + "oldid": "4eb3836c3de67c5117000056", + "favorited": false, + "in_reply_to_user_id": 27862874, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@phrantakle I want to. A LOT", + "created_at": "Fri Nov 04 06:19:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337359407685633", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20030538, + -33.88416006 + ] + }, + "id": 132341233220730880, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 27862874, + "id_str": "27862874", + "screen_name": "phrantakle", + "name": "Peter" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337359407685630, + "in_reply_to_screen_name": "phrantakle", + "id_str": "132341233220730880", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88416006, + 151.20030538 + ] + }, + "in_reply_to_user_id_str": "27862874", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 112130654, + "profile_text_color": "333333", + "followers_count": 127, + "profile_sidebar_border_color": "C0DEED", + "id_str": "112130654", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3670, + "description": "", + "friends_count": 176, + "location": "SYDNEY AUSTRALIA", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "name": "Lizzy P", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 72, + "screen_name": "madeofcake", + "notifications": null, + "url": null, + "created_at": "Sun Feb 07 10:25:15 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e030636", + "_rev": "1-737f57659b273112ccb91b3d30b8fe5c", + "oldid": "4eb3836f3de67c5117000057", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Wow I really hate Bella swan ... F$#king twilight !", + "created_at": "Fri Nov 04 06:19:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33342868, + -38.03079324 + ] + }, + "id": 132341244226584580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341244226584576", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03079324, + 145.33342868 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2627, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e030aa6", + "_rev": "1-c9a1f70f0d6b2e9f98535ca2c0059912", + "oldid": "4eb383713de67c5117000058", + "favorited": false, + "in_reply_to_user_id": 20828759, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@yaynadja I agree. 2nd hand BMW station wagon FTW!", + "created_at": "Fri Nov 04 06:19:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132327462955778048", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9569324, + -37.82212899 + ] + }, + "id": 132341254028660740, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 20828759, + "id_str": "20828759", + "screen_name": "yaynadja", + "name": "Nadja Mattata" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132327462955778050, + "in_reply_to_screen_name": "yaynadja", + "id_str": "132341254028660736", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82212899, + 144.9569324 + ] + }, + "in_reply_to_user_id_str": "20828759", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1478339951/Tom_Baker_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20936512, + "profile_text_color": "333333", + "followers_count": 70, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20936512", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 484, + "description": "", + "friends_count": 172, + "location": "Melbourne, Victoria", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1478339951/Tom_Baker_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Shaun Brady", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "bradii", + "notifications": null, + "url": null, + "created_at": "Sun Feb 15 20:57:35 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e030ab7", + "_rev": "1-390cdc255b7c8734c355434dabd33b1d", + "oldid": "4eb383763de67c5117000059", + "favorited": false, + "in_reply_to_user_id": 27862874, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@phrantakle can it be done", + "created_at": "Fri Nov 04 06:19:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337359407685633", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20026056, + -33.88415056 + ] + }, + "id": 132341274614312960, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 27862874, + "id_str": "27862874", + "screen_name": "phrantakle", + "name": "Peter" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337359407685630, + "in_reply_to_screen_name": "phrantakle", + "id_str": "132341274614312963", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88415056, + 151.20026056 + ] + }, + "in_reply_to_user_id_str": "27862874", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 112130654, + "profile_text_color": "333333", + "followers_count": 127, + "profile_sidebar_border_color": "C0DEED", + "id_str": "112130654", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3671, + "description": "", + "friends_count": 176, + "location": "SYDNEY AUSTRALIA", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "name": "Lizzy P", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 72, + "screen_name": "madeofcake", + "notifications": null, + "url": null, + "created_at": "Sun Feb 07 10:25:15 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0318a6", + "_rev": "1-5c4841bc41f3131c2bb6a608397af8f0", + "oldid": "4eb383773de67c511700005a", + "favorited": false, + "in_reply_to_user_id": 283860379, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@holly_fahey @Eamontheranga ideed! What's the point!! Is it family or money?! My pick is money and family is a front", + "created_at": "Fri Nov 04 06:19:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132338668147965952", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97414237, + -37.83423488 + ] + }, + "id": 132341277994917890, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 283860379, + "id_str": "283860379", + "screen_name": "holly_fahey", + "name": "Holly Fahey" + }, + { + "indices": [ + 13, + 27 + ], + "id": 332158612, + "id_str": "332158612", + "screen_name": "Eamontheranga", + "name": "Eamon" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132338668147965950, + "in_reply_to_screen_name": "holly_fahey", + "id_str": "132341277994917890", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.83423488, + 144.97414237 + ] + }, + "in_reply_to_user_id_str": "283860379", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572856735/D15B12EB-8D7D-4469-A176-086E107EAB88_normal", + "profile_sidebar_fill_color": "efefef", + "id": 38409957, + "profile_text_color": "333333", + "followers_count": 372, + "profile_sidebar_border_color": "eeeeee", + "id_str": "38409957", + "profile_background_color": "131516", + "listed_count": 22, + "utc_offset": 36000, + "statuses_count": 26800, + "description": "instagram: xander85, @Collingwood_FC, 26, twitter fiend, Space Invader Scarf, Geek, LEGO, Rhino Rider, Guitar, Stargate, Live Music, ♡ @lilithia ♥", + "friends_count": 294, + "location": "Templestowe, Victoria", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1572856735/D15B12EB-8D7D-4469-A176-086E107EAB88_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Grant Alexander", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 150, + "screen_name": "xander85", + "notifications": null, + "url": "http://acousticmushroom.com", + "created_at": "Thu May 07 11:01:44 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e031f54", + "_rev": "1-f302407bcbbdae8967a683ef186b1072", + "oldid": "4eb383783de67c511700005b", + "favorited": false, + "in_reply_to_user_id": 14566904, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@highly_revolved umm...me?", + "created_at": "Fri Nov 04 06:19:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341207585128448", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96995484, + -37.80742259 + ] + }, + "id": 132341280343732220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 14566904, + "id_str": "14566904", + "screen_name": "highly_revolved", + "name": "Michael Ballantine" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341207585128450, + "in_reply_to_screen_name": "highly_revolved", + "id_str": "132341280343732225", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80742259, + 144.96995484 + ] + }, + "in_reply_to_user_id_str": "14566904", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "profile_sidebar_fill_color": "efefef", + "id": 15393010, + "profile_text_color": "333333", + "followers_count": 343, + "profile_sidebar_border_color": "eeeeee", + "id_str": "15393010", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 5421, + "description": "Zinc Saucier", + "friends_count": 342, + "location": "Coburg, VIC, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Vince Lumberking", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "nopersonality", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=1246058646", + "created_at": "Fri Jul 11 16:00:43 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e032dfa", + "_rev": "1-1e02a5f8e1e5f228caadc0b5c9f97b63", + "oldid": "4eb383803de67c511700005c", + "contributors": null, + "truncated": false, + "text": "Fantastic afternoon rendezvous with my JR Ewing buddies (@ Movida Aqui) http://t.co/ROMFuYHU", + "in_reply_to_status_id": null, + "id": 132341315601055740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/ROMFuYHU", + "expanded_url": "http://4sq.com/tZZHGk", + "display_url": "4sq.com/tZZHGk" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95846272, + -37.81494585 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341315601055744", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1180772329/simon_jan_09_normal.jpg", + "profile_sidebar_fill_color": "000205", + "id": 2077351, + "profile_text_color": "999999", + "followers_count": 1191, + "profile_sidebar_border_color": "252625", + "id_str": "2077351", + "profile_background_color": "050505", + "listed_count": 42, + "utc_offset": 36000, + "statuses_count": 7613, + "description": "Digital activist | Tech-junkie | Lifestreamer | Mobile OCD | Wannabe fitness freak | Art admirer | Innovation advocate | Corporate change agent", + "friends_count": 399, + "location": "", + "profile_link_color": "0e92f0", + "profile_image_url": "http://a1.twimg.com/profile_images/1180772329/simon_jan_09_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/337153994/venice_night.JPG", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/337153994/venice_night.JPG", + "name": "Simon Lazenby", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "simonlazenby", + "notifications": null, + "url": "http://au.linkedin.com/in/slazenby", + "created_at": "Sat Mar 24 03:21:33 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81494585, + 144.95846272 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:20:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e033a8f", + "_rev": "1-befe81fd1f9d11f73ac21685269c7564", + "oldid": "4eb383853de67c511700005d", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I realise I am a #britabroad but oh lord when you spot others (a mile away) it's truly mortifying! No wonder we are abhorred! #embarrassment", + "created_at": "Fri Nov 04 06:20:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20929158, + -33.87092647 + ] + }, + "id": 132341335691763710, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 17, + 28 + ], + "text": "britabroad" + }, + { + "indices": [ + 126, + 140 + ], + "text": "embarrassment" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341335691763712", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87092647, + 151.20929158 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576484270/085b4a41d81f4b6b8d28e93924ff6ab9_7_normal.jpg", + "profile_sidebar_fill_color": "A0C5C7", + "id": 19596304, + "profile_text_color": "333333", + "followers_count": 53, + "profile_sidebar_border_color": "86A4A6", + "id_str": "19596304", + "profile_background_color": "709397", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 379, + "description": "I want it all, especially the stuff I know I can't have.... ", + "friends_count": 122, + "location": "", + "profile_link_color": "FF3300", + "profile_image_url": "http://a3.twimg.com/profile_images/1576484270/085b4a41d81f4b6b8d28e93924ff6ab9_7_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme6/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme6/bg.gif", + "name": "Victoria Aitchison", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "Vickieplum", + "notifications": null, + "url": null, + "created_at": "Tue Jan 27 15:18:30 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e034703", + "_rev": "1-d8a5cbaa7a0893389ea942de396d590b", + "oldid": "4eb3838b3de67c511700005e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 2.5 km/h WNW. Barometer 1004.9 hPa, Falling slowly. Temperature 26.5 °C. Rain today 0.0 mm. Humidity 28%", + "created_at": "Fri Nov 04 06:20:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.08972222, + -37.36861111 + ] + }, + "id": 132341360589148160, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341360589148160", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.36861111, + 144.08972222 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/939849531/eganstowntwit_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 146980769, + "profile_text_color": "3E4415", + "followers_count": 7, + "profile_sidebar_border_color": "829D5E", + "id_str": "146980769", + "profile_background_color": "352726", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2155, + "description": "Community pages for the people of Eganstown 7kms South west of Daylesford Victoria", + "friends_count": 8, + "location": "Eganstown", + "profile_link_color": "D02B55", + "profile_image_url": "http://a1.twimg.com/profile_images/939849531/eganstowntwit_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/106250610/eganstowntwit.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/106250610/eganstowntwit.jpg", + "name": "Eganstown", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Eganstown", + "notifications": null, + "url": "http://www.eganstown.net.au", + "created_at": "Sat May 22 22:03:18 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03544c", + "_rev": "1-8a7a54e6eddd775f118c6ade12243e74", + "oldid": "4eb3838b3de67c511700005f", + "contributors": null, + "truncated": false, + "text": "Knock off time in 45! Come & join us for a brew. #fridaynight (@ Brew) http://t.co/dL4Bkfe3", + "in_reply_to_status_id": null, + "id": 132341363130908670, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 50, + 62 + ], + "text": "fridaynight" + } + ], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/dL4Bkfe3", + "expanded_url": "http://ow.ly/7iFmK", + "display_url": "ow.ly/7iFmK" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.022797, + -27.469883 + ] + }, + "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341363130908672", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1101950392/BRG001_Brew_twitter_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 177900488, + "profile_text_color": "333333", + "followers_count": 462, + "profile_sidebar_border_color": "C0DEED", + "id_str": "177900488", + "profile_background_color": "C0DEED", + "listed_count": 16, + "utc_offset": 36000, + "statuses_count": 506, + "description": "Brew is Brisbane's newest Laneway cafe. Located in Burnett Lane we are open from 7am weekdays til late & 8am sat. Come in 4 a brew with a swirl of CBD laneway!", + "friends_count": 98, + "location": "iPhone: -27.459490,153.003998", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1101950392/BRG001_Brew_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/134716037/BRG001_Brew_twitter.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/134716037/BRG001_Brew_twitter.jpg", + "name": "Brett Roland", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "brewgroup", + "notifications": null, + "url": "http://www.brewgroup.com.au", + "created_at": "Fri Aug 13 10:19:49 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.469883, + 153.022797 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:20:14 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0362da", + "_rev": "1-3694c2ac227f676db6164fa98922d129", + "oldid": "4eb383923de67c5117000060", + "contributors": null, + "truncated": false, + "text": "Thats pretty cool. http://t.co/Tq0wPNnb", + "in_reply_to_status_id": null, + "id": 132341386094710780, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYryhtCEAINA0d.jpg", + "expanded_url": "http://twitter.com/justincampbell9/status/132341386094710784/photo/1", + "display_url": "pic.twitter.com/Tq0wPNnb", + "url": "http://t.co/Tq0wPNnb", + "sizes": { + "large": { + "h": 1024, + "w": 765, + "resize": "fit" + }, + "small": { + "h": 455, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 803, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132341386094710786", + "indices": [ + 19, + 39 + ], + "type": "photo", + "id": 132341386094710780, + "media_url": "http://p.twimg.com/AdYryhtCEAINA0d.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.05718052, + -33.8529213 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341386094710784", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1469947414/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 290847889, + "profile_text_color": "333333", + "followers_count": 16, + "profile_sidebar_border_color": "C0DEED", + "id_str": "290847889", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 296, + "description": null, + "friends_count": 106, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1469947414/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "justin campbell", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "justincampbell9", + "notifications": null, + "url": null, + "created_at": "Sun May 01 01:42:53 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8529213, + 151.05718052 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:20:20 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e037135", + "_rev": "1-7ec92075f865605e4024dd2db335346f", + "oldid": "4eb383923de67c5117000061", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Today goes in the \"never to be spoken about again basket\"\n#wheresthegoose", + "created_at": "Fri Nov 04 06:20:21 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0710169, + -27.55672854 + ] + }, + "id": 132341391769616380, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 58, + 73 + ], + "text": "wheresthegoose" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341391769616384", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.55672854, + 153.0710169 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621024528/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 31552012, + "profile_text_color": "3D1957", + "followers_count": 13, + "profile_sidebar_border_color": "65B0DA", + "id_str": "31552012", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 47, + "description": "", + "friends_count": 39, + "location": "Brisbane", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621024528/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "matt clark", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "mattclark10", + "notifications": null, + "url": null, + "created_at": "Wed Apr 15 22:59:52 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0379f9", + "_rev": "1-e476e9638210afbca407919a2d7a3136", + "oldid": "4eb383993de67c5117000062", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker Sweetie it ain't your fault.", + "created_at": "Fri Nov 04 06:20:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340852969320449", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132341421251362820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340852969320450, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132341421251362816", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20031, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e038190", + "_rev": "1-30f6ab6661d1c995d81cb5e698119037", + "oldid": "4eb3839c3de67c5117000063", + "contributors": null, + "truncated": false, + "text": "Strategy development @Geoplexing http://t.co/WX4XOF2L", + "in_reply_to_status_id": null, + "id": 132341430684352510, + "entities": { + "user_mentions": [ + { + "indices": [ + 21, + 32 + ], + "id": 297240605, + "id_str": "297240605", + "screen_name": "Geoplexing", + "name": "Geoplex" + } + ], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYr1H1CAAALUaQ.jpg", + "expanded_url": "http://twitter.com/abChilled/status/132341430684352512/photo/1", + "display_url": "pic.twitter.com/WX4XOF2L", + "url": "http://t.co/WX4XOF2L", + "sizes": { + "large": { + "h": 765, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 254, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 448, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132341430688546816", + "indices": [ + 33, + 53 + ], + "type": "photo", + "id": 132341430688546820, + "media_url": "http://p.twimg.com/AdYr1H1CAAALUaQ.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 143.98531025, + -38.54767285 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341430684352512", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1214079199/24c416c_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 237474832, + "profile_text_color": "663B12", + "followers_count": 40, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "237474832", + "profile_background_color": "C6E2EE", + "listed_count": 2, + "utc_offset": -36000, + "statuses_count": 225, + "description": "...on the path to a low profile", + "friends_count": 85, + "location": "Melbourne", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a2.twimg.com/profile_images/1214079199/24c416c_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/191985346/IMG_0151.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/191985346/IMG_0151.jpg", + "name": "Anthony", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "abChilled", + "notifications": null, + "url": "http://www.geoplex.com.au", + "created_at": "Wed Jan 12 22:55:36 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.54767285, + 143.98531025 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:20:31 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e038600", + "_rev": "1-7b114dba3dd5b96020cf0931974cd627", + "oldid": "4eb383a03de67c5117000064", + "favorited": false, + "in_reply_to_user_id": 14566904, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@highly_revolved I think it's an example of GOOD parenting, if nothin else.", + "created_at": "Fri Nov 04 06:20:34 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341207585128448", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96995482, + -37.80742187 + ] + }, + "id": 132341447432208380, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 14566904, + "id_str": "14566904", + "screen_name": "highly_revolved", + "name": "Michael Ballantine" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341207585128450, + "in_reply_to_screen_name": "highly_revolved", + "id_str": "132341447432208384", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80742187, + 144.96995482 + ] + }, + "in_reply_to_user_id_str": "14566904", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "profile_sidebar_fill_color": "efefef", + "id": 15393010, + "profile_text_color": "333333", + "followers_count": 343, + "profile_sidebar_border_color": "eeeeee", + "id_str": "15393010", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 5422, + "description": "Zinc Saucier", + "friends_count": 342, + "location": "Coburg, VIC, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Vince Lumberking", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "nopersonality", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=1246058646", + "created_at": "Fri Jul 11 16:00:43 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0387b2", + "_rev": "1-6adbe964442446caabbfceefaef22110", + "oldid": "4eb383a63de67c5117000065", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#FollowFriday these amazing #katycats: @joshdaveta @Kittypurrry2 @Becca_KatyCat @MiaaaTweets @katysleftboob @lee_cook @rach_jahla <3 <3", + "created_at": "Fri Nov 04 06:20:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97348958, + -37.81895533 + ] + }, + "id": 132341475865403400, + "entities": { + "user_mentions": [ + { + "indices": [ + 39, + 50 + ], + "id": 23920889, + "id_str": "23920889", + "screen_name": "joshdaveta", + "name": "Josh R H Daveta" + }, + { + "indices": [ + 51, + 64 + ], + "id": 197343363, + "id_str": "197343363", + "screen_name": "Kittypurrry2", + "name": "LA & SB DREAMS ♥" + }, + { + "indices": [ + 65, + 79 + ], + "id": 123583988, + "id_str": "123583988", + "screen_name": "Becca_KatyCat", + "name": "Becca Riley" + }, + { + "indices": [ + 80, + 92 + ], + "id": 244724486, + "id_str": "244724486", + "screen_name": "MiaaaTweets", + "name": "Miss Mia Moretti ✔" + }, + { + "indices": [ + 93, + 107 + ], + "id": 30191257, + "id_str": "30191257", + "screen_name": "katysleftboob", + "name": "karys beth hudson." + }, + { + "indices": [ + 108, + 117 + ], + "id": 26323139, + "id_str": "26323139", + "screen_name": "lee_cook", + "name": "Lee Cook" + }, + { + "indices": [ + 118, + 129 + ], + "id": 39943895, + "id_str": "39943895", + "screen_name": "rach_jahla", + "name": "rachel claxton" + } + ], + "hashtags": [ + { + "indices": [ + 0, + 13 + ], + "text": "FollowFriday" + }, + { + "indices": [ + 28, + 37 + ], + "text": "katycats" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341475865403392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81895533, + 144.97348958 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1296, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26033, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e038e15", + "_rev": "1-1064423bad32cc6cb1b2c2c403023219", + "oldid": "4eb383af3de67c5117000066", + "favorited": false, + "in_reply_to_user_id": 15900942, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MalPels that sounds amazing. I'm addicted to jalapeños.", + "created_at": "Fri Nov 04 06:20:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132284553682366464", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.16182976, + -38.1636 + ] + }, + "id": 132341511546343420, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 15900942, + "id_str": "15900942", + "screen_name": "MalPels", + "name": "Mallory Pels" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132284553682366460, + "in_reply_to_screen_name": "MalPels", + "id_str": "132341511546343424", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.1636, + 145.16182976 + ] + }, + "in_reply_to_user_id_str": "15900942", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1438617320/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22445019, + "profile_text_color": "231f20", + "followers_count": 140, + "profile_sidebar_border_color": "231f20", + "id_str": "22445019", + "profile_background_color": "ffffff", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 2051, + "description": "Aspiring interior designer & food addict.", + "friends_count": 156, + "location": "melbourne, australia", + "profile_link_color": "646987", + "profile_image_url": "http://a2.twimg.com/profile_images/1438617320/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/202059947/241-CharcoalDamask.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/202059947/241-CharcoalDamask.jpg", + "name": "Jess Morris", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "jesm0z", + "notifications": null, + "url": "http://jesm0z.tumblr.com", + "created_at": "Mon Mar 02 03:25:14 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e039ca6", + "_rev": "1-ebcee6a962b34e38102e9078ec714e47", + "oldid": "4eb383b13de67c5117000067", + "favorited": false, + "in_reply_to_user_id": 116099554, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ChefBoyiTweet \n\nHey buddy boy. You better follow me or I'll take your chef knife and cut your boyhood off. Follow back", + "created_at": "Fri Nov 04 06:20:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132341519502950400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 116099554, + "id_str": "116099554", + "screen_name": "ChefBoyiTweet", + "name": "Buddy☜☆☞ℒℴѵℯ ✪" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "ChefBoyiTweet", + "id_str": "132341519502950400", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": "116099554", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 912, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9568, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1708, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03a236", + "_rev": "1-58f08c5ca0d6f73ef12806f6af697f2e", + "oldid": "4eb383b43de67c5117000068", + "contributors": null, + "truncated": false, + "text": "Glorious afternoon in #Melbourne today #suxtobeme http://t.co/N51Lv0in", + "in_reply_to_status_id": null, + "id": 132341529988710400, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYr65xCQAAW6S8.jpg", + "expanded_url": "http://twitter.com/omowizard/status/132341529988710400/photo/1", + "display_url": "pic.twitter.com/N51Lv0in", + "url": "http://t.co/N51Lv0in", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132341529992904704", + "indices": [ + 51, + 71 + ], + "type": "photo", + "id": 132341529992904700, + "media_url": "http://p.twimg.com/AdYr65xCQAAW6S8.jpg" + } + ], + "hashtags": [ + { + "indices": [ + 22, + 32 + ], + "text": "Melbourne" + }, + { + "indices": [ + 40, + 50 + ], + "text": "suxtobeme" + } + ], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.94599799, + -37.82446618 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341529988710400", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1353010054/HeatherTorn_normal.jpg", + "profile_sidebar_fill_color": "d8ecfc", + "id": 16024308, + "profile_text_color": "080808", + "followers_count": 1030, + "profile_sidebar_border_color": "95a2f0", + "id_str": "16024308", + "profile_background_color": "badfcd", + "listed_count": 95, + "utc_offset": 36000, + "statuses_count": 6359, + "description": "MD; Director of Clinical Modelling@Ocean Informatics; Editor@openEHR Clinical Knowledge Manager; Rixatrix", + "friends_count": 420, + "location": "Melbourne, Australia", + "profile_link_color": "ff4d00", + "profile_image_url": "http://a3.twimg.com/profile_images/1353010054/HeatherTorn_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/25705587/defocused-red-lights-background2.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/25705587/defocused-red-lights-background2.jpg", + "name": "Heather Leslie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 17, + "screen_name": "omowizard", + "notifications": null, + "url": "http://omowizard.wordpress.com/", + "created_at": "Thu Aug 28 07:16:21 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82446618, + 144.94599799 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:20:54 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e03ac64", + "_rev": "1-307d1969b47af9e0dca0474981af3d31", + "oldid": "4eb383b43de67c5117000069", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 2.7 kts NNE. Barometer 1012.0 mb, Rising slowly. Temperature 24.0 °C. Rain today 0.0 mm. Humidity 42%", + "created_at": "Fri Nov 04 06:20:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.76305556, + -32.74527778 + ] + }, + "id": 132341534040403970, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341534040403970", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.74527778, + 151.76305556 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1559106823/PFTechlogo_avatar_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 379712969, + "profile_text_color": "333333", + "followers_count": 1, + "profile_sidebar_border_color": "C0DEED", + "id_str": "379712969", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2507, + "description": "Local weather from PF Technologies - Providing quality, affordable IT support in the Hunter Region and beyond ", + "friends_count": 4, + "location": "Raymond Terrace, NSW Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1559106823/PFTechlogo_avatar_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "PF Technologies", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "PF_Technologies", + "notifications": null, + "url": "http://www.pftech.com.au", + "created_at": "Sun Sep 25 12:42:32 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03ad69", + "_rev": "1-27278029e34afd5b87ecfa84a4f37acd", + "oldid": "4eb383bd3de67c511700006a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "All you can eat pizza <3", + "created_at": "Fri Nov 04 06:21:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20639102, + -33.87615621 + ] + }, + "id": 132341569289338880, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341569289338880", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87615621, + 151.20639102 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1606151878/ltmmpzawbq1_normal.png", + "profile_sidebar_fill_color": "92c2fc", + "id": 24837956, + "profile_text_color": "000000", + "followers_count": 387, + "profile_sidebar_border_color": "ffffff", + "id_str": "24837956", + "profile_background_color": "c2c0c2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 29682, + "description": "Nineteen ||♥ Top Gear, Fleetwood Mac, Finn Brothers.|| I complain a lot, I swear constantly and my mind lives in the gutter.", + "friends_count": 82, + "location": "Sydney, Australia", + "profile_link_color": "9100d9", + "profile_image_url": "http://a3.twimg.com/profile_images/1606151878/ltmmpzawbq1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/116691353/michael_evers.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/116691353/michael_evers.jpg", + "name": "Joanna", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 28, + "screen_name": "goldddustwoman", + "notifications": null, + "url": "http://goldddustwoman.tumblr.com", + "created_at": "Tue Mar 17 04:16:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03ade9", + "_rev": "1-9b343c7991f4c44ae0bcd789fa69b5ca", + "oldid": "4eb383bf3de67c511700006b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "The battle of the awesome accents... Scott Doug Cameron vs Irish @qantasairways Alan Joyce. Love it!", + "created_at": "Fri Nov 04 06:21:05 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.15351243, + -35.2302095 + ] + }, + "id": 132341578403545090, + "entities": { + "user_mentions": [ + { + "indices": [ + 65, + 79 + ], + "id": 218730857, + "id_str": "218730857", + "screen_name": "QantasAirways", + "name": "Qantas Airways" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341578403545088", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.2302095, + 149.15351243 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/86589306/for_twitter_normal.jpg", + "profile_sidebar_fill_color": "A0C5C7", + "id": 16019070, + "profile_text_color": "333333", + "followers_count": 726, + "profile_sidebar_border_color": "86A4A6", + "id_str": "16019070", + "profile_background_color": "709397", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 756, + "description": "Rural Reporter for ABC @666Canberra", + "friends_count": 1240, + "location": "Capital Country", + "profile_link_color": "FF3300", + "profile_image_url": "http://a0.twimg.com/profile_images/86589306/for_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme6/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme6/bg.gif", + "name": "Julia Holman", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "JulesHolman", + "notifications": null, + "url": "http://www.abc.net.au/rural", + "created_at": "Wed Aug 27 23:03:45 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03bdba", + "_rev": "1-97e9a8bfa2a30e70fea03aff6bb08397", + "oldid": "4eb383c13de67c511700006c", + "favorited": false, + "in_reply_to_user_id": 17703084, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@cammanderson you should come by on your way home :P", + "created_at": "Fri Nov 04 06:21:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132334438548910080", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98467855, + -37.79761065 + ] + }, + "id": 132341587484225540, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 17703084, + "id_str": "17703084", + "screen_name": "cammanderson", + "name": "Cam Manderson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132334438548910080, + "in_reply_to_screen_name": "cammanderson", + "id_str": "132341587484225536", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79761065, + 144.98467855 + ] + }, + "in_reply_to_user_id_str": "17703084", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1398531231/sam_normal.jpg", + "profile_sidebar_fill_color": "fcffc7", + "id": 13886322, + "profile_text_color": "000000", + "followers_count": 329, + "profile_sidebar_border_color": "2f406f", + "id_str": "13886322", + "profile_background_color": "1E2F8A", + "listed_count": 9, + "utc_offset": 36000, + "statuses_count": 9247, + "description": "Social media freak. Programmer of all things web, PHP & awesome @ @Flint_Tweets. @Kiva lender. Music lover. 25. Recently engaged. Melbournite. Foodie. Rambler.", + "friends_count": 273, + "location": "Melbourne, Victoria", + "profile_link_color": "179B2B", + "profile_image_url": "http://a0.twimg.com/profile_images/1398531231/sam_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/254826184/sdj.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/254826184/sdj.jpg", + "name": "Sammy (Sam) Jarrett", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 197, + "screen_name": "sammyjarrett", + "notifications": null, + "url": "http://iams.am", + "created_at": "Sun Feb 24 01:43:30 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03bf58", + "_rev": "1-19d2acb4903282d3a7939a30c96ed2d1", + "oldid": "4eb383c63de67c511700006d", + "favorited": false, + "in_reply_to_user_id": 199262602, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@joshmoule Just saw Andy Fairful on Nine News. Caught on the bridge. A famous Kobbie! @kobweb @tbskisydney @alexhiltondeane @PeteWhitto", + "created_at": "Fri Nov 04 06:21:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132307700762681345", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.24037492, + -33.8327623 + ] + }, + "id": 132341607335854080, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 199262602, + "id_str": "199262602", + "screen_name": "joshmoule", + "name": "Josh Moule" + }, + { + "indices": [ + 86, + 93 + ], + "id": 24653158, + "id_str": "24653158", + "screen_name": "kobweb", + "name": "KOB's Rugby" + }, + { + "indices": [ + 94, + 106 + ], + "id": 250117527, + "id_str": "250117527", + "screen_name": "tbskisydney", + "name": "Toby B" + }, + { + "indices": [ + 107, + 123 + ], + "id": 238100425, + "id_str": "238100425", + "screen_name": "alexhiltondeane", + "name": "Alex Deane" + }, + { + "indices": [ + 124, + 135 + ], + "id": 268676071, + "id_str": "268676071", + "screen_name": "PeteWhitto", + "name": "Peter Whittington" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132307700762681340, + "in_reply_to_screen_name": "joshmoule", + "id_str": "132341607335854080", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8327623, + 151.24037492 + ] + }, + "in_reply_to_user_id_str": "199262602", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1169772986/49307_585300084_2162554_q_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 216518265, + "profile_text_color": "333333", + "followers_count": 13, + "profile_sidebar_border_color": "eeeeee", + "id_str": "216518265", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 3, + "description": "", + "friends_count": 52, + "location": "Sydney", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1169772986/49307_585300084_2162554_q_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Tom McFadyen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Fadge_84", + "notifications": null, + "url": null, + "created_at": "Tue Nov 16 23:12:51 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03c648", + "_rev": "1-91742bb463e90967243e45d416fd9f13", + "oldid": "4eb383c73de67c511700006e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@maddidun: May the force be with you, nan” word on the streets iz your nan was straight gangsta! #YaHeardd #HangingWitTupacAndBiggie RIP", + "created_at": "Fri Nov 04 06:21:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.17106592, + -33.86227839 + ] + }, + "id": 132341614692663300, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 10 + ], + "id": 41308500, + "id_str": "41308500", + "screen_name": "maddidun", + "name": "Madeleine Dun" + } + ], + "hashtags": [ + { + "indices": [ + 98, + 107 + ], + "text": "YaHeardd" + }, + { + "indices": [ + 108, + 133 + ], + "text": "HangingWitTupacAndBiggie" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341614692663297", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86227839, + 151.17106592 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608400087/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 289415696, + "profile_text_color": "333333", + "followers_count": 148, + "profile_sidebar_border_color": "C0DEED", + "id_str": "289415696", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 893, + "description": "Follow your dreams no matter what people say. One life. Make it happen.", + "friends_count": 167, + "location": "Rozelle Sydney NSW Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608400087/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Edwin Asotasi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "EddyDAYONE", + "notifications": null, + "url": "http://www.rubylotel.com.au", + "created_at": "Thu Apr 28 16:19:30 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03cd93", + "_rev": "1-f30c207bd2742545f2e71f508460c9f9", + "oldid": "4eb383cd3de67c511700006f", + "favorited": false, + "in_reply_to_user_id": 27862874, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@phrantakle just looked up the bible verse he has on his desktop- job 31:1. I'm fucked bro", + "created_at": "Fri Nov 04 06:21:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337359407685633", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20039254, + -33.88420527 + ] + }, + "id": 132341637673254910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 27862874, + "id_str": "27862874", + "screen_name": "phrantakle", + "name": "Peter" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337359407685630, + "in_reply_to_screen_name": "phrantakle", + "id_str": "132341637673254912", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88420527, + 151.20039254 + ] + }, + "in_reply_to_user_id_str": "27862874", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 112130654, + "profile_text_color": "333333", + "followers_count": 127, + "profile_sidebar_border_color": "C0DEED", + "id_str": "112130654", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3672, + "description": "", + "friends_count": 176, + "location": "SYDNEY AUSTRALIA", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "name": "Lizzy P", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 72, + "screen_name": "madeofcake", + "notifications": null, + "url": null, + "created_at": "Sun Feb 07 10:25:15 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03d7db", + "_rev": "1-c842991d089a3c743f0a541d947d4ef5", + "oldid": "4eb383cd3de67c5117000070", + "contributors": null, + "truncated": false, + "text": "Back in Sydney (@ T2 Multi-User Domestic (Sydney Airport - SYD)) http://t.co/aakp2Lso", + "in_reply_to_status_id": null, + "id": 132341637270614020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 65, + 85 + ], + "url": "http://t.co/aakp2Lso", + "expanded_url": "http://4sq.com/sZTxMZ", + "display_url": "4sq.com/sZTxMZ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1788702, + -33.93460137 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341637270614016", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/92048187/SXSWprofilePIC_normal.jpg", + "profile_sidebar_fill_color": "e0ff92", + "id": 8119972, + "profile_text_color": "000000", + "followers_count": 1993, + "profile_sidebar_border_color": "87bc44", + "id_str": "8119972", + "profile_background_color": "9ae4e8", + "listed_count": 167, + "utc_offset": -28800, + "statuses_count": 7623, + "description": "Social/Mobile/Web BizDev, Enterprise Web 2.0 and Search Architect, Community Manager, Entrepreneur, Kitesurfer. Tweets are my own opinions not my employer's.", + "friends_count": 1923, + "location": "San Diego", + "profile_link_color": "0000ff", + "profile_image_url": "http://a1.twimg.com/profile_images/92048187/SXSWprofilePIC_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/205667004/raley.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/205667004/raley.jpg", + "name": "Dan Larsen", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 523, + "screen_name": "danlarsen", + "notifications": null, + "url": "http://gplus.to/danlarsen", + "created_at": "Sat Aug 11 06:50:00 +0000 2007", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.93460137, + 151.1788702 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:21:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e03e0f3", + "_rev": "1-d8551385fc8ce50732eb1d7ee550217e", + "oldid": "4eb383d23de67c5117000071", + "contributors": null, + "truncated": false, + "text": "I'm at The Edinburgh Hotel (High Street, Mitcham) http://t.co/bpUI6MV0", + "in_reply_to_status_id": null, + "id": 132341660624498690, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 50, + 70 + ], + "url": "http://t.co/bpUI6MV0", + "expanded_url": "http://4sq.com/sSvGWA", + "display_url": "4sq.com/sSvGWA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.622713, + -34.977822 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341660624498689", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1270634802/D_M10057_normal.jpg", + "profile_sidebar_fill_color": "171106", + "id": 265089018, + "profile_text_color": "473623", + "followers_count": 368, + "profile_sidebar_border_color": "bcb302", + "id_str": "265089018", + "profile_background_color": "0f0a02", + "listed_count": 2, + "utc_offset": 34200, + "statuses_count": 1183, + "description": "Pharmacist, MBA (Executive) Candidate @ Australian Graduate School of Management, discovering fatherhood, influential about #bacon on #klout", + "friends_count": 924, + "location": "Adelaide, Australia", + "profile_link_color": "8a7302", + "profile_image_url": "http://a0.twimg.com/profile_images/1270634802/D_M10057_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/217176757/x6d0d29090b22f529e90f4aa7ead8da0.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/217176757/x6d0d29090b22f529e90f4aa7ead8da0.jpg", + "name": "David Ng", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "_David_Ng", + "notifications": null, + "url": "http://about.me/David_Ng", + "created_at": "Sun Mar 13 00:42:25 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.977822, + 138.622713 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:21:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e03e142", + "_rev": "1-02313ddda9dcd80fda1818f963b2f007", + "oldid": "4eb383d53de67c5117000072", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.tweetings.net/\" rel=\"nofollow\">Tweetings for iPhone</a>", + "text": "#FF @Amanda_haines @Sneeke @Drakezilla @Ambi_Purr @SkylineProd @vincevega_ @MindOver_Matter @ljsmith71 @ljkrooker @MatikDJ @JonReichardt", + "created_at": "Fri Nov 04 06:21:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.093214, + -33.809496 + ] + }, + "id": 132341670883766270, + "entities": { + "user_mentions": [ + { + "indices": [ + 4, + 18 + ], + "id": 66646829, + "id_str": "66646829", + "screen_name": "Amanda_haines", + "name": "Amanda Haines" + }, + { + "indices": [ + 19, + 26 + ], + "id": 25029194, + "id_str": "25029194", + "screen_name": "Sneeke", + "name": "James Bullock" + }, + { + "indices": [ + 27, + 38 + ], + "id": 29980964, + "id_str": "29980964", + "screen_name": "Drakezilla", + "name": "Drakezilla" + }, + { + "indices": [ + 50, + 62 + ], + "id": 30204798, + "id_str": "30204798", + "screen_name": "SkylineProd", + "name": "Skyline Productions" + }, + { + "indices": [ + 63, + 74 + ], + "id": 143356162, + "id_str": "143356162", + "screen_name": "vincevega_", + "name": "Vince Vega" + }, + { + "indices": [ + 75, + 91 + ], + "id": 47302812, + "id_str": "47302812", + "screen_name": "MindOver_Matter", + "name": "Mind Over Matter" + }, + { + "indices": [ + 92, + 102 + ], + "id": 142078560, + "id_str": "142078560", + "screen_name": "ljsmith71", + "name": "Le'John Smith" + }, + { + "indices": [ + 103, + 113 + ], + "id": 19521924, + "id_str": "19521924", + "screen_name": "ljkrooker", + "name": "LJ Krooker" + }, + { + "indices": [ + 114, + 122 + ], + "id": 65233166, + "id_str": "65233166", + "screen_name": "MatikDJ", + "name": "Steve Mowat" + }, + { + "indices": [ + 123, + 136 + ], + "id": 297259501, + "id_str": "297259501", + "screen_name": "JonReichardt", + "name": "Jon Reichardt" + } + ], + "hashtags": [ + { + "indices": [ + 0, + 3 + ], + "text": "FF" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341670883766272", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.809496, + 151.093214 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1491177070/262592_10150279741108614_8452618613_7453898_1187365_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 30205761, + "profile_text_color": "666666", + "followers_count": 505, + "profile_sidebar_border_color": "181A1E", + "id_str": "30205761", + "profile_background_color": "1A1B1F", + "listed_count": 19, + "utc_offset": 36000, + "statuses_count": 8725, + "description": "Son, brother & a good mate. I make videos. Please follow @SkylineProd. If you follow me I will be grateful, if you speak to me I will most likely follow back :)", + "friends_count": 1382, + "location": "West Ryde, New South Wales AU", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1491177070/262592_10150279741108614_8452618613_7453898_1187365_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/309878506/267992_10150238469561781_570406780_7887625_4718167_n.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/309878506/267992_10150238469561781_570406780_7887625_4718167_n.jpg", + "name": "Dennis Vollmer", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1032, + "screen_name": "DennisVollmer", + "notifications": null, + "url": "http://www.facebook.com/dennis.vollmer", + "created_at": "Fri Apr 10 12:22:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03e211", + "_rev": "1-f18d65b8dd7c401103fbc531ea8b9ea5", + "oldid": "4eb383d63de67c5117000073", + "favorited": false, + "in_reply_to_user_id": 80946641, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@legalconsult and I in old media today - p49 of the AFR #virtuallawoffice", + "created_at": "Fri Nov 04 06:21:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.00957109, + -33.81358027 + ] + }, + "id": 132341675044515840, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 80946641, + "id_str": "80946641", + "screen_name": "legalconsult", + "name": "legal.consult" + } + ], + "hashtags": [ + { + "indices": [ + 56, + 73 + ], + "text": "virtuallawoffice" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "legalconsult", + "id_str": "132341675044515841", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.81358027, + 151.00957109 + ] + }, + "in_reply_to_user_id_str": "80946641", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14839013, + "profile_text_color": "333333", + "followers_count": 713, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14839013", + "profile_background_color": "C0DEED", + "listed_count": 36, + "utc_offset": 36000, + "statuses_count": 1245, + "description": "Director - Community Builders Australia & legal.consult; President NSW Society for Computers & the Law", + "friends_count": 465, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andrew Perry", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "andrewperry", + "notifications": null, + "url": "http://www.andrewperry.id.au", + "created_at": "Mon May 19 23:23:55 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03efd3", + "_rev": "1-ae1d2e8d7ff32e51553684402041bd1f", + "oldid": "4eb383de3de67c5117000074", + "contributors": null, + "truncated": false, + "text": "Individual @ Hung out to dry... http://t.co/zHEhYtI8", + "in_reply_to_status_id": null, + "id": 132341711602065400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 33, + 53 + ], + "url": "http://t.co/zHEhYtI8", + "expanded_url": "http://instagr.am/p/SqNMt/", + "display_url": "instagr.am/p/SqNMt/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0099, + -37.82259 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341711602065408", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/602537467/2694196400_5ee35bcc49_b_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 14573272, + "profile_text_color": "c41313", + "followers_count": 4854, + "profile_sidebar_border_color": "3d3f42", + "id_str": "14573272", + "profile_background_color": "000000", + "listed_count": 274, + "utc_offset": 36000, + "statuses_count": 23946, + "description": "Social Media Bloke | Bass Player | Camera User | Coffee Drinker | Dreamer [all views here are my own, strangely]", + "friends_count": 3158, + "location": "Melbourne, Australia", + "profile_link_color": "000000", + "profile_image_url": "http://a0.twimg.com/profile_images/602537467/2694196400_5ee35bcc49_b_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/249903624/DSC00690-2.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/249903624/DSC00690-2.jpg", + "name": "Simon Pollock", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "gtvone", + "notifications": null, + "url": "http://www.gtvone.com", + "created_at": "Mon Apr 28 18:42:57 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82259, + 145.0099 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:21:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e03f77c", + "_rev": "1-dfd36c0191efd943822b47e289afbce4", + "oldid": "4eb383e03de67c5117000075", + "favorited": false, + "in_reply_to_user_id": 127793802, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mystudiouslife Seeing family is interesting. Unless they are boring. In which case they are not interesting.", + "created_at": "Fri Nov 04 06:21:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341357627973632", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.74994877, + -37.54870073 + ] + }, + "id": 132341715636985860, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 127793802, + "id_str": "127793802", + "screen_name": "mystudiouslife", + "name": "Studious Jenn" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341357627973630, + "in_reply_to_screen_name": "mystudiouslife", + "id_str": "132341715636985856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.54870073, + 149.74994877 + ] + }, + "in_reply_to_user_id_str": "127793802", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1586175378/IMG_5030_normal.jpg", + "profile_sidebar_fill_color": "997d93", + "id": 33350171, + "profile_text_color": "362720", + "followers_count": 55, + "profile_sidebar_border_color": "997d93", + "id_str": "33350171", + "profile_background_color": "997d93", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1339, + "description": "Housewife | cat mother | online MA student @ ANU | art history nerd | Olave Program Girl Guide | Pinterest addict", + "friends_count": 92, + "location": "Mallacoota, Australia", + "profile_link_color": "330db3", + "profile_image_url": "http://a3.twimg.com/profile_images/1586175378/IMG_5030_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/53499617/seamless-vintage-wallpaper-pattern-thumb1592949.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/53499617/seamless-vintage-wallpaper-pattern-thumb1592949.jpg", + "name": "MrsWinC", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "409mallaway", + "notifications": null, + "url": "http://409mallacootaway.tumblr.com", + "created_at": "Mon Apr 20 00:12:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e03fe77", + "_rev": "1-4bc3944147aa8ad5e8de0a5555478a03", + "oldid": "4eb383e03de67c5117000076", + "contributors": null, + "truncated": false, + "text": "Fri night 'Worlds' or this view with a beer in hand?? http://t.co/axLPWgib", + "in_reply_to_status_id": null, + "id": 132341714722631680, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYsFp9CMAAGp2k.jpg", + "expanded_url": "http://twitter.com/MSS_Updates/status/132341714722631680/photo/1", + "display_url": "pic.twitter.com/axLPWgib", + "url": "http://t.co/axLPWgib", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132341714726825984", + "indices": [ + 54, + 74 + ], + "type": "photo", + "id": 132341714726825980, + "media_url": "http://p.twimg.com/AdYsFp9CMAAGp2k.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.756237, + -32.950033 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Camera on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341714722631680", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/185800411/mss_normal.gif", + "profile_sidebar_fill_color": "DDEEF6", + "id": 35399457, + "profile_text_color": "333333", + "followers_count": 86, + "profile_sidebar_border_color": "C0DEED", + "id_str": "35399457", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 357, + "description": "Coaches who inspire, challenge & develop. RETUL Bike Fitter's. 0418 260 462", + "friends_count": 80, + "location": "iPhone: -33.935970,151.165237", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/185800411/mss_normal.gif", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/191598107/Multisport-Twitter-bg-1.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/191598107/Multisport-Twitter-bg-1.jpg", + "name": "Aaron Lean", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "MSS_Updates", + "notifications": null, + "url": "http://www.multisportsolutions.com.au", + "created_at": "Sun Apr 26 04:11:54 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.950033, + 151.756237 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:21:38 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e040cdf", + "_rev": "1-0812fc7404f8fa79249f4c20cae2a13c", + "oldid": "4eb383e03de67c5117000077", + "favorited": false, + "in_reply_to_user_id": 18925120, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@KKeneally You were an awesome premier. It was terrible how you had to deal with those scandals. Also you're gorgeous!", + "created_at": "Fri Nov 04 06:21:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.97729105, + -33.80795343 + ] + }, + "id": 132341715704090620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 18925120, + "id_str": "18925120", + "screen_name": "KKeneally", + "name": "Kristina Keneally" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "KKeneally", + "id_str": "132341715704090624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.80795343, + 150.97729105 + ] + }, + "in_reply_to_user_id_str": "18925120", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1433452279/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 156092731, + "profile_text_color": "333333", + "followers_count": 7, + "profile_sidebar_border_color": "C0DEED", + "id_str": "156092731", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 23, + "description": "Writer. Broadcaster. Musician", + "friends_count": 33, + "location": "St Clair", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1433452279/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "andrewtsanadis", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "AndrewTsanadis", + "notifications": null, + "url": "http://www.wix.com/atsanadis/andrew-tsanadis", + "created_at": "Wed Jun 16 00:39:40 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e041b37", + "_rev": "1-9667c22974bc29e38a52a786bdd1966f", + "oldid": "4eb383e23de67c5117000078", + "favorited": false, + "in_reply_to_user_id": 145792957, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Ray1Griffin @mitch_carro I'm sure he will be more than obliging! Might see\nU racing with @TamworthCycle", + "created_at": "Fri Nov 04 06:21:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340863799013376", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.9103376, + -31.12196019 + ] + }, + "id": 132341725107720200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 145792957, + "id_str": "145792957", + "screen_name": "Ray1Griffin", + "name": "Ray Griffin" + }, + { + "indices": [ + 13, + 25 + ], + "id": 94756005, + "id_str": "94756005", + "screen_name": "mitch_carro", + "name": "Mitch Carrington" + }, + { + "indices": [ + 90, + 104 + ], + "id": 396295196, + "id_str": "396295196", + "screen_name": "TamworthCycle", + "name": "Tamworth Cycle Club" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340863799013380, + "in_reply_to_screen_name": "Ray1Griffin", + "id_str": "132341725107720193", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.12196019, + 150.9103376 + ] + }, + "in_reply_to_user_id_str": "145792957", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1222490425/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 179880463, + "profile_text_color": "333333", + "followers_count": 104, + "profile_sidebar_border_color": "C0DEED", + "id_str": "179880463", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 382, + "description": "Customer Support Services Manager @statewater. Love my life in Tamworth. Passionate for cycling and my community. All comments and opinions are my own.", + "friends_count": 343, + "location": "Tamworth, NSW Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1222490425/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Gavin inglis", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 61, + "screen_name": "Gavinglis", + "notifications": null, + "url": null, + "created_at": "Wed Aug 18 09:29:30 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e042a32", + "_rev": "1-43b95b5ac0d05f15f80456a8dfac73de", + "oldid": "4eb383f33de67c5117000079", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#FollowFriday @fitjordz who is flying all the way from AUS to NYC to see @katyperry with me =D #FF", + "created_at": "Fri Nov 04 06:21:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97348958, + -37.81895533 + ] + }, + "id": 132341796184391680, + "entities": { + "user_mentions": [ + { + "indices": [ + 14, + 23 + ], + "id": 201217184, + "id_str": "201217184", + "screen_name": "fitjordz", + "name": "Jordan Garcia" + }, + { + "indices": [ + 73, + 83 + ], + "id": 21447363, + "id_str": "21447363", + "screen_name": "katyperry", + "name": "Katy Perry" + } + ], + "hashtags": [ + { + "indices": [ + 0, + 13 + ], + "text": "FollowFriday" + }, + { + "indices": [ + 95, + 98 + ], + "text": "FF" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341796184391680", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81895533, + 144.97348958 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1296, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26034, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04357a", + "_rev": "1-3adac05d7019967dd9107f9a12d22652", + "oldid": "4eb383fd3de67c511700007a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "South Sudanese woman having a friendly chat with an Aboriginal cross-dresser, only on #Melbourne trains.", + "created_at": "Fri Nov 04 06:22:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99214756, + -37.78292064 + ] + }, + "id": 132341840685961220, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 86, + 96 + ], + "text": "Melbourne" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341840685961216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.78292064, + 144.99214756 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1551345455/image_normal.jpg", + "profile_sidebar_fill_color": "C2F3F7", + "id": 350592754, + "profile_text_color": "020400", + "followers_count": 173, + "profile_sidebar_border_color": "B4DAC3", + "id_str": "350592754", + "profile_background_color": "814040", + "listed_count": 6, + "utc_offset": -36000, + "statuses_count": 914, + "description": "The contrarian bicyclist in Melbourne, Australia.", + "friends_count": 355, + "location": "Melbourne", + "profile_link_color": "000A01", + "profile_image_url": "http://a2.twimg.com/profile_images/1551345455/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/309334921/xd48d13d10032bc9d7f63061e7717a39.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/309334921/xd48d13d10032bc9d7f63061e7717a39.png", + "name": "Etienne de Briquenel", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "BicycleAdagio", + "notifications": null, + "url": null, + "created_at": "Mon Aug 08 01:07:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e043c6b", + "_rev": "1-8de3d50bef7914c6f4c7adf9d8b21c8c", + "oldid": "4eb384013de67c511700007b", + "contributors": null, + "truncated": false, + "text": "Talking social media with the expert Tenille Bentley from @socialite_media (@ Kafferina) http://t.co/REBDp8yb", + "in_reply_to_status_id": null, + "id": 132341854946590720, + "entities": { + "user_mentions": [ + { + "indices": [ + 58, + 74 + ], + "id": 196063443, + "id_str": "196063443", + "screen_name": "Socialite_Media", + "name": "The Socialites Team" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 89, + 109 + ], + "url": "http://t.co/REBDp8yb", + "expanded_url": "http://4sq.com/sZq5Bp", + "display_url": "4sq.com/sZq5Bp" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.831232, + -31.947161 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341854946590720", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1514163761/CharlieGunningham-head_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 19747322, + "profile_text_color": "333333", + "followers_count": 1666, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "19747322", + "profile_background_color": "f4901e", + "listed_count": 27, + "utc_offset": 28800, + "statuses_count": 2072, + "description": "Manager, reiwa.com. CoFounder aussiehome.com + eGroup. WA is the best place to live in the world. Pass it on...", + "friends_count": 1488, + "location": "Perth, WA, Australia", + "profile_link_color": "b46900", + "profile_image_url": "http://a2.twimg.com/profile_images/1514163761/CharlieGunningham-head_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/202105261/twitter-bg.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/202105261/twitter-bg.jpg", + "name": "Charlie Gunningham", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "ChazGunningham", + "notifications": null, + "url": "http://www.reiwa.com", + "created_at": "Fri Jan 30 01:23:54 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.947161, + 115.831232 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:22:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e04473d", + "_rev": "1-3ad978563299d943bca8c7332bd1e9a6", + "oldid": "4eb384063de67c511700007c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "For all the latest on Thorpey's comeback tune into Fox Sports News. @patrick_stack has all the latest from Singapore", + "created_at": "Fri Nov 04 06:22:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.04687178, + -37.85760749 + ] + }, + "id": 132341878208217090, + "entities": { + "user_mentions": [ + { + "indices": [ + 68, + 82 + ], + "id": 319950844, + "id_str": "319950844", + "screen_name": "patrick_stack", + "name": "Patrick Stack" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341878208217088", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85760749, + 145.04687178 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1258302311/413601-fs-image-fs-news-julian-de-stoop_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 159789574, + "profile_text_color": "333333", + "followers_count": 2753, + "profile_sidebar_border_color": "C0DEED", + "id_str": "159789574", + "profile_background_color": "C0DEED", + "listed_count": 38, + "utc_offset": null, + "statuses_count": 1026, + "description": "AFL Reporter at Fox Sports News", + "friends_count": 780, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1258302311/413601-fs-image-fs-news-julian-de-stoop_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Julian de Stoop", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "JDESTOOP80", + "notifications": null, + "url": null, + "created_at": "Sat Jun 26 10:11:45 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0447e6", + "_rev": "1-b576ee26a85cfb09eb29e0c676917dc6", + "oldid": "4eb384063de67c511700007d", + "contributors": null, + "truncated": false, + "text": "whiskey tasting with Jim Beam! (@ The Works) [pic]: http://t.co/jicic3zW", + "in_reply_to_status_id": null, + "id": 132341879558766600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 52, + 72 + ], + "url": "http://t.co/jicic3zW", + "expanded_url": "http://4sq.com/rGvMDv", + "display_url": "4sq.com/rGvMDv" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.210068, + -33.847414 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341879558766592", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1554171030/twit1_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 24901157, + "profile_text_color": "3C3940", + "followers_count": 209, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "24901157", + "profile_background_color": "0099B9", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 2288, + "description": "one of many smug brits trying to make it as a sydneysider & not be killed by one australia's many deadly things. fan of sunshine, the ocean, cake & tennis", + "friends_count": 238, + "location": "Sydney", + "profile_link_color": "0099B9", + "profile_image_url": "http://a0.twimg.com/profile_images/1554171030/twit1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/189182879/palms.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/189182879/palms.jpg", + "name": "Joanna Golding", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "JoeyRaccoon", + "notifications": null, + "url": "http://joey-bloggs.blogspot.com/", + "created_at": "Tue Mar 17 15:49:01 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.847414, + 151.210068 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:22:17 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e044fae", + "_rev": "1-47f146a68dbcedba66eeea706ef39ae1", + "oldid": "4eb3840f3de67c511700007e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "That's the last time I put work before my health. And I don't care if next time I get sacked for going to the doctor's for a reason. #vent", + "created_at": "Fri Nov 04 06:22:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.97238135, + -33.77275183 + ] + }, + "id": 132341917076824060, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 133, + 138 + ], + "text": "vent" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341917076824064", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77275183, + 150.97238135 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/547104988/brendan_sevenhills_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 32764885, + "profile_text_color": "333333", + "followers_count": 29, + "profile_sidebar_border_color": "C0DEED", + "id_str": "32764885", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 264, + "description": "Database co-ordinator with a liking for singing, trivia and photography", + "friends_count": 97, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/547104988/brendan_sevenhills_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Brendan Richards", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 76, + "screen_name": "quizmaster85", + "notifications": null, + "url": null, + "created_at": "Sat Apr 18 03:35:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e045d79", + "_rev": "1-9ff228554a6a3e51f38bf5e60e31e7ba", + "oldid": "4eb384193de67c511700007f", + "contributors": null, + "truncated": false, + "text": "@bram_litha (@ Australian Institute of Music) http://t.co/wMciwBm9", + "in_reply_to_status_id": null, + "id": 132341956377456640, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 48633322, + "id_str": "48633322", + "screen_name": "bram_litha", + "name": "Johan Abraham Litha" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 46, + 66 + ], + "url": "http://t.co/wMciwBm9", + "expanded_url": "http://4sq.com/vmSxia", + "display_url": "4sq.com/vmSxia" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.209243, + -33.883841 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": "bram_litha", + "in_reply_to_user_id": 48633322, + "retweet_count": 0, + "id_str": "132341956377456640", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1139773648/190459037_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 172481906, + "profile_text_color": "333333", + "followers_count": 119, + "profile_sidebar_border_color": "C0DEED", + "id_str": "172481906", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1331, + "description": "Jazzy_flavour", + "friends_count": 220, + "location": "in here", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1139773648/190459037_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Semy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "samuel_th", + "notifications": null, + "url": "http://m.facebook.com/samuelteerahheryanto?refid=0", + "created_at": "Thu Jul 29 20:37:40 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.883841, + 151.209243 + ] + }, + "in_reply_to_user_id_str": "48633322", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:22:35 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0467df", + "_rev": "1-dd553de18987618cebbc1edf042b6c11", + "oldid": "4eb3841b3de67c5117000080", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "sad cats everywhere", + "created_at": "Fri Nov 04 06:22:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19834647, + -33.79876368 + ] + }, + "id": 132341966674464770, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341966674464768", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.79876368, + 151.19834647 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1538147936/Photo_673_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 59340311, + "profile_text_color": "333333", + "followers_count": 119, + "profile_sidebar_border_color": "C0DEED", + "id_str": "59340311", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 5571, + "description": "", + "friends_count": 32, + "location": "sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1538147936/Photo_673_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/145115773/tumblr_l63ivueRci1qb46d4o1_1280.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/145115773/tumblr_l63ivueRci1qb46d4o1_1280.jpg", + "name": "coast2coast", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "klure1", + "notifications": null, + "url": "http://yuppiecunt.tumblr.com", + "created_at": "Thu Jul 23 02:54:42 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e046bea", + "_rev": "1-c28c0f5e18190dfe7292c3ceac3ddfb2", + "oldid": "4eb3841d3de67c5117000081", + "contributors": null, + "truncated": false, + "text": "I'm at Physio Clinic http://t.co/Wqiyg698", + "in_reply_to_status_id": null, + "id": 132341969564352510, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 21, + 41 + ], + "url": "http://t.co/Wqiyg698", + "expanded_url": "http://4sq.com/utEfiD", + "display_url": "4sq.com/utEfiD" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.59548, + -34.906196 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341969564352512", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1221717914/picc_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 5426142, + "profile_text_color": "333333", + "followers_count": 735, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "5426142", + "profile_background_color": "ACDED6", + "listed_count": 58, + "utc_offset": 34200, + "statuses_count": 25205, + "description": "Tassie girl now in Adelaide. I think carbs rock. My wrist is unstable.", + "friends_count": 638, + "location": "Radelaide", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1221717914/picc_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme18/bg.gif", + "name": "Ashlee Jenkins", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "TripleB", + "notifications": null, + "url": "http://www.ashleebbb.tumblr.com", + "created_at": "Mon Apr 23 08:30:08 +0000 2007", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.906196, + 138.59548 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:22:38 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e047827", + "_rev": "1-14f8c8e81bef9bb8ce3d500831b1c7a8", + "oldid": "4eb3841d3de67c5117000082", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Something has triggered anxiety *insert self destructing thoughts*. FML. Not eating breakfast sends me wacko! Lol", + "created_at": "Fri Nov 04 06:22:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02340583, + -27.4671998 + ] + }, + "id": 132341974274539520, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341974274539520", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.4671998, + 153.02340583 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1591747067/image_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 25667075, + "profile_text_color": "333333", + "followers_count": 134, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "25667075", + "profile_background_color": "022330", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 745, + "description": "Advisor on the Qld water industry. Love music, camping and long walks on the beach. lol.Views are my own and im not really cross eyed. ", + "friends_count": 653, + "location": "Brisbane", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1591747067/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Aaron", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "Azza83", + "notifications": null, + "url": null, + "created_at": "Sat Mar 21 12:20:33 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e047dd2", + "_rev": "1-cdbd33efa8ff4bee344f24913260a550", + "oldid": "4eb384213de67c5117000083", + "contributors": null, + "truncated": false, + "text": "“@TroyHerfoss: Got my fav number 17 and got @joshcarlson86 repping the famous @WayneMaxwell47 number 47 http://t.co/WySLoSeC”get amongst em", + "in_reply_to_status_id": null, + "id": 132341988673589250, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 13 + ], + "id": 189305161, + "id_str": "189305161", + "screen_name": "TroyHerfoss", + "name": "Troy Herfoss" + }, + { + "indices": [ + 44, + 58 + ], + "id": 219032913, + "id_str": "219032913", + "screen_name": "joshcarlson86", + "name": "Joshua Carlson" + }, + { + "indices": [ + 78, + 93 + ], + "id": 159367110, + "id_str": "159367110", + "screen_name": "WayneMaxwell47", + "name": "Wayne Maxwell" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 104, + 124 + ], + "url": "http://t.co/WySLoSeC", + "expanded_url": "http://lockerz.com/s/153083982", + "display_url": "lockerz.com/s/153083982" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.86555201, + -33.98076579 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132341988673589248", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1207388085/FX_Cup_Kain_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 216537018, + "profile_text_color": "333333", + "followers_count": 53, + "profile_sidebar_border_color": "C0DEED", + "id_str": "216537018", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": -36000, + "statuses_count": 279, + "description": "keen on motorsports raced supersport and superbikes,making a bmx comeback second childhood", + "friends_count": 91, + "location": "Goulburn", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1207388085/FX_Cup_Kain_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "jasonkain62", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "jasonkain62", + "notifications": null, + "url": null, + "created_at": "Wed Nov 17 00:20:22 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.98076579, + 150.86555201 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:22:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e048238", + "_rev": "1-dff0f0ddae8e79ede24e5ef7232406df", + "oldid": "4eb384233de67c5117000084", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Ahh went to my old school'fete and saw everyone but like 17/40 remembered me :(", + "created_at": "Fri Nov 04 06:22:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.18348955, + -38.10665231 + ] + }, + "id": 132341998974799870, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132341998974799872", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.10665231, + 145.18348955 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620181739/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 226832288, + "profile_text_color": "3D1957", + "followers_count": 164, + "profile_sidebar_border_color": "65B0DA", + "id_str": "226832288", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 478, + "description": "Dream's will come true if u want to pursue them :) missing my besties over in LA come bak to aussie alli and cody :)", + "friends_count": 439, + "location": "Melbourne, Australia", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1620181739/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/207787008/i_will_never_say_never-1563.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/207787008/i_will_never_say_never-1563.jpg", + "name": "Kira Brittingham", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "kizza143", + "notifications": null, + "url": "http://www.facebook.com/kirabrittingham", + "created_at": "Wed Dec 15 05:39:02 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e048715", + "_rev": "1-cc318d5440bbba5f0b5188f82e7043f9", + "oldid": "4eb3842b3de67c5117000085", + "favorited": false, + "in_reply_to_user_id": 372277336, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Ingb00n yep! It was really good hey! But Nora wasn't in it))):", + "created_at": "Fri Nov 04 06:22:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132278299127844864", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.87012739, + -32.04593743 + ] + }, + "id": 132342030868295680, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 372277336, + "id_str": "372277336", + "screen_name": "Ingb00n", + "name": "Florence Chan " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132278299127844860, + "in_reply_to_screen_name": "Ingb00n", + "id_str": "132342030868295680", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04593743, + 115.87012739 + ] + }, + "in_reply_to_user_id_str": "372277336", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616962706/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 312546016, + "profile_text_color": "0a050a", + "followers_count": 237, + "profile_sidebar_border_color": "120612", + "id_str": "312546016", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 18074, + "description": "an optimistic person who never stopped loving her family, manchester united, Chicharito,HIMYM, her best mates, Tangled & ice cream☺.", + "friends_count": 329, + "location": "in the freezer", + "profile_link_color": "090a0a", + "profile_image_url": "http://a2.twimg.com/profile_images/1616962706/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "name": "❥C.Christine", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 94, + "screen_name": "chynietoto", + "notifications": null, + "url": null, + "created_at": "Tue Jun 07 09:00:06 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e048ba7", + "_rev": "1-5b919b8cc0eabc1a95b9a408b7c52398", + "oldid": "4eb384353de67c5117000086", + "contributors": null, + "truncated": false, + "text": "Paranormal Activity 3 (@ Village Cinemas) http://t.co/UHPSimoC", + "in_reply_to_status_id": null, + "id": 132342075931901950, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 42, + 62 + ], + "url": "http://t.co/UHPSimoC", + "expanded_url": "http://4sq.com/sILx1i", + "display_url": "4sq.com/sILx1i" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.166214, + -38.151193 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342075931901952", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610343897/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 177422262, + "profile_text_color": "333333", + "followers_count": 829, + "profile_sidebar_border_color": "eeeeee", + "id_str": "177422262", + "profile_background_color": "131516", + "listed_count": 13, + "utc_offset": -36000, + "statuses_count": 21824, + "description": "♥Collingwood♥JusticeCrew♥ChristinaParie♥ReeceMastin♥OneDirection♥DemiLovato♥", + "friends_count": 885, + "location": "melbourne, australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1610343897/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/200778957/twilk_background_4d4a375eb9dda.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/200778957/twilk_background_4d4a375eb9dda.jpg", + "name": "Amy Marshall", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 216, + "screen_name": "amymarshallpies", + "notifications": null, + "url": null, + "created_at": "Thu Aug 12 02:45:05 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.151193, + 145.166214 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:23:04 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e04954d", + "_rev": "1-b5d84c482c7afb0fa45b48182abaf370", + "oldid": "4eb3843a3de67c5117000087", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "<--------- sorisso de quem tem um iPad 2!", + "created_at": "Fri Nov 04 06:23:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.25344527, + -33.89289848 + ] + }, + "id": 132342095192137730, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342095192137729", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89289848, + 151.25344527 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1606011675/Captura_de_tela_2011-10-26__s_00.26.04_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 41828458, + "profile_text_color": "333333", + "followers_count": 650, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "41828458", + "profile_background_color": "022330", + "listed_count": 39, + "utc_offset": -10800, + "statuses_count": 14356, + "description": "Um frasista, polidor de moedas que afugenta pombos nas horas vagas.", + "friends_count": 416, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1606011675/Captura_de_tela_2011-10-26__s_00.26.04_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Richard Valença", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "richardvalenca", + "notifications": null, + "url": null, + "created_at": "Fri May 22 15:04:19 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brasilia", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04a527", + "_rev": "1-3c4a6b483891bbf271992fdb9893259a", + "oldid": "4eb3843c3de67c5117000088", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "这个周末很热,请大家注意身体!", + "created_at": "Fri Nov 04 06:23:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.16456104, + -33.93663578 + ] + }, + "id": 132342104964861950, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342104964861952", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93663578, + 151.16456104 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1370440767/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 149840292, + "profile_text_color": "3D1957", + "followers_count": 57, + "profile_sidebar_border_color": "65B0DA", + "id_str": "149840292", + "profile_background_color": "642D8B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 850, + "description": null, + "friends_count": 101, + "location": "lidcombe nsw Australia", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1370440767/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Baxter Wang", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "baxterwang", + "notifications": null, + "url": null, + "created_at": "Sun May 30 10:54:05 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04adc9", + "_rev": "1-466f2f2ea0dbd2784558f047774e3b38", + "oldid": "4eb3843e3de67c5117000089", + "favorited": false, + "in_reply_to_user_id": 140208068, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@a_wagener yeah.. That kind of scares me, actually", + "created_at": "Fri Nov 04 06:23:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341100018020352", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.14355073, + -35.27641923 + ] + }, + "id": 132342109670879230, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 140208068, + "id_str": "140208068", + "screen_name": "a_wagener", + "name": "Amanda Wagener" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341100018020350, + "in_reply_to_screen_name": "a_wagener", + "id_str": "132342109670879232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.27641923, + 149.14355073 + ] + }, + "in_reply_to_user_id_str": "140208068", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1098034449/Screen_shot_2010-08-08_at_12.09.39_PM_normal.png", + "profile_sidebar_fill_color": "252429", + "id": 34905808, + "profile_text_color": "666666", + "followers_count": 270, + "profile_sidebar_border_color": "181A1E", + "id_str": "34905808", + "profile_background_color": "1A1B1F", + "listed_count": 22, + "utc_offset": 36000, + "statuses_count": 5513, + "description": "I don't have time for this twitters thing. Ruby on Rails developer.", + "friends_count": 225, + "location": "Canberra, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1098034449/Screen_shot_2010-08-08_at_12.09.39_PM_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Jared Fraser", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 13, + "screen_name": "modsognir", + "notifications": null, + "url": "http://www.modsognir.com", + "created_at": "Fri Apr 24 11:51:01 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04b1eb", + "_rev": "1-145fc31b02cfe4292bc4ebbc21450f9a", + "oldid": "4eb3844a3de67c511700008a", + "contributors": null, + "truncated": false, + "text": "It doesn't matter if your black or white... :-) http://t.co/yJMxAtGO", + "in_reply_to_status_id": null, + "id": 132342160191258620, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYsfldCAAE63xV.jpg", + "expanded_url": "http://twitter.com/erichuranus/status/132342160191258626/photo/1", + "display_url": "pic.twitter.com/yJMxAtGO", + "url": "http://t.co/yJMxAtGO", + "sizes": { + "large": { + "h": 1024, + "w": 768, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132342160195452929", + "indices": [ + 48, + 68 + ], + "type": "photo", + "id": 132342160195452930, + "media_url": "http://p.twimg.com/AdYsfldCAAE63xV.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.78054362, + -32.04563993 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342160191258626", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1380366418/e_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 310214660, + "profile_text_color": "333333", + "followers_count": 30, + "profile_sidebar_border_color": "eeeeee", + "id_str": "310214660", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 461, + "description": "Country Coordinator(Mental Health First International - Philippines)\r\nEvent Organizer\r\nModel Handler\r\n", + "friends_count": 37, + "location": "Perth WA", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1380366418/e_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Erich Samonte", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "erichuranus", + "notifications": null, + "url": "http://www.facebook.com/erich.samonte", + "created_at": "Fri Jun 03 11:22:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hong Kong", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.04563993, + 115.78054362 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:23:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e04bc86", + "_rev": "1-dabd16c3022386ca9748d461feac6f07", + "oldid": "4eb384513de67c511700008b", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker ...Now let's not jump to conclusions.", + "created_at": "Fri Nov 04 06:23:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341738353336320", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132342191380111360, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341738353336320, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132342191380111360", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20032, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04c245", + "_rev": "1-3a48998cea035565b81f81105b3cac2b", + "oldid": "4eb384603de67c511700008c", + "contributors": null, + "truncated": false, + "text": "I'm at Russian Orthodox Church (31 robertson st, Centennial Park) http://t.co/M416QleW", + "in_reply_to_status_id": null, + "id": 132342256198893570, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 66, + 86 + ], + "url": "http://t.co/M416QleW", + "expanded_url": "http://4sq.com/tRJ9f0", + "display_url": "4sq.com/tRJ9f0" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.224199, + -33.899643 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342256198893568", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1518678828/Art_Deco_style_portrait_normal.jpg", + "profile_sidebar_fill_color": "fae2b9", + "id": 228572791, + "profile_text_color": "000000", + "followers_count": 852, + "profile_sidebar_border_color": "BAB997", + "id_str": "228572791", + "profile_background_color": "D20202", + "listed_count": 23, + "utc_offset": 36000, + "statuses_count": 6788, + "description": "Fashion and beauty blogger with a passion for art and design who likes to experiment with style and... ice-cream. Also mum to one gorgeous baby girl. Taken.", + "friends_count": 400, + "location": "Australia", + "profile_link_color": "eb3c1d", + "profile_image_url": "http://a0.twimg.com/profile_images/1518678828/Art_Deco_style_portrait_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/195516130/Website_home_page_-_pearls_-_needs_some_red_02.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/195516130/Website_home_page_-_pearls_-_needs_some_red_02.jpg", + "name": "Maria V", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 119, + "screen_name": "CrashingRed", + "notifications": null, + "url": "http://crashingred.com", + "created_at": "Mon Dec 20 03:20:14 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.899643, + 151.224199 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:23:47 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e04cdec", + "_rev": "1-2eb7e4b6a7694b46b70c5d5c23ad4ef0", + "oldid": "4eb384633de67c511700008d", + "favorited": false, + "in_reply_to_user_id": 30806148, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@DreamWriter31 @nyx2701 @mrtiedt @pat_gardner @katgallow our law office @legalconsult occupied p49 of the AFR today - perhaps more nxt week", + "created_at": "Fri Nov 04 06:23:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132320792989020160", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.00961526, + -33.81358376 + ] + }, + "id": 132342269008289800, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 30806148, + "id_str": "30806148", + "screen_name": "DreamWriter31", + "name": "Penny" + }, + { + "indices": [ + 15, + 23 + ], + "id": 218727873, + "id_str": "218727873", + "screen_name": "Nyx2701", + "name": "Nic" + }, + { + "indices": [ + 24, + 32 + ], + "id": 132092633, + "id_str": "132092633", + "screen_name": "mrtiedt", + "name": "Mr Tiedt" + }, + { + "indices": [ + 33, + 45 + ], + "id": 17308695, + "id_str": "17308695", + "screen_name": "pat_gardner", + "name": "Pat Gardner" + }, + { + "indices": [ + 46, + 56 + ], + "id": 254458144, + "id_str": "254458144", + "screen_name": "katgallow", + "name": "Kate Galloway" + }, + { + "indices": [ + 72, + 85 + ], + "id": 80946641, + "id_str": "80946641", + "screen_name": "legalconsult", + "name": "legal.consult" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132320792989020160, + "in_reply_to_screen_name": "DreamWriter31", + "id_str": "132342269008289793", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.81358376, + 151.00961526 + ] + }, + "in_reply_to_user_id_str": "30806148", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14839013, + "profile_text_color": "333333", + "followers_count": 713, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14839013", + "profile_background_color": "C0DEED", + "listed_count": 36, + "utc_offset": 36000, + "statuses_count": 1246, + "description": "Director - Community Builders Australia & legal.consult; President NSW Society for Computers & the Law", + "friends_count": 465, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andrew Perry", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "andrewperry", + "notifications": null, + "url": "http://www.andrewperry.id.au", + "created_at": "Mon May 19 23:23:55 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04cf98", + "_rev": "1-706ad28d25d5d7747d297e805dfcff33", + "oldid": "4eb384663de67c511700008e", + "favorited": false, + "in_reply_to_user_id": 58742333, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ZaneMarshall or in @theseany, @madjase @NATHAN_W00D & @scottj_smith case... When they loose interest in #battlefield3 for 5 seconds 😝 😁", + "created_at": "Fri Nov 04 06:23:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132316641513046017", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.16191197, + -38.16353565 + ] + }, + "id": 132342279980597250, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 58742333, + "id_str": "58742333", + "screen_name": "ZaneMarshall", + "name": "Zane Marshall" + }, + { + "indices": [ + 20, + 29 + ], + "id": 84317414, + "id_str": "84317414", + "screen_name": "theseany", + "name": "Sean Robinson" + }, + { + "indices": [ + 31, + 39 + ], + "id": 14611647, + "id_str": "14611647", + "screen_name": "madjase", + "name": "Jason Maddocks" + }, + { + "indices": [ + 40, + 52 + ], + "id": 264822953, + "id_str": "264822953", + "screen_name": "NATHAN_W00D", + "name": "Nathan" + }, + { + "indices": [ + 55, + 68 + ], + "id": 239259190, + "id_str": "239259190", + "screen_name": "scottj_smith", + "name": "Scott Smith" + } + ], + "hashtags": [ + { + "indices": [ + 106, + 119 + ], + "text": "battlefield3" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132316641513046020, + "in_reply_to_screen_name": "ZaneMarshall", + "id_str": "132342279980597248", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.16353565, + 145.16191197 + ] + }, + "in_reply_to_user_id_str": "58742333", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1438617320/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22445019, + "profile_text_color": "231f20", + "followers_count": 140, + "profile_sidebar_border_color": "231f20", + "id_str": "22445019", + "profile_background_color": "ffffff", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 2052, + "description": "Aspiring interior designer & food addict.", + "friends_count": 156, + "location": "melbourne, australia", + "profile_link_color": "646987", + "profile_image_url": "http://a2.twimg.com/profile_images/1438617320/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/202059947/241-CharcoalDamask.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/202059947/241-CharcoalDamask.jpg", + "name": "Jess Morris", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "jesm0z", + "notifications": null, + "url": "http://jesm0z.tumblr.com", + "created_at": "Mon Mar 02 03:25:14 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04dbb7", + "_rev": "1-19d0d4bf1a7d051fc7a12ca203b081fd", + "oldid": "4eb384673de67c511700008f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "i dont want to get smashed till tonight “@sammie_thomson: Someone is getting drunk @dutaperdana”", + "created_at": "Fri Nov 04 06:23:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9653169, + -37.81039066 + ] + }, + "id": 132342284330082300, + "entities": { + "user_mentions": [ + { + "indices": [ + 41, + 56 + ], + "id": 21284421, + "id_str": "21284421", + "screen_name": "sammie_thomson", + "name": "Samantha Thomson" + }, + { + "indices": [ + 83, + 95 + ], + "id": 27978732, + "id_str": "27978732", + "screen_name": "dutaperdana", + "name": "Duta Alamsyah" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342284330082305", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81039066, + 144.9653169 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1453200166/image_normal.jpg", + "profile_sidebar_fill_color": "c9c9c9", + "id": 27978732, + "profile_text_color": "595959", + "followers_count": 269, + "profile_sidebar_border_color": "bfbfbf", + "id_str": "27978732", + "profile_background_color": "ffffff", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 6117, + "description": "visual artist? ", + "friends_count": 176, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1453200166/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/21576211/_MG_7274.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/21576211/_MG_7274.jpg", + "name": "Duta Alamsyah", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "dutaperdana", + "notifications": null, + "url": "http://dutadut.deviantart.com", + "created_at": "Tue Mar 31 22:19:08 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04dd7b", + "_rev": "1-16c0113065705f9ae3d34b4c7ce427c2", + "oldid": "4eb3846d3de67c5117000090", + "contributors": null, + "truncated": false, + "text": "\"@BrookeAdamsTNA: http://t.co/0dVr3Y6F\" lol", + "in_reply_to_status_id": null, + "id": 132342310225711100, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 16 + ], + "id": 187083657, + "id_str": "187083657", + "screen_name": "BrookeAdamsTNA", + "name": "Brooke Adams" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 18, + 38 + ], + "url": "http://t.co/0dVr3Y6F", + "expanded_url": "http://twitter.com/BrookeAdamsTNA/status/132341149225594880/photo/1", + "display_url": "pic.twitter.com/0dVr3Y6F" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.2302597, + -35.3485234 + ] + }, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342310225711104", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576547820/417173638_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 225725036, + "profile_text_color": "333333", + "followers_count": 14, + "profile_sidebar_border_color": "C0DEED", + "id_str": "225725036", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 344, + "description": "in the making of becoming a wrestler", + "friends_count": 186, + "location": "canberra,Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1576547820/417173638_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342410191/9322.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/342410191/9322.jpg", + "name": "Nathan Leach", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "aussiewwefan", + "notifications": null, + "url": "http://www.youtube.com/user/aussiewwefan?feature=mhee", + "created_at": "Sun Dec 12 08:52:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.3485234, + 149.2302597 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:00 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e04dee1", + "_rev": "1-6c66bf000f021076f01b89095b177936", + "oldid": "4eb384713de67c5117000091", + "favorited": false, + "in_reply_to_user_id": 18925120, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@KKeneally is that just NSW or national?", + "created_at": "Fri Nov 04 06:24:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340676766601217", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.984906, + -37.79758094 + ] + }, + "id": 132342328152174600, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 18925120, + "id_str": "18925120", + "screen_name": "KKeneally", + "name": "Kristina Keneally" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340676766601220, + "in_reply_to_screen_name": "KKeneally", + "id_str": "132342328152174592", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79758094, + 144.984906 + ] + }, + "in_reply_to_user_id_str": "18925120", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1398531231/sam_normal.jpg", + "profile_sidebar_fill_color": "fcffc7", + "id": 13886322, + "profile_text_color": "000000", + "followers_count": 329, + "profile_sidebar_border_color": "2f406f", + "id_str": "13886322", + "profile_background_color": "1E2F8A", + "listed_count": 9, + "utc_offset": 36000, + "statuses_count": 9248, + "description": "Social media freak. Programmer of all things web, PHP & awesome @ @Flint_Tweets. @Kiva lender. Music lover. 25. Recently engaged. Melbournite. Foodie. Rambler.", + "friends_count": 273, + "location": "Melbourne, Victoria", + "profile_link_color": "179B2B", + "profile_image_url": "http://a0.twimg.com/profile_images/1398531231/sam_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/254826184/sdj.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/254826184/sdj.jpg", + "name": "Sammy (Sam) Jarrett", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 197, + "screen_name": "sammyjarrett", + "notifications": null, + "url": "http://iams.am", + "created_at": "Sun Feb 24 01:43:30 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04e5d5", + "_rev": "1-c4a574f3c4be1b2f63a62571b35451cc", + "oldid": "4eb3847e3de67c5117000092", + "favorited": false, + "in_reply_to_user_id": 127793802, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mystudiouslife Hahaha food is greater than family :D", + "created_at": "Fri Nov 04 06:24:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341997196410880", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.75009344, + -37.54865171 + ] + }, + "id": 132342380958457860, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 127793802, + "id_str": "127793802", + "screen_name": "mystudiouslife", + "name": "Studious Jenn" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341997196410880, + "in_reply_to_screen_name": "mystudiouslife", + "id_str": "132342380958457856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.54865171, + 149.75009344 + ] + }, + "in_reply_to_user_id_str": "127793802", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1586175378/IMG_5030_normal.jpg", + "profile_sidebar_fill_color": "997d93", + "id": 33350171, + "profile_text_color": "362720", + "followers_count": 55, + "profile_sidebar_border_color": "997d93", + "id_str": "33350171", + "profile_background_color": "997d93", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1340, + "description": "Housewife | cat mother | online MA student @ ANU | art history nerd | Olave Program Girl Guide | Pinterest addict", + "friends_count": 92, + "location": "Mallacoota, Australia", + "profile_link_color": "330db3", + "profile_image_url": "http://a3.twimg.com/profile_images/1586175378/IMG_5030_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/53499617/seamless-vintage-wallpaper-pattern-thumb1592949.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/53499617/seamless-vintage-wallpaper-pattern-thumb1592949.jpg", + "name": "MrsWinC", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "409mallaway", + "notifications": null, + "url": "http://409mallacootaway.tumblr.com", + "created_at": "Mon Apr 20 00:12:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04f411", + "_rev": "1-0df9c7961da59cf0f048c6c8314826f8", + "oldid": "4eb384853de67c5117000093", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Yayayay Ana's mum drove past honking and blew me a kiss.", + "created_at": "Fri Nov 04 06:24:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9142073, + -37.7587488 + ] + }, + "id": 132342411623022600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342411623022592", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.7587488, + 144.9142073 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 393046239, + "profile_text_color": "333333", + "followers_count": 23, + "profile_sidebar_border_color": "C0DEED", + "id_str": "393046239", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 362, + "description": "Hi there, I'm Mandy. I'm average. I like things and love someone, and yeah.", + "friends_count": 45, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Mandy Gu", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 131, + "screen_name": "mandyguzza", + "notifications": null, + "url": "http://mandy-blah-xox.tumblr.com/", + "created_at": "Mon Oct 17 23:12:51 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e04fdb2", + "_rev": "1-fe57a27260a5a23d444c248a3d0c9d8a", + "oldid": "4eb3848d3de67c5117000094", + "contributors": null, + "truncated": false, + "text": "요셉군. 드디어 두발 자전거 타기 성공 http://t.co/OHBDyPgT", + "in_reply_to_status_id": null, + "id": 132342440823754750, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYsv65CEAAsq2B.jpg", + "expanded_url": "http://twitter.com/ywamit/status/132342440823754753/photo/1", + "display_url": "pic.twitter.com/OHBDyPgT", + "url": "http://t.co/OHBDyPgT", + "sizes": { + "large": { + "h": 720, + "w": 960, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132342440827949056", + "indices": [ + 22, + 42 + ], + "type": "photo", + "id": 132342440827949060, + "media_url": "http://p.twimg.com/AdYsv65CEAAsq2B.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.16123821, + -35.22902005 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342440823754753", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1195390451/49309_100000534148697_1736704_q_normal.jpg", + "profile_sidebar_fill_color": "E6F6F9", + "id": 138333239, + "profile_text_color": "333333", + "followers_count": 55, + "profile_sidebar_border_color": "DBE9ED", + "id_str": "138333239", + "profile_background_color": "DBE9ED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 660, + "description": "GATEWAY MINISTRIES of YWAM CANBERRA 리더, 국제열방대학 캔버라 캠퍼스 리더쉽", + "friends_count": 71, + "location": "Australia Canberra", + "profile_link_color": "CC3366", + "profile_image_url": "http://a2.twimg.com/profile_images/1195390451/49309_100000534148697_1736704_q_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme17/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme17/bg.gif", + "name": "daekyu Lim", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "ywamit", + "notifications": null, + "url": "http://www.vision21.kr", + "created_at": "Thu Apr 29 07:34:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.22902005, + 149.16123821 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e04ffb9", + "_rev": "1-7fc5ceab893139daee655119f500fa60", + "oldid": "4eb3848f3de67c5117000095", + "contributors": null, + "truncated": false, + "text": "\"@BrookeAdamsTNA: http://t.co/KYq9wtO8\" hubba hubba", + "in_reply_to_status_id": null, + "id": 132342451099803650, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 16 + ], + "id": 187083657, + "id_str": "187083657", + "screen_name": "BrookeAdamsTNA", + "name": "Brooke Adams" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 18, + 38 + ], + "url": "http://t.co/KYq9wtO8", + "expanded_url": "http://twitter.com/BrookeAdamsTNA/status/132342270027509762/photo/1", + "display_url": "pic.twitter.com/KYq9wtO8" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.2302597, + -35.3485234 + ] + }, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342451099803648", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576547820/417173638_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 225725036, + "profile_text_color": "333333", + "followers_count": 14, + "profile_sidebar_border_color": "C0DEED", + "id_str": "225725036", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 346, + "description": "in the making of becoming a wrestler", + "friends_count": 186, + "location": "canberra,Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1576547820/417173638_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342410191/9322.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/342410191/9322.jpg", + "name": "Nathan Leach", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "aussiewwefan", + "notifications": null, + "url": "http://www.youtube.com/user/aussiewwefan?feature=mhee", + "created_at": "Sun Dec 12 08:52:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.3485234, + 149.2302597 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:33 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e050bfa", + "_rev": "1-b1021de5d8e9e84ab6ed2062dc907fdf", + "oldid": "4eb384943de67c5117000096", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "IPhone 4s, loveeeeeeeeee :)", + "created_at": "Fri Nov 04 06:24:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.81553114, + -35.03264155 + ] + }, + "id": 132342474222993400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342474222993408", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.03264155, + 138.81553114 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1573775341/dedddddddd-2_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 235500578, + "profile_text_color": "666666", + "followers_count": 63, + "profile_sidebar_border_color": "181A1E", + "id_str": "235500578", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 736, + "description": "I can do all things through Christ. because he gives me strength (Phillipians 4:13)", + "friends_count": 277, + "location": "Adelaide Australia", + "profile_link_color": "2fed91", + "profile_image_url": "http://a3.twimg.com/profile_images/1573775341/dedddddddd-2_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Emma Hooley", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "emhooley", + "notifications": null, + "url": null, + "created_at": "Sat Jan 08 10:19:42 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05110d", + "_rev": "1-2a0e4b59072091cc5ece0fb794f4889c", + "oldid": "4eb3849f3de67c5117000097", + "contributors": null, + "truncated": false, + "text": "I'm at Fitness First (Pennant Hills Rd., in Carlingford Court, Carlingford) http://t.co/Yk0k9Zkz", + "in_reply_to_status_id": null, + "id": 132342520305823740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 76, + 96 + ], + "url": "http://t.co/Yk0k9Zkz", + "expanded_url": "http://4sq.com/ua1jM1", + "display_url": "4sq.com/ua1jM1" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.05169058, + -33.77693572 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342520305823744", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1389707251/IMG_5722.JPG_normal.jpeg", + "profile_sidebar_fill_color": "94cfff", + "id": 47330184, + "profile_text_color": "000000", + "followers_count": 594, + "profile_sidebar_border_color": "ffb914", + "id_str": "47330184", + "profile_background_color": "000000", + "listed_count": 15, + "utc_offset": 36000, + "statuses_count": 55727, + "description": "18. Sydney. ∆. Arts Commerce. マッコ―リ―・大学の一年生です。 Taken. ", + "friends_count": 208, + "location": "Sydney", + "profile_link_color": "ff8c00", + "profile_image_url": "http://a3.twimg.com/profile_images/1389707251/IMG_5722.JPG_normal.jpeg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/144658195/triangle.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/144658195/triangle.jpg", + "name": "Mitch Venn-Brown", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 329, + "screen_name": "vennbrownie", + "notifications": null, + "url": "http://www.facebook.com/vennbrownie", + "created_at": "Mon Jun 15 13:11:06 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.77693572, + 151.05169058 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:50 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0515e7", + "_rev": "1-f0af3c6e87fdc4a29beb45debdd5eb0f", + "oldid": "4eb384a03de67c5117000098", + "contributors": null, + "truncated": false, + "text": "I'm at Krispy Kreme (Central Station, Ashfield) http://t.co/5le7OuvB", + "in_reply_to_status_id": null, + "id": 132342522281332740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 48, + 68 + ], + "url": "http://t.co/5le7OuvB", + "expanded_url": "http://4sq.com/vI8Pp6", + "display_url": "4sq.com/vI8Pp6" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.206038, + -33.883787 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342522281332736", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616217483/image_normal.jpg", + "profile_sidebar_fill_color": "FFF7CC", + "id": 102831294, + "profile_text_color": "0C3E53", + "followers_count": 68, + "profile_sidebar_border_color": "F2E195", + "id_str": "102831294", + "profile_background_color": "BADFCD", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 793, + "description": "sports freak", + "friends_count": 599, + "location": "bidwill", + "profile_link_color": "e61e1e", + "profile_image_url": "http://a2.twimg.com/profile_images/1616217483/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dwayne Tucker", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "dragonboy33", + "notifications": null, + "url": null, + "created_at": "Fri Jan 08 00:16:37 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.883787, + 151.206038 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:50 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e05243c", + "_rev": "1-1f94df399b9ada8b139398625bd925ab", + "oldid": "4eb384a03de67c5117000099", + "contributors": null, + "truncated": false, + "text": "I just became the mayor of Krispy Kreme on @foursquare! http://t.co/GMOreMMJ", + "in_reply_to_status_id": null, + "id": 132342524093276160, + "entities": { + "user_mentions": [ + { + "indices": [ + 43, + 54 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 56, + 76 + ], + "url": "http://t.co/GMOreMMJ", + "expanded_url": "http://4sq.com/9slMEX", + "display_url": "4sq.com/9slMEX" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.206038, + -33.883787 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342524093276160", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616217483/image_normal.jpg", + "profile_sidebar_fill_color": "FFF7CC", + "id": 102831294, + "profile_text_color": "0C3E53", + "followers_count": 68, + "profile_sidebar_border_color": "F2E195", + "id_str": "102831294", + "profile_background_color": "BADFCD", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 794, + "description": "sports freak", + "friends_count": 599, + "location": "bidwill", + "profile_link_color": "e61e1e", + "profile_image_url": "http://a2.twimg.com/profile_images/1616217483/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dwayne Tucker", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "dragonboy33", + "notifications": null, + "url": null, + "created_at": "Fri Jan 08 00:16:37 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.883787, + 151.206038 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:51 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e052c35", + "_rev": "1-a32bed8d50ed1bd743c39869374ba42d", + "oldid": "4eb384a43de67c511700009a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Awesome waves, had a nice swim at Maroubra Beach! 🌊☀ Just had a hot lunch with Georgia, Hayden, John and @StevenC94! 😄🏊🏄", + "created_at": "Fri Nov 04 06:24:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.25588789, + -33.94850713 + ] + }, + "id": 132342538425221120, + "entities": { + "user_mentions": [ + { + "indices": [ + 105, + 115 + ], + "id": 135101874, + "id_str": "135101874", + "screen_name": "StevenC94", + "name": "Steven Cilia" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342538425221121", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.94850713, + 151.25588789 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1590820868/image_normal.jpg", + "profile_sidebar_fill_color": "6efff5", + "id": 68940619, + "profile_text_color": "0056f7", + "followers_count": 153, + "profile_sidebar_border_color": "0c9c29", + "id_str": "68940619", + "profile_background_color": "00ffcc", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 3820, + "description": "I LOVE MICKIE JAMES !", + "friends_count": 223, + "location": "Sydney, Australia", + "profile_link_color": "1a00ff", + "profile_image_url": "http://a2.twimg.com/profile_images/1590820868/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/317122426/Twitter.JPG", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/317122426/Twitter.JPG", + "name": "Ritesh ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 145, + "screen_name": "Ritto94", + "notifications": null, + "url": null, + "created_at": "Wed Aug 26 09:38:48 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e053111", + "_rev": "1-c56d9470569fbffce83934bf4d17d4b2", + "oldid": "4eb384a53de67c511700009b", + "contributors": null, + "truncated": false, + "text": "I'm at Ivanhoe http://t.co/pZquVKLP", + "in_reply_to_status_id": null, + "id": 132342543298990080, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 15, + 35 + ], + "url": "http://t.co/pZquVKLP", + "expanded_url": "http://4sq.com/v6Pflj", + "display_url": "4sq.com/v6Pflj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.042576, + -37.770764 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342543298990081", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1018692861/small_file__2__normal.jpg", + "profile_sidebar_fill_color": "bdb0b0", + "id": 79959242, + "profile_text_color": "786434", + "followers_count": 352, + "profile_sidebar_border_color": "99B2B7", + "id_str": "79959242", + "profile_background_color": "D9CEB2", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 6072, + "description": "I tweet about all kinds of Motor Sport; including Rallying, Drift Racing, SuperGT, GT1. Japan stuff, Music, Photography, Marketing, Sailing! 日本語しゃべりたいです!", + "friends_count": 148, + "location": "Melbourne, Australia.", + "profile_link_color": "807b7b", + "profile_image_url": "http://a2.twimg.com/profile_images/1018692861/small_file__2__normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/98003152/x4352bf282584614ae45a30029bc3d78.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/98003152/x4352bf282584614ae45a30029bc3d78.jpg", + "name": "Michael Finger", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 14, + "screen_name": "TheFingers", + "notifications": null, + "url": "http://www.nishimachi.wordpress.com", + "created_at": "Mon Oct 05 07:56:11 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.770764, + 145.042576 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:55 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e053599", + "_rev": "1-1976db29773748b2641b1a7ddac94fbf", + "oldid": "4eb384a73de67c511700009c", + "contributors": null, + "truncated": false, + "text": "I'm at manly corso http://t.co/k0PSkRNV", + "in_reply_to_status_id": null, + "id": 132342552153169920, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 19, + 39 + ], + "url": "http://t.co/k0PSkRNV", + "expanded_url": "http://4sq.com/szBcz6", + "display_url": "4sq.com/szBcz6" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.286345, + -33.798094 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342552153169920", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1543418678/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 23588273, + "profile_text_color": "333333", + "followers_count": 51, + "profile_sidebar_border_color": "eeeeee", + "id_str": "23588273", + "profile_background_color": "B2DFDA", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 279, + "description": "Hello,I am a down to Earth person with a big heart, I love my friends and family and being out in nature.", + "friends_count": 57, + "location": "Sydney, Aus ", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1543418678/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/192168226/TardisScreenWide1680x1050.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/192168226/TardisScreenWide1680x1050.jpg", + "name": "Ryleigh J Bennetts", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 9, + "screen_name": "RyleighBennetts", + "notifications": null, + "url": null, + "created_at": "Tue Mar 10 13:02:17 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.798094, + 151.286345 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:24:57 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0538cd", + "_rev": "1-ad9e81d291f5a1c953547c13a148bb08", + "oldid": "4eb384ad3de67c511700009d", + "contributors": null, + "truncated": false, + "text": "I'm at Bambini Wine Room & Bar (185 Elizabeth St, Park St, Sydney) http://t.co/4UQxEppa", + "in_reply_to_status_id": null, + "id": 132342577272848380, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 67, + 87 + ], + "url": "http://t.co/4UQxEppa", + "expanded_url": "http://4sq.com/vE43IP", + "display_url": "4sq.com/vE43IP" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.210228, + -33.87231 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342577272848384", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1344614855/annacrop2_normal.jpg", + "profile_sidebar_fill_color": "dadfe1", + "id": 23682229, + "profile_text_color": "050505", + "followers_count": 257, + "profile_sidebar_border_color": "474f52", + "id_str": "23682229", + "profile_background_color": "bec0c1", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 5801, + "description": "Not knowing when the dawn will come, I open every door.", + "friends_count": 274, + "location": "Bondi Beach, Australia", + "profile_link_color": "4e5583", + "profile_image_url": "http://a3.twimg.com/profile_images/1344614855/annacrop2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/14957960/aubrey.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/14957960/aubrey.jpg", + "name": "Anna Stone", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "Annanotherthing", + "notifications": null, + "url": "http://pearsandvanilla.tumblr.com/", + "created_at": "Tue Mar 10 23:35:43 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87231, + 151.210228 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e053cce", + "_rev": "1-6cc94b60fd31613c821fb82fe232e52d", + "oldid": "4eb384ad3de67c511700009e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Ladies & Gentlemen today marks the birth of the 2nd installment to Tablefor20 & Sticky Bar... Stay tuned to the \"Buffalo Dining Club\"", + "created_at": "Fri Nov 04 06:25:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21349807, + -33.88289502 + ] + }, + "id": 132342579994963970, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342579994963968", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88289502, + 151.21349807 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 318139112, + "profile_text_color": "333333", + "followers_count": 74, + "profile_sidebar_border_color": "eeeeee", + "id_str": "318139112", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": -36000, + "statuses_count": 73, + "description": "One guy is reinventing the idea of the evening meal by opening his space for a weekly gathering of friends & strangers.This is neighbourhood dining at its best", + "friends_count": 56, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/270991326/tf20.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/270991326/tf20.jpg", + "name": "Michael Fantuz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "_Tablefor20", + "notifications": null, + "url": "http://www.tablefor20.blogspot.com/", + "created_at": "Thu Jun 16 01:17:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05492f", + "_rev": "1-cd44ee2dd98af36f1673949917e5c22d", + "oldid": "4eb384ae3de67c511700009f", + "contributors": null, + "truncated": false, + "text": "\"@BrookeAdamsTNA: http://t.co/96quuHJu\" sweet", + "in_reply_to_status_id": null, + "id": 132342583044222980, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 16 + ], + "id": 187083657, + "id_str": "187083657", + "screen_name": "BrookeAdamsTNA", + "name": "Brooke Adams" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 18, + 38 + ], + "url": "http://t.co/96quuHJu", + "expanded_url": "http://twitter.com/BrookeAdamsTNA/status/132342361878573056/photo/1", + "display_url": "pic.twitter.com/96quuHJu" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.2302597, + -35.3485234 + ] + }, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342583044222976", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576547820/417173638_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 225725036, + "profile_text_color": "333333", + "followers_count": 14, + "profile_sidebar_border_color": "C0DEED", + "id_str": "225725036", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 347, + "description": "in the making of becoming a wrestler", + "friends_count": 186, + "location": "canberra,Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1576547820/417173638_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342410191/9322.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/342410191/9322.jpg", + "name": "Nathan Leach", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "aussiewwefan", + "notifications": null, + "url": "http://www.youtube.com/user/aussiewwefan?feature=mhee", + "created_at": "Sun Dec 12 08:52:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.3485234, + 149.2302597 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:05 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e054c33", + "_rev": "1-60383c904e3c72d7233515725cab36f3", + "oldid": "4eb384af3de67c51170000a0", + "contributors": null, + "truncated": false, + "text": "time consuming. @ David Jones http://t.co/qC2RqzGU", + "in_reply_to_status_id": null, + "id": 132342587251113980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 31, + 51 + ], + "url": "http://t.co/qC2RqzGU", + "expanded_url": "http://instagr.am/p/SqOHq/", + "display_url": "instagr.am/p/SqOHq/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02627, + -27.468464 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342587251113984", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/995652273/24969_372353892214_642982214_3802260_2550869_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 29701171, + "profile_text_color": "666666", + "followers_count": 119, + "profile_sidebar_border_color": "181A1E", + "id_str": "29701171", + "profile_background_color": "1A1B1F", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3868, + "description": "Kenye East // Pilot // Banana // Boy", + "friends_count": 87, + "location": "Brisbane, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/995652273/24969_372353892214_642982214_3802260_2550869_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/35252105/00043.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/35252105/00043.jpg", + "name": "Ken Mizuno", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "kencmizuno", + "notifications": null, + "url": null, + "created_at": "Wed Apr 08 12:16:14 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.468464, + 153.02627 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e05542d", + "_rev": "1-2f36ef3d920119c8723ea71dca951f95", + "oldid": "4eb384b03de67c51170000a1", + "contributors": null, + "truncated": false, + "text": "I'm at TAFESA Adelaide College Of The Arts http://t.co/dslzihQk", + "in_reply_to_status_id": null, + "id": 132342589268557820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 43, + 63 + ], + "url": "http://t.co/dslzihQk", + "expanded_url": "http://4sq.com/steKiG", + "display_url": "4sq.com/steKiG" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.59407043, + -34.92463684 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342589268557824", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1499088989/J024hSS2_normal.jpg", + "profile_sidebar_fill_color": "08ffff", + "id": 19813266, + "profile_text_color": "000000", + "followers_count": 253, + "profile_sidebar_border_color": "2dede7", + "id_str": "19813266", + "profile_background_color": "000000", + "listed_count": 9, + "utc_offset": 34200, + "statuses_count": 10563, + "description": "20 y/o gay Adelaideian. I love Polaroid photos, typography, graphic design, pixel art, pop art and keygen music", + "friends_count": 257, + "location": "Adelaide, Australia", + "profile_link_color": "ff5100", + "profile_image_url": "http://a3.twimg.com/profile_images/1499088989/J024hSS2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/313199149/victorian-pattern-ii-studio-light.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/313199149/victorian-pattern-ii-studio-light.jpg", + "name": "Stevie-Leigh", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "stevie_leigh91", + "notifications": null, + "url": "http://youcantbreatheunderwater.tumblr.com", + "created_at": "Sat Jan 31 12:12:33 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.92463684, + 138.59407043 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e055446", + "_rev": "1-275f7cc5445c3e9dda4f09dcd601e85a", + "oldid": "4eb384b13de67c51170000a2", + "favorited": false, + "in_reply_to_user_id": 24843672, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@lapetiteyoyo I know! I have no idea what's wrong with me. Unfortunately I'm a massive horror film junkie.", + "created_at": "Fri Nov 04 06:25:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132317437235445760", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.31532816, + -33.42716195 + ] + }, + "id": 132342593932632060, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 24843672, + "id_str": "24843672", + "screen_name": "lapetiteyoyo", + "name": "Abigail Baker" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132317437235445760, + "in_reply_to_screen_name": "lapetiteyoyo", + "id_str": "132342593932632065", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.42716195, + 151.31532816 + ] + }, + "in_reply_to_user_id_str": "24843672", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/446917584/1_normal.jpg", + "profile_sidebar_fill_color": "FFF7CC", + "id": 30652349, + "profile_text_color": "0C3E53", + "followers_count": 63, + "profile_sidebar_border_color": "F2E195", + "id_str": "30652349", + "profile_background_color": "BADFCD", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 507, + "description": "I put ice in my red wine, punctuation in my text messages & tequila in my tonic water. ", + "friends_count": 191, + "location": "Central Coast, Australia", + "profile_link_color": "FF0000", + "profile_image_url": "http://a0.twimg.com/profile_images/446917584/1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme12/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme12/bg.gif", + "name": "Emily Bowtell", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "EmilyBowtell", + "notifications": null, + "url": null, + "created_at": "Sun Apr 12 13:54:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0559c7", + "_rev": "1-89751d0f73337b9ba42de421aaa7810b", + "oldid": "4eb384b23de67c51170000a3", + "contributors": null, + "truncated": false, + "text": "Our first Fri night drinks with our fabulous new courtyard thanks to the amazing mr leavy! [pic]: http://t.co/EMqHITYw", + "in_reply_to_status_id": null, + "id": 132342598995152900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 98, + 118 + ], + "url": "http://t.co/EMqHITYw", + "expanded_url": "http://4sq.com/tdsM25", + "display_url": "4sq.com/tdsM25" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.094247, + -26.665082 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342598995152896", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/876616106/yvette_adams_the_creative_collective_normal.jpg", + "profile_sidebar_fill_color": "e3e3e3", + "id": 16783090, + "profile_text_color": "333333", + "followers_count": 1976, + "profile_sidebar_border_color": "ff6600", + "id_str": "16783090", + "profile_background_color": "ffffff", + "listed_count": 83, + "utc_offset": 36000, + "statuses_count": 1592, + "description": "Multi-award winning Queensland based creative agency. Web design, PR, marketing, graphic design, print jobs, online marketing, social media, ppc, seo & more! ", + "friends_count": 2084, + "location": "Sunshine Coast, Australia", + "profile_link_color": "ff6600", + "profile_image_url": "http://a0.twimg.com/profile_images/876616106/yvette_adams_the_creative_collective_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/161347743/Twitter_background.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/161347743/Twitter_background.jpg", + "name": "creativecollective", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "creativecollect", + "notifications": null, + "url": "http://www.thecreativecollective.com.au", + "created_at": "Wed Oct 15 14:28:52 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -26.665082, + 153.094247 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e056546", + "_rev": "1-194eb480345b63328fc0ba9beb773b3d", + "oldid": "4eb384b63de67c51170000a4", + "favorited": false, + "in_reply_to_user_id": 261666996, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@jgerrans @toddbalym don't forget the editor!", + "created_at": "Fri Nov 04 06:25:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132297971948724225", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.03102157, + -27.46679679 + ] + }, + "id": 132342613700390910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 261666996, + "id_str": "261666996", + "screen_name": "jgerrans", + "name": "Jordan Gerrans" + }, + { + "indices": [ + 10, + 20 + ], + "id": 248967064, + "id_str": "248967064", + "screen_name": "toddbalym", + "name": "Todd Balym" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132297971948724220, + "in_reply_to_screen_name": "jgerrans", + "id_str": "132342613700390912", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.46679679, + 153.03102157 + ] + }, + "in_reply_to_user_id_str": "261666996", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576708035/28970_518240182548_218700203_31220128_8357205_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 157352397, + "profile_text_color": "333333", + "followers_count": 309, + "profile_sidebar_border_color": "eeeeee", + "id_str": "157352397", + "profile_background_color": "131516", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 3722, + "description": "Founder of nrlsupercoachtalk.com and thepuntroadend.com. Website creator, twit, blogger, sports fanatic and a ranga. What more could you want to follow?", + "friends_count": 729, + "location": "Brisbane", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1576708035/28970_518240182548_218700203_31220128_8357205_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Joshua Langdon", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "Wenin_Rome", + "notifications": null, + "url": "http://www.thepuntroadend.com", + "created_at": "Sat Jun 19 15:09:09 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05727a", + "_rev": "1-b965f085e88a459a1842bc94a4a1557f", + "oldid": "4eb384be3de67c51170000a5", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Some tank guy who goes to UNSW walks pass us and here we are eating Red Lea chips representing USYD hahaha", + "created_at": "Fri Nov 04 06:25:21 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.93796953, + -33.89528306 + ] + }, + "id": 132342649834311680, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342649834311680", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89528306, + 150.93796953 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1134954499/2010_11_51_58_PM_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 11032242, + "profile_text_color": "333333", + "followers_count": 26, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "11032242", + "profile_background_color": "EBEBEB", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 162, + "description": "", + "friends_count": 31, + "location": "sydney, Australia", + "profile_link_color": "990000", + "profile_image_url": "http://a0.twimg.com/profile_images/1134954499/2010_11_51_58_PM_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Norman Vuong", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "normanvuong", + "notifications": null, + "url": "http://normanvuong.com", + "created_at": "Mon Dec 10 23:05:50 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0577fb", + "_rev": "1-c20ddf92ec514ec91e75a7f6f4e8e0a9", + "oldid": "4eb384c13de67c51170000a6", + "favorited": false, + "in_reply_to_user_id": 225713988, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ningggg @silly_shirley what's that", + "created_at": "Fri Nov 04 06:25:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341608992604160", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.87012739, + -32.04593743 + ] + }, + "id": 132342662039732220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 225713988, + "id_str": "225713988", + "screen_name": "ningggg", + "name": "♥ NingSalvatore" + }, + { + "indices": [ + 9, + 23 + ], + "id": 277424662, + "id_str": "277424662", + "screen_name": "Silly_Shirley", + "name": "Shirley Ch'ng." + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341608992604160, + "in_reply_to_screen_name": "ningggg", + "id_str": "132342662039732224", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04593743, + 115.87012739 + ] + }, + "in_reply_to_user_id_str": "225713988", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616962706/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 312546016, + "profile_text_color": "0a050a", + "followers_count": 237, + "profile_sidebar_border_color": "120612", + "id_str": "312546016", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 18076, + "description": "an optimistic person who never stopped loving her family, manchester united, Chicharito,HIMYM, her best mates, Tangled & ice cream☺.", + "friends_count": 329, + "location": "in the freezer", + "profile_link_color": "090a0a", + "profile_image_url": "http://a2.twimg.com/profile_images/1616962706/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "name": "❥C.Christine", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 94, + "screen_name": "chynietoto", + "notifications": null, + "url": null, + "created_at": "Tue Jun 07 09:00:06 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e057c49", + "_rev": "1-eb7b9d71b7382464e41adecb4ec726df", + "oldid": "4eb384c13de67c51170000a7", + "contributors": null, + "truncated": false, + "text": "I'm at Clarity Records (60 Pulteney Street, Adelaide) http://t.co/GFqcNdKD", + "in_reply_to_status_id": null, + "id": 132342663209951230, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 54, + 74 + ], + "url": "http://t.co/GFqcNdKD", + "expanded_url": "http://4sq.com/rSQMEU", + "display_url": "4sq.com/rSQMEU" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.605603, + -34.92293 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342663209951232", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1213791409/fayeprofile_normal.png", + "profile_sidebar_fill_color": "7AC3EE", + "id": 127419467, + "profile_text_color": "3D1957", + "followers_count": 47, + "profile_sidebar_border_color": "65B0DA", + "id_str": "127419467", + "profile_background_color": "642D8B", + "listed_count": 2, + "utc_offset": 34200, + "statuses_count": 6457, + "description": "", + "friends_count": 115, + "location": "", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1213791409/fayeprofile_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Raven Elena Van Pelt", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 15, + "screen_name": "MuggBoots53", + "notifications": null, + "url": "http://muggboots.tumblr.com", + "created_at": "Mon Mar 29 04:10:09 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.92293, + 138.605603 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:24 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e057f09", + "_rev": "1-643f59a79341fcc558b4e7e01fe706f1", + "oldid": "4eb384c23de67c51170000a8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I love Edward no I love Jacob no I love Edward no I think I love Jacob ... WhAt a bitch! #twilightsucks", + "created_at": "Fri Nov 04 06:25:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33342868, + -38.03079324 + ] + }, + "id": 132342665458102270, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 89, + 103 + ], + "text": "twilightsucks" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342665458102272", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03079324, + 145.33342868 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2628, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e058403", + "_rev": "1-7020fa86624e30bbddb4f32e19ffd212", + "oldid": "4eb384c43de67c51170000a9", + "favorited": false, + "in_reply_to_user_id": 324807134, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ktseys @dritadavanzo hahhaha love it <3 where were you at lunch ?!?", + "created_at": "Fri Nov 04 06:25:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132338417651552256", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.92672524, + -33.8664716 + ] + }, + "id": 132342674299699200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 324807134, + "id_str": "324807134", + "screen_name": "ktseys", + "name": "ksey" + }, + { + "indices": [ + 8, + 21 + ], + "id": 266367426, + "id_str": "266367426", + "screen_name": "DritaDavanzo", + "name": "Drita Davanzo" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132338417651552260, + "in_reply_to_screen_name": "ktseys", + "id_str": "132342674299699201", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8664716, + 150.92672524 + ] + }, + "in_reply_to_user_id_str": "324807134", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1542453637/IMG_0469_normal.jpg", + "profile_sidebar_fill_color": "ff085a", + "id": 132131892, + "profile_text_color": "8fff0f", + "followers_count": 57, + "profile_sidebar_border_color": "df12ff", + "id_str": "132131892", + "profile_background_color": "ff12a0", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 151, + "description": "Every failure is a step to success...\r\n - William Wheivell", + "friends_count": 646, + "location": "Sydney ", + "profile_link_color": "08404a", + "profile_image_url": "http://a2.twimg.com/profile_images/1542453637/IMG_0469_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/279401388/IMG_1021.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/279401388/IMG_1021.jpg", + "name": "samantha marcus", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "iSamSamm", + "notifications": null, + "url": null, + "created_at": "Mon Apr 12 10:59:29 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0588b0", + "_rev": "1-24c01552b9cda54ba1090ca21edc508d", + "oldid": "4eb384c83de67c51170000aa", + "contributors": null, + "truncated": false, + "text": "Working from home benefit #27 http://t.co/2aLxhgdh", + "in_reply_to_status_id": null, + "id": 132342690485514240, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 31, + 51 + ], + "url": "http://t.co/2aLxhgdh", + "expanded_url": "http://ow.ly/i/kxJo", + "display_url": "ow.ly/i/kxJo" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0098, + -37.82257 + ] + }, + "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342690485514240", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/602537467/2694196400_5ee35bcc49_b_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 14573272, + "profile_text_color": "c41313", + "followers_count": 4854, + "profile_sidebar_border_color": "3d3f42", + "id_str": "14573272", + "profile_background_color": "000000", + "listed_count": 274, + "utc_offset": 36000, + "statuses_count": 23947, + "description": "Social Media Bloke | Bass Player | Camera User | Coffee Drinker | Dreamer [all views here are my own, strangely]", + "friends_count": 3158, + "location": "Melbourne, Australia", + "profile_link_color": "000000", + "profile_image_url": "http://a0.twimg.com/profile_images/602537467/2694196400_5ee35bcc49_b_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/249903624/DSC00690-2.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/249903624/DSC00690-2.jpg", + "name": "Simon Pollock", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "gtvone", + "notifications": null, + "url": "http://www.gtvone.com", + "created_at": "Mon Apr 28 18:42:57 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82257, + 145.0098 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:30 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e05965b", + "_rev": "1-06340ae3c7e4d8979bfeec947a5a46b0", + "oldid": "4eb384ca3de67c51170000ab", + "contributors": null, + "truncated": false, + "text": "I'm at Newslink - Central Station Main Concourse (Eddy Ave, Sydney) http://t.co/aKFuTLHK", + "in_reply_to_status_id": null, + "id": 132342701449424900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 68, + 88 + ], + "url": "http://t.co/aKFuTLHK", + "expanded_url": "http://4sq.com/vbDhk1", + "display_url": "4sq.com/vbDhk1" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20699048, + -33.88306419 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342701449424897", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616217483/image_normal.jpg", + "profile_sidebar_fill_color": "FFF7CC", + "id": 102831294, + "profile_text_color": "0C3E53", + "followers_count": 68, + "profile_sidebar_border_color": "F2E195", + "id_str": "102831294", + "profile_background_color": "BADFCD", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 795, + "description": "sports freak", + "friends_count": 599, + "location": "bidwill", + "profile_link_color": "e61e1e", + "profile_image_url": "http://a2.twimg.com/profile_images/1616217483/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dwayne Tucker", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "dragonboy33", + "notifications": null, + "url": null, + "created_at": "Fri Jan 08 00:16:37 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.88306419, + 151.20699048 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:33 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e05a330", + "_rev": "1-9f854ebc10bf0c3ca8240ea7ed62c813", + "oldid": "4eb384d23de67c51170000ac", + "contributors": null, + "truncated": false, + "text": "Jenga!!! (@ No name bar) [pic]: http://t.co/jiXCa0BP", + "in_reply_to_status_id": null, + "id": 132342732244008960, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 32, + 52 + ], + "url": "http://t.co/jiXCa0BP", + "expanded_url": "http://4sq.com/sGq7yI", + "display_url": "4sq.com/sGq7yI" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.217139, + -33.880699 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342732244008960", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1604226358/image_normal.jpg", + "profile_sidebar_fill_color": "010005", + "id": 25810069, + "profile_text_color": "4d4b43", + "followers_count": 254, + "profile_sidebar_border_color": "181a1e", + "id_str": "25810069", + "profile_background_color": "050302", + "listed_count": 9, + "utc_offset": 36000, + "statuses_count": 6525, + "description": ": 24, an Alcoholic future Doc, working in Intensive Care. Photographer wannabe, Traveller, & a Lifestyler... SAVING THE WORLD ONE PATIENT AT A TIME.", + "friends_count": 83, + "location": "Paddington, NSW, Australia", + "profile_link_color": "2fc2ef", + "profile_image_url": "http://a2.twimg.com/profile_images/1604226358/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/63452567/Arren_O.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/63452567/Arren_O.jpg", + "name": "Azza", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 38, + "screen_name": "brolf_az", + "notifications": null, + "url": null, + "created_at": "Sun Mar 22 12:05:41 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.880699, + 151.217139 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:40 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e05a437", + "_rev": "1-9364f83936562ec6af3e7928a46326de", + "oldid": "4eb384d33de67c51170000ad", + "contributors": null, + "truncated": false, + "text": "Biak lagi (@ Bandara Frans Kaisiepo (BIK)) http://t.co/aj0BcMTX", + "in_reply_to_status_id": null, + "id": 132342738854223870, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 43, + 63 + ], + "url": "http://t.co/aj0BcMTX", + "expanded_url": "http://4sq.com/tHCYt0", + "display_url": "4sq.com/tHCYt0" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 136.10678, + -1.190558 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342738854223872", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "profile_sidebar_fill_color": "c6f2c2", + "id": 59374541, + "profile_text_color": "171017", + "followers_count": 197, + "profile_sidebar_border_color": "171e2b", + "id_str": "59374541", + "profile_background_color": "fafafa", + "listed_count": 4, + "utc_offset": 32400, + "statuses_count": 8568, + "description": "I am Me and I won't change for anyone", + "friends_count": 197, + "location": "luphseekeer", + "profile_link_color": "e6281e", + "profile_image_url": "http://a3.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "name": "ratno pebrianto", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "darkseekeeRatno", + "notifications": null, + "url": "http://www.kaskus.us/member.php?u=529049", + "created_at": "Thu Jul 23 05:39:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Osaka", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -1.190558, + 136.10678 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:25:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e05b28b", + "_rev": "1-294aaa33dace575604118acc01db2021", + "oldid": "4eb384d43de67c51170000ae", + "favorited": false, + "in_reply_to_user_id": 14706898, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Saresa If you have a close male friend handy, have him over and tell your boy when he returns that this is his replacement. =]", + "created_at": "Fri Nov 04 06:25:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342036773879808", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12277483, + -37.85297819 + ] + }, + "id": 132342742259994620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 14706898, + "id_str": "14706898", + "screen_name": "Saresa", + "name": "Angela" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342036773879800, + "in_reply_to_screen_name": "Saresa", + "id_str": "132342742259994624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85297819, + 145.12277483 + ] + }, + "in_reply_to_user_id_str": "14706898", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12618, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05c10f", + "_rev": "1-d235e733540e1ad60294dc882386f0c5", + "oldid": "4eb384d73de67c51170000af", + "favorited": false, + "in_reply_to_user_id": 29994109, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@surfygurlx I still eat Veges, just don't like them haha \nAnd yes I do! Haha", + "created_at": "Fri Nov 04 06:25:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341651325726720", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.04089606, + -27.4375807 + ] + }, + "id": 132342753051942910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 29994109, + "id_str": "29994109", + "screen_name": "surfygurlx", + "name": "dani ella" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341651325726720, + "in_reply_to_screen_name": "surfygurlx", + "id_str": "132342753051942913", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.4375807, + 153.04089606 + ] + }, + "in_reply_to_user_id_str": "29994109", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618020787/image_normal.jpg", + "profile_sidebar_fill_color": "f5bad7", + "id": 259649986, + "profile_text_color": "73787a", + "followers_count": 46, + "profile_sidebar_border_color": "eb78ac", + "id_str": "259649986", + "profile_background_color": "ffe5ec", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 109, + "description": "Sup, i'm ashleigh.\r\nand i like stuff.", + "friends_count": 413, + "location": "Brisbane, Queensland", + "profile_link_color": "ff007b", + "profile_image_url": "http://a2.twimg.com/profile_images/1618020787/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Ashleigh Hickey", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "ashleighickey", + "notifications": null, + "url": "http://www.diam0ndsr4eva.tumblr.com", + "created_at": "Wed Mar 02 09:27:46 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05c982", + "_rev": "1-5c5f99ba88902c2beb60328bdd663c6a", + "oldid": "4eb384da3de67c51170000b0", + "favorited": false, + "in_reply_to_user_id": 80962865, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@FirmanDjaja hahaha... Yoi.. ;p abis ngopi nih di Myer.. Loe dimana?", + "created_at": "Fri Nov 04 06:25:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132338379592437761", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.208893, + -33.87014307 + ] + }, + "id": 132342764900847620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 80962865, + "id_str": "80962865", + "screen_name": "FirmanDjaja", + "name": "Firman Djaja" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132338379592437760, + "in_reply_to_screen_name": "FirmanDjaja", + "id_str": "132342764900847616", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87014307, + 151.208893 + ] + }, + "in_reply_to_user_id_str": "80962865", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610053939/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 108919596, + "profile_text_color": "333333", + "followers_count": 332, + "profile_sidebar_border_color": "C0DEED", + "id_str": "108919596", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 5030, + "description": "Singer - Songwriter - IG freak - iPhoneography - I'm me! I speak my mind.. Love me or Hate me... I don't give a d*mn!", + "friends_count": 300, + "location": "Aussie", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1610053939/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/70233933/design_andie.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/70233933/design_andie.jpg", + "name": "Andie Soetaman", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 363, + "screen_name": "AndieSoetaman", + "notifications": null, + "url": "http://www.youtube.com/255andie", + "created_at": "Wed Jan 27 12:17:14 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05cc0a", + "_rev": "1-48221df9385ece16268f8c54e806f1a8", + "oldid": "4eb384db3de67c51170000b1", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Friday. About to leave work. Keen for doing something, just not sure what. @john_augustus should think about that Aussie proposal #movehere", + "created_at": "Fri Nov 04 06:25:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20396231, + -33.86578974 + ] + }, + "id": 132342772320579580, + "entities": { + "user_mentions": [ + { + "indices": [ + 75, + 89 + ], + "id": 311831071, + "id_str": "311831071", + "screen_name": "john_augustus", + "name": "John Denson" + } + ], + "hashtags": [ + { + "indices": [ + 130, + 139 + ], + "text": "movehere" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342772320579584", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86578974, + 151.20396231 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1331440448/IMG_1584_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 80164745, + "profile_text_color": "333333", + "followers_count": 41, + "profile_sidebar_border_color": "eeeeee", + "id_str": "80164745", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 38, + "description": "ATL native, new Sydneysider, world-class jet-setter, thrill seeker, hot mess", + "friends_count": 36, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1331440448/IMG_1584_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Pinij T. NaLampoon", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "pnalampoon", + "notifications": null, + "url": null, + "created_at": "Tue Oct 06 00:10:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05d1ea", + "_rev": "1-ff00587de376a6e054ba1d06b7e71492", + "oldid": "4eb384df3de67c51170000b2", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Feel like I've just stepped off a 16 hr flight. 2 hours sleep last night... Y a w n", + "created_at": "Fri Nov 04 06:25:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.03287066, + -33.91946216 + ] + }, + "id": 132342786610569220, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342786610569216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.91946216, + 151.03287066 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1498317231/image_normal.jpg", + "profile_sidebar_fill_color": "efe5cb", + "id": 22442979, + "profile_text_color": "6d5b55", + "followers_count": 274, + "profile_sidebar_border_color": "efe5cb", + "id_str": "22442979", + "profile_background_color": "457679", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 3615, + "description": "Newspaper lover. Kingdom thinker. Avid collector of random information.", + "friends_count": 268, + "location": "Sydney", + "profile_link_color": "457679", + "profile_image_url": "http://a2.twimg.com/profile_images/1498317231/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/248960407/vintage-romance.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/248960407/vintage-romance.jpg", + "name": "Rosalina Menton", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 96, + "screen_name": "rosementon", + "notifications": null, + "url": "http://facebook.com/rosementon", + "created_at": "Mon Mar 02 03:02:50 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05d6b4", + "_rev": "1-40e7a671e36f7e4bfccaeccfb51fe69e", + "oldid": "4eb384df3de67c51170000b3", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "2 exams down 3 to go!", + "created_at": "Fri Nov 04 06:25:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.3146124, + -38.20497486 + ] + }, + "id": 132342788791607300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342788791607297", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.20497486, + 144.3146124 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610634743/299534_2393864320552_1069230695_2690280_1096234949_n_normal.jpg", + "profile_sidebar_fill_color": "1B5761", + "id": 21840108, + "profile_text_color": "000000", + "followers_count": 21, + "profile_sidebar_border_color": "89ABB5", + "id_str": "21840108", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 139, + "description": "AGE:19\\STUDENT: @ Uni \\LOVES: Summer,Surfing, Cycling,Surf Life Saving,Wye River\\BIRTHDATE: 21st Nov\\HATES: Winter", + "friends_count": 12, + "location": "Geelong", + "profile_link_color": "89ABB5", + "profile_image_url": "http://a3.twimg.com/profile_images/1610634743/299534_2393864320552_1069230695_2690280_1096234949_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/354277767/nvgreeninked.br.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/354277767/nvgreeninked.br.jpg", + "name": "Thomas Szmidel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "tszmidel", + "notifications": null, + "url": "http://tszmidel.blogspot.com", + "created_at": "Wed Feb 25 05:30:01 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05d872", + "_rev": "1-7fcb1eae2855b029183f97ea9af08bb2", + "oldid": "4eb384e23de67c51170000b4", + "favorited": false, + "in_reply_to_user_id": 73950531, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mxdan316 you'll have the nordiques back in no time, #coyotes fans are just pathetic, more Canadian teams the better", + "created_at": "Fri Nov 04 06:25:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132326038637256705", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.08292269, + -26.40942227 + ] + }, + "id": 132342798908264450, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 73950531, + "id_str": "73950531", + "screen_name": "mxdan316", + "name": "Daniel Blanchet" + } + ], + "hashtags": [ + { + "indices": [ + 53, + 61 + ], + "text": "coyotes" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132326038637256700, + "in_reply_to_screen_name": "mxdan316", + "id_str": "132342798908264448", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -26.40942227, + 153.08292269 + ] + }, + "in_reply_to_user_id_str": "73950531", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1531655013/image_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 64289290, + "profile_text_color": "333333", + "followers_count": 123, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "64289290", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": -21600, + "statuses_count": 1156, + "description": "", + "friends_count": 359, + "location": "winnipeg", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1531655013/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "name": "Ryan Barnard", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "barnardnt", + "notifications": null, + "url": null, + "created_at": "Mon Aug 10 00:10:11 +0000 2009", + "contributors_enabled": false, + "time_zone": "Central Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05e068", + "_rev": "1-6ff3816b3afec4ad01d98c6e3b6df96d", + "oldid": "4eb384e53de67c51170000b5", + "favorited": false, + "in_reply_to_user_id": 16572521, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@VoidMonk@KateKendall Exactly:72% people bored w. daily deals because the are generic not niched, & emailed not served in places of interest", + "created_at": "Fri Nov 04 06:26:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.27847784, + -36.76686823 + ] + }, + "id": 132342814477520900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "VoidMonk", + "id_str": "132342814477520898", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.76686823, + 144.27847784 + ] + }, + "in_reply_to_user_id_str": "16572521", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607512495/IMG_0598_normal.JPG", + "profile_sidebar_fill_color": "ffffff", + "id": 211828270, + "profile_text_color": "333333", + "followers_count": 19, + "profile_sidebar_border_color": "eeeeee", + "id_str": "211828270", + "profile_background_color": "b4cade", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 131, + "description": "Starting up a social movie network", + "friends_count": 42, + "location": "Melbourne, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/1607512495/IMG_0598_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Joss Wyss", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "josswyss", + "notifications": null, + "url": "http://www.movr.com", + "created_at": "Thu Nov 04 11:23:37 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e05e785", + "_rev": "1-8d714083670720d7f2ac84675e878228", + "oldid": "4eb384e83de67c51170000b6", + "contributors": null, + "truncated": false, + "text": "Post work drink... (@ Melbourne Public) http://t.co/839KQ3Mf", + "in_reply_to_status_id": null, + "id": 132342826435493890, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 40, + 60 + ], + "url": "http://t.co/839KQ3Mf", + "expanded_url": "http://4sq.com/tG38Ly", + "display_url": "4sq.com/tG38Ly" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.951428, + -37.824402 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342826435493888", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1436517712/bk_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 30182847, + "profile_text_color": "333333", + "followers_count": 206, + "profile_sidebar_border_color": "C0DEED", + "id_str": "30182847", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1600, + "description": "Passion for hotels, fine food,wine and coffee. I do the tweets for @melbournehilton, views are my own and do not reflect the company", + "friends_count": 491, + "location": "Melbourne VIC Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1436517712/bk_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Ben Kershaw", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "benkershaw", + "notifications": null, + "url": "http://www.benkershaw.com", + "created_at": "Fri Apr 10 07:49:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.824402, + 144.951428 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e05f679", + "_rev": "1-69b9f24167ae10a40278a7c3c39c32ed", + "oldid": "4eb384ef3de67c51170000b7", + "contributors": null, + "truncated": false, + "text": "I just ousted Ryan as the mayor of McDonald's on @foursquare! http://t.co/KDpDk12R", + "in_reply_to_status_id": null, + "id": 132342853715238910, + "entities": { + "user_mentions": [ + { + "indices": [ + 49, + 60 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 62, + 82 + ], + "url": "http://t.co/KDpDk12R", + "expanded_url": "http://4sq.com/8r97Lk", + "display_url": "4sq.com/8r97Lk" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97766733, + -37.86681179 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342853715238913", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1401916707/adam-facebook-2011-06-06_v3_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 319039545, + "profile_text_color": "333333", + "followers_count": 227, + "profile_sidebar_border_color": "C0DEED", + "id_str": "319039545", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1868, + "description": "Harping Melbourne. Walking Real Food. Eating Political Intrigue. Disgorging Pinot Noir. Recycling True Crime. Chasing Websites. Views are my own.", + "friends_count": 632, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1401916707/adam-facebook-2011-06-06_v3_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Adam Fletcher", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 236, + "screen_name": "fletchadam", + "notifications": null, + "url": "http://twitter.com/fletchadam", + "created_at": "Fri Jun 17 13:26:54 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.86681179, + 144.97766733 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0604c7", + "_rev": "1-b90b30dc847ca8a59764b8818a120998", + "oldid": "4eb384ef3de67c51170000b8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Temp 24.1 °C|Trend -0.4 °C|Wind 6.5 kph ESE|Rain 0.0 mm|Pressure 1015.7 mb|Forecast Fine, possible showers| #sydneyweather #fb", + "created_at": "Fri Nov 04 06:26:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.12194444, + -33.93722222 + ] + }, + "id": 132342856248594430, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 108, + 122 + ], + "text": "sydneyweather" + }, + { + "indices": [ + 123, + 126 + ], + "text": "fb" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342856248594432", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93722222, + 151.12194444 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/354940552/img_0691_20090416_1384541584_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 64344378, + "profile_text_color": "666666", + "followers_count": 46, + "profile_sidebar_border_color": "181A1E", + "id_str": "64344378", + "profile_background_color": "1A1B1F", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 6543, + "description": "Welcome to Bardwell Park Weather Station. Which is located in Sydney Australia.", + "friends_count": 17, + "location": "Bardwell Park", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/354940552/img_0691_20090416_1384541584_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Bardwell Park Wx ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "BWPWX", + "notifications": null, + "url": "http://www.sydneyweather.info", + "created_at": "Mon Aug 10 05:41:26 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e060e9b", + "_rev": "1-902f3d1b330c850a729c54beb1fe9f2e", + "oldid": "4eb384f03de67c51170000b9", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "My mom is making basbousa which is a Middle Eastern Semolina cake and I can't wait to eat it!!", + "created_at": "Fri Nov 04 06:26:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 143.89598407, + -37.5674291 + ] + }, + "id": 132342859994120200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342859994120192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.5674291, + 143.89598407 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1605029401/image_normal.jpg", + "profile_sidebar_fill_color": "990040", + "id": 73876759, + "profile_text_color": "00E9F9", + "followers_count": 184, + "profile_sidebar_border_color": "001824", + "id_str": "73876759", + "profile_background_color": "998888", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2598, + "description": "I'm a Kuwaiti-American who write lots of pointless crap. Care to follow? I'm a proud iGeek too. ", + "friends_count": 484, + "location": "Ballarat, Victoria, Australia", + "profile_link_color": "00E6A2", + "profile_image_url": "http://a2.twimg.com/profile_images/1605029401/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/313447650/xee3aa5fd8ebc9be91ba9d8343f8c310.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/313447650/xee3aa5fd8ebc9be91ba9d8343f8c310.png", + "name": "Nawal A", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "softail23", + "notifications": null, + "url": "http://www.arabamericaninaustralia.blogspot.com", + "created_at": "Sun Sep 13 12:51:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e061569", + "_rev": "1-b5b9a10d11ef08f187986406ae2dcfe3", + "oldid": "4eb384f63de67c51170000ba", + "contributors": null, + "truncated": false, + "text": "I know the work I just can't put my finger on it. http://t.co/NH1Knpgh", + "in_reply_to_status_id": null, + "id": 132342882777579520, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 50, + 70 + ], + "url": "http://t.co/NH1Knpgh", + "expanded_url": "http://yfrog.com/h0pw4stj", + "display_url": "yfrog.com/h0pw4stj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96606, + -37.813374 + ] + }, + "source": "<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342882777579520", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1241951017/CRW_8977_normal.PNG", + "profile_sidebar_fill_color": "bf1ce8", + "id": 138392330, + "profile_text_color": "002bff", + "followers_count": 160, + "profile_sidebar_border_color": "002bff", + "id_str": "138392330", + "profile_background_color": "FF6699", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 4631, + "description": "Volunteer at 3INR in Heidelberg Victoria, never without my digital compact. Also my interest vary hence the lists.", + "friends_count": 284, + "location": "Melbourne Vic Australia", + "profile_link_color": "360436", + "profile_image_url": "http://a1.twimg.com/profile_images/1241951017/CRW_8977_normal.PNG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/202138578/IMG_8668.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/202138578/IMG_8668.JPG", + "name": "Struan McGregor", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 110, + "screen_name": "StruanMcGregor", + "notifications": null, + "url": null, + "created_at": "Thu Apr 29 12:27:23 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.813374, + 144.96606 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:16 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e061d81", + "_rev": "1-46f5842e2a2b63b66b33ca263fe535ec", + "oldid": "4eb384fb3de67c51170000bb", + "contributors": null, + "truncated": false, + "text": "Nap before gym. ZzZzZZzz (@ Anthony's Kingdom) http://t.co/SeM3RMft", + "in_reply_to_status_id": null, + "id": 132342903598104580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/SeM3RMft", + "expanded_url": "http://4sq.com/snJeRs", + "display_url": "4sq.com/snJeRs" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19588, + -33.928921 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342903598104576", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1516370307/325675128_normal.jpg", + "profile_sidebar_fill_color": "c2c2c2", + "id": 176512283, + "profile_text_color": "000000", + "followers_count": 227, + "profile_sidebar_border_color": "000000", + "id_str": "176512283", + "profile_background_color": "7a757a", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 7605, + "description": "FILIPINO Sydney. Est.92 ----\r\n\r\nSneakers. | Fashion. | Fastfood. | Music. | Money. | MyCountry.\n\r\nhttp://facebook.com/asengco", + "friends_count": 428, + "location": "Sydney", + "profile_link_color": "616161", + "profile_image_url": "http://a2.twimg.com/profile_images/1516370307/325675128_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243872280/New_York_Skyline_night-left-ccby-Diliff.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/243872280/New_York_Skyline_night-left-ccby-Diliff.jpg", + "name": "Anthony Sengco", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 100, + "screen_name": "MrSengco", + "notifications": null, + "url": "http://mrsengco.tumblr.com", + "created_at": "Mon Aug 09 18:55:52 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.928921, + 151.19588 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:21 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e06264d", + "_rev": "1-9f31e0803c4f4c534c5f6cc114220edf", + "oldid": "4eb384fb3de67c51170000bc", + "contributors": null, + "truncated": false, + "text": "I just ousted Kenny N. as the mayor of Hacket Hall Cafe on @foursquare! http://t.co/xqP8r9lO", + "in_reply_to_status_id": null, + "id": 132342903736516600, + "entities": { + "user_mentions": [ + { + "indices": [ + 59, + 70 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/xqP8r9lO", + "expanded_url": "http://4sq.com/c7Lk2y", + "display_url": "4sq.com/c7Lk2y" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.81822, + -31.976477 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342903736516608", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1172652563/DSCF0931__resized__normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 52002337, + "profile_text_color": "030303", + "followers_count": 414, + "profile_sidebar_border_color": "C0DEED", + "id_str": "52002337", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 28800, + "statuses_count": 8107, + "description": "Author, Blogger, Fashion + Technology Lover and #FABULOUSRED 25 03 92", + "friends_count": 471, + "location": "Perth, Australia", + "profile_link_color": "fa0808", + "profile_image_url": "http://a3.twimg.com/profile_images/1172652563/DSCF0931__resized__normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/155486703/DSCF0931__resized_.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/155486703/DSCF0931__resized_.JPG", + "name": "Leon Ha", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 94, + "screen_name": "Fabulous_Red", + "notifications": null, + "url": "http://leonha92.wordpress.com", + "created_at": "Mon Jun 29 08:37:35 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.976477, + 115.81822 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:21 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0627e6", + "_rev": "1-2f6b71eafbf6d679618f90a14eb82b07", + "oldid": "4eb384fc3de67c51170000bd", + "contributors": null, + "truncated": false, + "text": "Best caramel slice! @ Miss Mauds Cannington http://t.co/7rgr2Yui", + "in_reply_to_status_id": null, + "id": 132342911042977800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 46, + 66 + ], + "url": "http://t.co/7rgr2Yui", + "expanded_url": "http://instagr.am/p/SqOE7/", + "display_url": "instagr.am/p/SqOE7/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9387, + -32.02067 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132342911042977792", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1436508626/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 293455499, + "profile_text_color": "333333", + "followers_count": 27, + "profile_sidebar_border_color": "C0DEED", + "id_str": "293455499", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 305, + "description": " “Learn from yesterday, live for today, hope for tomorrow.”", + "friends_count": 90, + "location": "Perth, W.A.", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1436508626/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Phoebe Chase", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "PMadisonChase", + "notifications": null, + "url": null, + "created_at": "Thu May 05 11:32:08 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.02067, + 115.9387 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:23 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e06374c", + "_rev": "1-d332f3c38d729abcb4a0635353f1317e", + "oldid": "4eb385093de67c51170000be", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Saving petrol by putting the car in neutral and rolling down the hill #epicwinning", + "created_at": "Fri Nov 04 06:26:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.04205347, + -27.43514121 + ] + }, + "id": 132342964893646850, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 70, + 82 + ], + "text": "epicwinning" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342964893646848", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.43514121, + 153.04205347 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618020787/image_normal.jpg", + "profile_sidebar_fill_color": "f5bad7", + "id": 259649986, + "profile_text_color": "73787a", + "followers_count": 46, + "profile_sidebar_border_color": "eb78ac", + "id_str": "259649986", + "profile_background_color": "ffe5ec", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 110, + "description": "Sup, i'm ashleigh.\r\nand i like stuff.", + "friends_count": 413, + "location": "Brisbane, Queensland", + "profile_link_color": "ff007b", + "profile_image_url": "http://a2.twimg.com/profile_images/1618020787/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Ashleigh Hickey", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "ashleighickey", + "notifications": null, + "url": "http://www.diam0ndsr4eva.tumblr.com", + "created_at": "Wed Mar 02 09:27:46 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e064382", + "_rev": "1-cee378250732d18a99edc4a2d4b37084", + "oldid": "4eb3850c3de67c51170000bf", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Have not seen @TheRealParamjot at waite. #wannabenerd #squid", + "created_at": "Fri Nov 04 06:26:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6440845, + -34.9404359 + ] + }, + "id": 132342978369961980, + "entities": { + "user_mentions": [ + { + "indices": [ + 14, + 30 + ], + "id": 60250339, + "id_str": "60250339", + "screen_name": "TheRealParamjot", + "name": "Paramjot Grewal" + } + ], + "hashtags": [ + { + "indices": [ + 41, + 53 + ], + "text": "wannabenerd" + }, + { + "indices": [ + 54, + 60 + ], + "text": "squid" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132342978369961984", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.9404359, + 138.6440845 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1318367583/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 23272031, + "profile_text_color": "333333", + "followers_count": 48, + "profile_sidebar_border_color": "C0DEED", + "id_str": "23272031", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 34200, + "statuses_count": 383, + "description": "", + "friends_count": 295, + "location": "iPhone: -34.937466,138.650803", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1318367583/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Toby Nihill", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Toby_Roby", + "notifications": null, + "url": null, + "created_at": "Sun Mar 08 03:39:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e064d72", + "_rev": "1-870a2b649573a625afc68723cc46bd0a", + "oldid": "4eb385123de67c51170000c0", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#FollowFriday the homos ;D @sl_trev @_jabr @henros88 @markrobbo @jasoncaddy @simonhunter88 @Tommy__M @MitchRoberts89 @arron_james #FF", + "created_at": "Fri Nov 04 06:26:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99292646, + -37.83443214 + ] + }, + "id": 132343002831126530, + "entities": { + "user_mentions": [ + { + "indices": [ + 27, + 35 + ], + "id": 22700192, + "id_str": "22700192", + "screen_name": "sl_trev", + "name": "Sam Trevethan" + }, + { + "indices": [ + 36, + 42 + ], + "id": 34821865, + "id_str": "34821865", + "screen_name": "_jabr", + "name": "Jake Brewer" + }, + { + "indices": [ + 43, + 52 + ], + "id": 21654774, + "id_str": "21654774", + "screen_name": "henros88", + "name": "Henry Nguyen" + }, + { + "indices": [ + 53, + 63 + ], + "id": 18420929, + "id_str": "18420929", + "screen_name": "markrobbo", + "name": "markrobbo" + }, + { + "indices": [ + 64, + 75 + ], + "id": 119328074, + "id_str": "119328074", + "screen_name": "jasoncaddy", + "name": "Jason Caddy" + }, + { + "indices": [ + 76, + 90 + ], + "id": 23370624, + "id_str": "23370624", + "screen_name": "simonhunter88", + "name": "Simon Hunter " + }, + { + "indices": [ + 91, + 100 + ], + "id": 38308112, + "id_str": "38308112", + "screen_name": "Tommy__M", + "name": "Tom Thomas ♔" + }, + { + "indices": [ + 101, + 116 + ], + "id": 152127667, + "id_str": "152127667", + "screen_name": "MitchRoberts89", + "name": "Mitch Roberts" + }, + { + "indices": [ + 117, + 129 + ], + "id": 25784133, + "id_str": "25784133", + "screen_name": "arron_james", + "name": "Arron James" + } + ], + "hashtags": [ + { + "indices": [ + 0, + 13 + ], + "text": "FollowFriday" + }, + { + "indices": [ + 130, + 133 + ], + "text": "FF" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343002831126528", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.83443214, + 144.99292646 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1296, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26035, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0657b3", + "_rev": "1-e1791e12611b3765050ebf2b4d4f2a87", + "oldid": "4eb385183de67c51170000c1", + "contributors": null, + "truncated": false, + "text": "@emmok haha http://t.co/oltBgmHF", + "in_reply_to_status_id": 132013270847602690, + "id": 132343024494706690, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 181115591, + "id_str": "181115591", + "screen_name": "emmok", + "name": "Katherine Emerton" + } + ], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYtR5OCAAEEYFc.jpg", + "expanded_url": "http://twitter.com/SamMcrobert/status/132343024494706688/photo/1", + "display_url": "pic.twitter.com/oltBgmHF", + "url": "http://t.co/oltBgmHF", + "sizes": { + "large": { + "h": 1024, + "w": 768, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132343024494706689", + "indices": [ + 12, + 32 + ], + "type": "photo", + "id": 132343024494706690, + "media_url": "http://p.twimg.com/AdYtR5OCAAEEYFc.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.33893603, + -28.79664099 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "emmok", + "in_reply_to_user_id": 181115591, + "retweet_count": 0, + "id_str": "132343024494706688", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 399358929, + "profile_text_color": "333333", + "followers_count": 2, + "profile_sidebar_border_color": "C0DEED", + "id_str": "399358929", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 2, + "description": null, + "friends_count": 36, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sam Mcrobert ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "SamMcrobert", + "notifications": null, + "url": null, + "created_at": "Thu Oct 27 11:34:48 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.79664099, + 153.33893603 + ] + }, + "in_reply_to_user_id_str": "181115591", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:51 +0000 2011", + "in_reply_to_status_id_str": "132013270847602688", + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e066091", + "_rev": "1-4b33913168488d7ed83ce6b8b89ac720", + "oldid": "4eb3851d3de67c51170000c2", + "contributors": null, + "truncated": false, + "text": "It's the not healthy alternative. Kids are loving it. (@ McDonald's) [pic]: http://t.co/PSi7tUlZ", + "in_reply_to_status_id": null, + "id": 132343048704241660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 76, + 96 + ], + "url": "http://t.co/PSi7tUlZ", + "expanded_url": "http://4sq.com/s8oBkw", + "display_url": "4sq.com/s8oBkw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97766733, + -37.86681179 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343048704241664", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1401916707/adam-facebook-2011-06-06_v3_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 319039545, + "profile_text_color": "333333", + "followers_count": 227, + "profile_sidebar_border_color": "C0DEED", + "id_str": "319039545", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1869, + "description": "Harping Melbourne. Walking Real Food. Eating Political Intrigue. Disgorging Pinot Noir. Recycling True Crime. Chasing Websites. Views are my own.", + "friends_count": 632, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1401916707/adam-facebook-2011-06-06_v3_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Adam Fletcher", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 236, + "screen_name": "fletchadam", + "notifications": null, + "url": "http://twitter.com/fletchadam", + "created_at": "Fri Jun 17 13:26:54 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.86681179, + 144.97766733 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:26:56 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e066dcf", + "_rev": "1-df68b6da15ecc6f670af34b7fc995bd8", + "oldid": "4eb3851f3de67c51170000c3", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#verifypiri #verifypiri #verifypiri #verifypiri #verifypiri #verifypiri #verifypiri #verifypiri #verifypiri #verifypiri #verifypiri DoItNow!", + "created_at": "Fri Nov 04 06:26:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95921586, + -37.72060769 + ] + }, + "id": 132343055251550200, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 11 + ], + "text": "verifypiri" + }, + { + "indices": [ + 12, + 23 + ], + "text": "verifypiri" + }, + { + "indices": [ + 24, + 35 + ], + "text": "verifypiri" + }, + { + "indices": [ + 36, + 47 + ], + "text": "verifypiri" + }, + { + "indices": [ + 48, + 59 + ], + "text": "verifypiri" + }, + { + "indices": [ + 60, + 71 + ], + "text": "verifypiri" + }, + { + "indices": [ + 72, + 83 + ], + "text": "verifypiri" + }, + { + "indices": [ + 84, + 95 + ], + "text": "verifypiri" + }, + { + "indices": [ + 96, + 107 + ], + "text": "verifypiri" + }, + { + "indices": [ + 108, + 119 + ], + "text": "verifypiri" + }, + { + "indices": [ + 120, + 131 + ], + "text": "verifypiri" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343055251550208", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.72060769, + 144.95921586 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619372586/snapshot__6__normal.jpg", + "profile_sidebar_fill_color": "12c0ff", + "id": 358652134, + "profile_text_color": "ff0091", + "followers_count": 155, + "profile_sidebar_border_color": "080106", + "id_str": "358652134", + "profile_background_color": "00d9ff", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 115, + "description": "I LOVE CODY SIMPSON, DAN CARTER AND ZAC GUILDFORD !\r\ntumblr - www.immaasianchick.tumblr.com", + "friends_count": 825, + "location": "Melbourne, Australia", + "profile_link_color": "4f00fa", + "profile_image_url": "http://a2.twimg.com/profile_images/1619372586/snapshot__6__normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/356907336/D.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/356907336/D.jpg", + "name": "Mykah Kristine Lopez", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 56, + "screen_name": "Mykah_Lopez", + "notifications": null, + "url": "http://facebook.com/MykahLopez", + "created_at": "Sat Aug 20 08:03:49 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e066e49", + "_rev": "1-7cbd03211a77398d1290ac1c8eaf55de", + "oldid": "4eb385243de67c51170000c4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "TVs boring now...What do I dooooo~", + "created_at": "Fri Nov 04 06:27:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132343078269878270, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343078269878272", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20033, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e067b34", + "_rev": "1-fc57d07b8fa3f8d9812ea6caddfa8130", + "oldid": "4eb385263de67c51170000c5", + "favorited": false, + "in_reply_to_user_id": 16076062, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@__mares__ See you when you next surface. Hope you antiperspirant survives!", + "created_at": "Fri Nov 04 06:27:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342703722725376", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.1227751, + -37.85297881 + ] + }, + "id": 132343084066414600, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 16076062, + "id_str": "16076062", + "screen_name": "__mares__", + "name": "♥.m.a.r.y.♥" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342703722725380, + "in_reply_to_screen_name": "__mares__", + "id_str": "132343084066414592", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85297881, + 145.1227751 + ] + }, + "in_reply_to_user_id_str": "16076062", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12619, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e067c69", + "_rev": "1-37216ec9b71893a3ade75083aaff6af4", + "oldid": "4eb3852a3de67c51170000c6", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Excited for @SupanovaExpo @Evy_Lynch and #Stargate peeps! :)", + "created_at": "Fri Nov 04 06:27:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0803522, + -27.6828293 + ] + }, + "id": 132343099740528640, + "entities": { + "user_mentions": [ + { + "indices": [ + 12, + 25 + ], + "id": 24891250, + "id_str": "24891250", + "screen_name": "SupanovaExpo", + "name": "Supanova Expo" + }, + { + "indices": [ + 26, + 36 + ], + "id": 198830228, + "id_str": "198830228", + "screen_name": "Evy_Lynch", + "name": "Evanna Lynch" + } + ], + "hashtags": [ + { + "indices": [ + 41, + 50 + ], + "text": "Stargate" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343099740528640", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.6828293, + 153.0803522 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1272067994/197762_10150127821503857_523373856_6681686_6684949_n_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 23923626, + "profile_text_color": "3D1957", + "followers_count": 24, + "profile_sidebar_border_color": "65B0DA", + "id_str": "23923626", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 3627, + "description": "20 & working on a languages and linguistics degree at Griffith Uni", + "friends_count": 88, + "location": "Brisbane, Australia", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1272067994/197762_10150127821503857_523373856_6681686_6684949_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/136907244/dh_poster_high_res.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/136907244/dh_poster_high_res.jpg", + "name": "Victoria Lingard", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "bebeko", + "notifications": null, + "url": null, + "created_at": "Thu Mar 12 09:05:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0683fe", + "_rev": "1-1efeced5bd253fb9424a9837b90a8cab", + "oldid": "4eb3854c3de67c51170000c7", + "contributors": null, + "truncated": false, + "text": "I'm at Reed Elsevier Australia (Level 1, 475 Victoria ave, Help St, Chatswood) http://t.co/amsP9Ajs", + "in_reply_to_status_id": null, + "id": 132343245568094200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 79, + 99 + ], + "url": "http://t.co/amsP9Ajs", + "expanded_url": "http://4sq.com/t2vo4Y", + "display_url": "4sq.com/t2vo4Y" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.179037, + -33.79709959 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343245568094208", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/884870792/balzan_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 28297454, + "profile_text_color": "333333", + "followers_count": 15, + "profile_sidebar_border_color": "C0DEED", + "id_str": "28297454", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 196, + "description": "", + "friends_count": 34, + "location": "iPhone: -34.037231,151.091110", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/884870792/balzan_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Adam Balzan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Balzan", + "notifications": null, + "url": "http://Balzansblog.com/blog", + "created_at": "Thu Apr 02 07:02:00 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.79709959, + 151.179037 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:27:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e068853", + "_rev": "1-604c6ca7f2bf7a9a3d41f272b263b6c2", + "oldid": "4eb3855c3de67c51170000c8", + "favorited": false, + "in_reply_to_user_id": 319990900, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@theDeadPegasus hahaha I learned so much about the honey badger XD", + "created_at": "Fri Nov 04 06:27:59 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340337392877568", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.20254601, + -35.37419379 + ] + }, + "id": 132343312261726200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 319990900, + "id_str": "319990900", + "screen_name": "theDeadPegasus", + "name": "Fathermucker Revenga" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340337392877570, + "in_reply_to_screen_name": "theDeadPegasus", + "id_str": "132343312261726208", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.37419379, + 149.20254601 + ] + }, + "in_reply_to_user_id_str": "319990900", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1384171152/image_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 252963614, + "profile_text_color": "3C3940", + "followers_count": 316, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "252963614", + "profile_background_color": "0099B9", + "listed_count": 12, + "utc_offset": null, + "statuses_count": 6262, + "description": "killjoy, Stacker and yeah i drink juice when i'm killing cause its fukken delicious. i like other stuff too, i'll follow back if you're not annoying", + "friends_count": 476, + "location": "Australia", + "profile_link_color": "0099B9", + "profile_image_url": "http://a2.twimg.com/profile_images/1384171152/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/304542094/himynameis.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/304542094/himynameis.jpg", + "name": "the unicorn kid", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 95, + "screen_name": "xX_RIANNA_Xx", + "notifications": null, + "url": "http://www.justletmebreakthisawkwardsilence.tumblr.com", + "created_at": "Wed Feb 16 08:23:42 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e069713", + "_rev": "1-c8d6e7d8d95dfb9dc11d684d6ea868ee", + "oldid": "4eb385683de67c51170000c9", + "contributors": null, + "truncated": false, + "text": "I'm at The Lucky Catch http://t.co/oBQfi0tM", + "in_reply_to_status_id": null, + "id": 132343362819866620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 23, + 43 + ], + "url": "http://t.co/oBQfi0tM", + "expanded_url": "http://4sq.com/uC4bDS", + "display_url": "4sq.com/uC4bDS" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.965367, + -38.332911 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343362819866624", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1359602428/image_normal.jpg", + "profile_sidebar_fill_color": "D5DED9", + "id": 86905084, + "profile_text_color": "948C75", + "followers_count": 769, + "profile_sidebar_border_color": "7A6A53", + "id_str": "86905084", + "profile_background_color": "D9CEB2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 2902, + "description": "Affectionately known as 'Hocus Pocus', Modern day 'Medicine Woman', Master Trainer, Facilitator, Speaker, Writer; Speciality coffee lover!", + "friends_count": 799, + "location": "Melbourne", + "profile_link_color": "99B2B7", + "profile_image_url": "http://a2.twimg.com/profile_images/1359602428/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "name": "Vicky Gardner", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "VickyGardner", + "notifications": null, + "url": "http://www.socialoomph.com/profiles/vickygardner", + "created_at": "Mon Nov 02 09:06:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.332911, + 144.965367 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:28:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e06a58a", + "_rev": "1-bf81bbb45dfd5a5a6aa116a86f6c84dd", + "oldid": "4eb385783de67c51170000ca", + "favorited": false, + "in_reply_to_user_id": 47905782, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tarabxx lmaaao it's on foxtel so il watching for some readonc", + "created_at": "Fri Nov 04 06:28:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343233991815168", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33342868, + -38.03079324 + ] + }, + "id": 132343426980122620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 47905782, + "id_str": "47905782", + "screen_name": "tarabxx", + "name": "Tara Bell" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343233991815170, + "in_reply_to_screen_name": "tarabxx", + "id_str": "132343426980122624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03079324, + 145.33342868 + ] + }, + "in_reply_to_user_id_str": "47905782", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2629, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06a99e", + "_rev": "1-ae08b74a7c91a19a6a9b848fbaf77577", + "oldid": "4eb3857a3de67c51170000cb", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Walked along with a group of four emus for about 1km at the prom. Also saw about 30 roos, a wombat and a snake. Love this place", + "created_at": "Fri Nov 04 06:28:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.31869022, + -39.03243087 + ] + }, + "id": 132343437948227580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343437948227584", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -39.03243087, + 146.31869022 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1568234245/267630_10150225537227032_571472031_7733755_3071464_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 27776492, + "profile_text_color": "333333", + "followers_count": 261, + "profile_sidebar_border_color": "c0deed", + "id_str": "27776492", + "profile_background_color": "9E7C5A", + "listed_count": 17, + "utc_offset": 3600, + "statuses_count": 2330, + "description": "I love building things, especially with HTML5, JavaScript, NodeJS, PHP and the Facebook platform. Working with @TheseDaysBE. Moving to Melbourne in October.", + "friends_count": 234, + "location": "Antwerp, Belgium", + "profile_link_color": "2276BB", + "profile_image_url": "http://a3.twimg.com/profile_images/1568234245/267630_10150225537227032_571472031_7733755_3071464_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/69957364/x7318cb855f0d00445a36956dde061f9.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/69957364/x7318cb855f0d00445a36956dde061f9.png", + "name": "Keegan Street", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "kstre", + "notifications": null, + "url": "http://kstre.com", + "created_at": "Tue Mar 31 01:02:59 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brussels", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06afaf", + "_rev": "1-94d2e6a200e59ab2c26e1c9ea9643e4d", + "oldid": "4eb3857c3de67c51170000cc", + "contributors": null, + "truncated": false, + "text": "I'm at IGA Plus Liquor (11 Bridge St., Apsley St., Penshurst) http://t.co/dFn5kaJ2", + "in_reply_to_status_id": null, + "id": 132343446760456200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 62, + 82 + ], + "url": "http://t.co/dFn5kaJ2", + "expanded_url": "http://4sq.com/tWroNx", + "display_url": "4sq.com/tWroNx" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0896679, + -33.965696 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343446760456192", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592354506/lKJ6c87O_normal", + "profile_sidebar_fill_color": "272727", + "id": 143009202, + "profile_text_color": "897193", + "followers_count": 556, + "profile_sidebar_border_color": "272727", + "id_str": "143009202", + "profile_background_color": "000000", + "listed_count": 35, + "utc_offset": 36000, + "statuses_count": 16264, + "description": "Food and lifestyle blogger. She is the little lioness. http://littlelioness.net/about/", + "friends_count": 808, + "location": "Sydney, Australia", + "profile_link_color": "B3617B", + "profile_image_url": "http://a0.twimg.com/profile_images/1592354506/lKJ6c87O_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/226237047/x0bd8b7ba2dcdc404a7dd9d47b19ef93.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/226237047/x0bd8b7ba2dcdc404a7dd9d47b19ef93.jpg", + "name": "Fiona. littlelioness", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 39, + "screen_name": "phonakins", + "notifications": null, + "url": "http://littlelioness.net", + "created_at": "Wed May 12 10:00:25 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.965696, + 151.0896679 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:28:31 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e06b036", + "_rev": "1-029494089827060f038d8694931b6e91", + "oldid": "4eb3857d3de67c51170000cd", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Wher to go for predrinks for Kings of Leon at old Acer. Parra Rd pubs should do a concert bus", + "created_at": "Fri Nov 04 06:28:32 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19965513, + -33.91806526 + ] + }, + "id": 132343452468912130, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343452468912129", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.91806526, + 151.19965513 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/67387513/avatar-nocleanfeed_normal.png", + "profile_sidebar_fill_color": "FFFFFF", + "id": 36303, + "profile_text_color": "005B80", + "followers_count": 176, + "profile_sidebar_border_color": "515151", + "id_str": "36303", + "profile_background_color": "FFFFFF", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 1938, + "description": "Web Developer who gets around... [on a motorbike]", + "friends_count": 218, + "location": "near Sydney most of the time", + "profile_link_color": "1B93C3", + "profile_image_url": "http://a3.twimg.com/profile_images/67387513/avatar-nocleanfeed_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/58498006/twitter-bg-mountainash3.gif", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/58498006/twitter-bg-mountainash3.gif", + "name": "Mountain/\\Ash", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 27, + "screen_name": "mountainash", + "notifications": null, + "url": "http://mountainash.rmwpublishing.net/", + "created_at": "Sat Dec 02 03:45:53 +0000 2006", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06baae", + "_rev": "1-62b72b9f7d56c8ab53c2b8b77bb16460", + "oldid": "4eb3857e3de67c51170000ce", + "contributors": null, + "truncated": false, + "text": "I'm at Bandar Udara Frans Kaisiepo Biak http://t.co/evoZffUF", + "in_reply_to_status_id": null, + "id": 132343454045974530, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 40, + 60 + ], + "url": "http://t.co/evoZffUF", + "expanded_url": "http://4sq.com/s4Sbdy", + "display_url": "4sq.com/s4Sbdy" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 136.10628768, + -1.19205 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343454045974529", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "profile_sidebar_fill_color": "c6f2c2", + "id": 59374541, + "profile_text_color": "171017", + "followers_count": 197, + "profile_sidebar_border_color": "171e2b", + "id_str": "59374541", + "profile_background_color": "fafafa", + "listed_count": 4, + "utc_offset": 32400, + "statuses_count": 8570, + "description": "I am Me and I won't change for anyone", + "friends_count": 197, + "location": "luphseekeer", + "profile_link_color": "e6281e", + "profile_image_url": "http://a3.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "name": "ratno pebrianto", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "darkseekeeRatno", + "notifications": null, + "url": "http://www.kaskus.us/member.php?u=529049", + "created_at": "Thu Jul 23 05:39:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Osaka", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -1.19205, + 136.10628768 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:28:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e06c33f", + "_rev": "1-e296f09e3e633a3bc1c5ec98cb264e9c", + "oldid": "4eb385803de67c51170000cf", + "favorited": false, + "in_reply_to_user_id": 47905782, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tarabxx *reason", + "created_at": "Fri Nov 04 06:28:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343233991815168", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33342868, + -38.03079324 + ] + }, + "id": 132343465202810880, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 47905782, + "id_str": "47905782", + "screen_name": "tarabxx", + "name": "Tara Bell" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343233991815170, + "in_reply_to_screen_name": "tarabxx", + "id_str": "132343465202810880", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03079324, + 145.33342868 + ] + }, + "in_reply_to_user_id_str": "47905782", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2630, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06ccd5", + "_rev": "1-da4ad921745c36995babe62536b56386", + "oldid": "4eb385863de67c51170000d0", + "contributors": null, + "truncated": false, + "text": "I just became the mayor of Tyreplus Nundah on @foursquare! http://t.co/cmr183ES", + "in_reply_to_status_id": null, + "id": 132343488707690500, + "entities": { + "user_mentions": [ + { + "indices": [ + 46, + 57 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 59, + 79 + ], + "url": "http://t.co/cmr183ES", + "expanded_url": "http://4sq.com/mPC2W2", + "display_url": "4sq.com/mPC2W2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.058782, + -27.400593 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343488707690496", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1206560181/67582_10150101193493776_664973775_7416007_5948400_n_normal.jpg", + "profile_sidebar_fill_color": "1d1e21", + "id": 45353365, + "profile_text_color": "c42a2c", + "followers_count": 46, + "profile_sidebar_border_color": "9e1611", + "id_str": "45353365", + "profile_background_color": "4d4242", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1111, + "description": "1st. I love Vampires,even those that sparkle.\r\n2nd. I am a loyal friend\r\nenough said.", + "friends_count": 61, + "location": "Brisbane, Queensland Australia", + "profile_link_color": "f5000c", + "profile_image_url": "http://a3.twimg.com/profile_images/1206560181/67582_10150101193493776_664973775_7416007_5948400_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/101675858/Team_edward_wb.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/101675858/Team_edward_wb.jpg", + "name": "Jodie Varley", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 15, + "screen_name": "oztwilighter", + "notifications": null, + "url": "http://www.myspace.com/oztwilighter", + "created_at": "Sun Jun 07 15:05:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.400593, + 153.058782 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:28:41 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e06d1a3", + "_rev": "1-572b75815aa5dc4495d306abcb1c0844", + "oldid": "4eb385893de67c51170000d1", + "favorited": false, + "in_reply_to_user_id": 38407271, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@NRLNEWS is it true tigers vs sharks round 1 next year if so where will it be played", + "created_at": "Fri Nov 04 06:28:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132331247086206976", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.3416684, + -35.1250397 + ] + }, + "id": 132343500778909700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 38407271, + "id_str": "38407271", + "screen_name": "NRLNEWS", + "name": "NRL News" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132331247086206980, + "in_reply_to_screen_name": "NRLNEWS", + "id_str": "132343500778909697", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.1250397, + 147.3416684 + ] + }, + "in_reply_to_user_id_str": "38407271", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 370986383, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "370986383", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 123, + "description": "Balmain Fan 1st now a mad Wests Tigers Fan 4 ever", + "friends_count": 41, + "location": "Wagga Wagga N.S.W Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lionel C Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Storkman1", + "notifications": null, + "url": null, + "created_at": "Sat Sep 10 00:29:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06d611", + "_rev": "1-523953b08a8b017fc71b1f841bbc2db6", + "oldid": "4eb3858b3de67c51170000d2", + "contributors": null, + "truncated": false, + "text": "Well deserved beverage on a Friday afternoon! (@ 32 Degrees) [pic]: http://t.co/a4LvOa3D", + "in_reply_to_status_id": null, + "id": 132343508534181890, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 68, + 88 + ], + "url": "http://t.co/a4LvOa3D", + "expanded_url": "http://4sq.com/rALtGY", + "display_url": "4sq.com/rALtGY" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.057989, + -27.461111 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343508534181888", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1489290769/284830_10150235113461980_619676979_7638318_7907185_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 249555985, + "profile_text_color": "666666", + "followers_count": 186, + "profile_sidebar_border_color": "181A1E", + "id_str": "249555985", + "profile_background_color": "1A1B1F", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 75, + "description": "In November 2010 I departed London, England for Brisbane, Australia. With just a rucksack on my back I left to start my new life as an Australian and filmmaker.", + "friends_count": 616, + "location": "Brisbane, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1489290769/284830_10150235113461980_619676979_7638318_7907185_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/319448342/256625_10150218177696980_619676979_7469350_5954755_o.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/319448342/256625_10150218177696980_619676979_7469350_5954755_o.jpg", + "name": "Gary Ratchford", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 13, + "screen_name": "GaryRatchford", + "notifications": null, + "url": "http://www.garyratchford.com", + "created_at": "Wed Feb 09 08:48:51 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.461111, + 153.057989 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:28:45 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e06e4d8", + "_rev": "1-d3b847a8bfe70f00246ac5356b2f9bba", + "oldid": "4eb385953de67c51170000d3", + "favorited": false, + "in_reply_to_user_id": 30135036, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@BrentonEccles Labor's positive agenda is becoming very evident. It's telling how the Coalition misjudged this. #auspol", + "created_at": "Fri Nov 04 06:28:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341002466897920", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.96529603, + -32.07905352 + ] + }, + "id": 132343552498876420, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 30135036, + "id_str": "30135036", + "screen_name": "BrentonEccles", + "name": "Brenton Eccles" + } + ], + "hashtags": [ + { + "indices": [ + 112, + 119 + ], + "text": "auspol" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132341002466897920, + "in_reply_to_screen_name": "BrentonEccles", + "id_str": "132343552498876416", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07905352, + 115.96529603 + ] + }, + "in_reply_to_user_id_str": "30135036", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572527461/6YMU7283_normal", + "profile_sidebar_fill_color": "ffffff", + "id": 46613797, + "profile_text_color": "333333", + "followers_count": 47, + "profile_sidebar_border_color": "eeeeee", + "id_str": "46613797", + "profile_background_color": "B2DFDA", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 972, + "description": "An interested observer, and participant of life. ", + "friends_count": 155, + "location": "Perth, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/1572527461/6YMU7283_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Simone ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "InMyOpinion01", + "notifications": null, + "url": null, + "created_at": "Fri Jun 12 08:49:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06e808", + "_rev": "1-2a721cf7676299a95f4a39d23a012286", + "oldid": "4eb3859a3de67c51170000d4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Yaaay! My new Asian shoes came and they are spot on!!! I love em!!!!!!", + "created_at": "Fri Nov 04 06:29:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33342868, + -38.03079324 + ] + }, + "id": 132343572543438850, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343572543438848", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03079324, + 145.33342868 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2631, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06ed77", + "_rev": "1-843130bb754eccd12e81132867c21d15", + "oldid": "4eb385a23de67c51170000d5", + "contributors": null, + "truncated": false, + "text": "I'm at F. Kaisepo Airport (biak, Biak) http://t.co/5l0d3YJ6", + "in_reply_to_status_id": null, + "id": 132343606336958460, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/5l0d3YJ6", + "expanded_url": "http://4sq.com/uV1v4q", + "display_url": "4sq.com/uV1v4q" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 136.10652744, + -1.19199547 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343606336958465", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "profile_sidebar_fill_color": "c6f2c2", + "id": 59374541, + "profile_text_color": "171017", + "followers_count": 197, + "profile_sidebar_border_color": "171e2b", + "id_str": "59374541", + "profile_background_color": "fafafa", + "listed_count": 4, + "utc_offset": 32400, + "statuses_count": 8571, + "description": "I am Me and I won't change for anyone", + "friends_count": 197, + "location": "luphseekeer", + "profile_link_color": "e6281e", + "profile_image_url": "http://a3.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "name": "ratno pebrianto", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "darkseekeeRatno", + "notifications": null, + "url": "http://www.kaskus.us/member.php?u=529049", + "created_at": "Thu Jul 23 05:39:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Osaka", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -1.19199547, + 136.10652744 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:29:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e06f602", + "_rev": "1-c7f25844aac8457f081d38f6d8779cfc", + "oldid": "4eb385a43de67c51170000d6", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Just saw a QR code on tv... Maybe they will eventually catch on after all, but I'm just not that into them", + "created_at": "Fri Nov 04 06:29:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.00768366, + -33.80880092 + ] + }, + "id": 132343613966389250, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343613966389248", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.80880092, + 151.00768366 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14839013, + "profile_text_color": "333333", + "followers_count": 713, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14839013", + "profile_background_color": "C0DEED", + "listed_count": 36, + "utc_offset": 36000, + "statuses_count": 1246, + "description": "Director - Community Builders Australia & legal.consult; President NSW Society for Computers & the Law", + "friends_count": 465, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andrew Perry", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "andrewperry", + "notifications": null, + "url": "http://www.andrewperry.id.au", + "created_at": "Mon May 19 23:23:55 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e06ff58", + "_rev": "1-0bb70286885fa0c6a6b7d2d7e3b55e95", + "oldid": "4eb385a83de67c51170000d7", + "favorited": false, + "in_reply_to_user_id": 234246043, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mermaidfagg0t me? I'm rather good at pissing people off so I've heard", + "created_at": "Fri Nov 04 06:29:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341954091556864", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.09710861, + -37.64051199 + ] + }, + "id": 132343630164795400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 234246043, + "id_str": "234246043", + "screen_name": "mermaidfagg0t", + "name": "人魚束♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341954091556860, + "in_reply_to_screen_name": "mermaidfagg0t", + "id_str": "132343630164795392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.64051199, + 145.09710861 + ] + }, + "in_reply_to_user_id_str": "234246043", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1402823130/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 22450813, + "profile_text_color": "333333", + "followers_count": 138, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22450813", + "profile_background_color": "131516", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 5382, + "description": "Hi im rhys and i hate brokencyde with a passion. @LauraLoveless_ is everything to me :)", + "friends_count": 250, + "location": "Melbourne", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1402823130/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Rhys Montgomery", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "rhys1508", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=703417461", + "created_at": "Mon Mar 02 04:30:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e070b0e", + "_rev": "1-fb54adad24dee60997f0ecf07e935962", + "oldid": "4eb385a93de67c51170000d8", + "favorited": false, + "in_reply_to_user_id": 19750980, + "contributors": null, + "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", + "text": "@lomantik oh yes... More than I need really :D", + "created_at": "Fri Nov 04 06:29:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343082111873024", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0098, + -37.82262 + ] + }, + "id": 132343636070379520, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 19750980, + "id_str": "19750980", + "screen_name": "lomantik", + "name": "✔ Kevin Lo" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343082111873020, + "in_reply_to_screen_name": "lomantik", + "id_str": "132343636070379520", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82262, + 145.0098 + ] + }, + "in_reply_to_user_id_str": "19750980", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/602537467/2694196400_5ee35bcc49_b_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 14573272, + "profile_text_color": "c41313", + "followers_count": 4854, + "profile_sidebar_border_color": "3d3f42", + "id_str": "14573272", + "profile_background_color": "000000", + "listed_count": 274, + "utc_offset": 36000, + "statuses_count": 23948, + "description": "Social Media Bloke | Bass Player | Camera User | Coffee Drinker | Dreamer [all views here are my own, strangely]", + "friends_count": 3158, + "location": "Melbourne, Australia", + "profile_link_color": "000000", + "profile_image_url": "http://a0.twimg.com/profile_images/602537467/2694196400_5ee35bcc49_b_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/249903624/DSC00690-2.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/249903624/DSC00690-2.jpg", + "name": "Simon Pollock", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "gtvone", + "notifications": null, + "url": "http://www.gtvone.com", + "created_at": "Mon Apr 28 18:42:57 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0713de", + "_rev": "1-4ce1d44486f1a0280220d8dd8223912d", + "oldid": "4eb385aa3de67c51170000d9", + "favorited": false, + "in_reply_to_user_id": 26439004, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@shanetgreaves hahaha", + "created_at": "Fri Nov 04 06:29:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343486237253632", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21399691, + -33.89903513 + ] + }, + "id": 132343637446103040, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 26439004, + "id_str": "26439004", + "screen_name": "shanetgreaves", + "name": "shane tyler greaves" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343486237253630, + "in_reply_to_screen_name": "shanetgreaves", + "id_str": "132343637446103040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89903513, + 151.21399691 + ] + }, + "in_reply_to_user_id_str": "26439004", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621677798/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 280409267, + "profile_text_color": "333333", + "followers_count": 33, + "profile_sidebar_border_color": "C0DEED", + "id_str": "280409267", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 107, + "description": "Ho-MO-Sexual born this way!", + "friends_count": 58, + "location": "sydney australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1621677798/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "SuperSean Glazzard", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "seanglazzard", + "notifications": null, + "url": null, + "created_at": "Mon Apr 11 08:18:38 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e071828", + "_rev": "1-bd1490a61c63219007be134b9be35c33", + "oldid": "4eb385ad3de67c51170000da", + "contributors": null, + "truncated": false, + "text": "Accident at 620-622 Liverpool Rd, Strathfield South NSW 2136, Australia http://t.co/3NPrsMyB", + "in_reply_to_status_id": null, + "id": 132343650528133120, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/3NPrsMyB", + "expanded_url": "http://trapster.com/_VKyS", + "display_url": "trapster.com/_VKyS" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.072415, + -33.887012 + ] + }, + "source": "<a href=\"http://www.trapster.com\" rel=\"nofollow\">Trapster</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343650528133121", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1281451235/the_awesome_lean_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14853580, + "profile_text_color": "333333", + "followers_count": 2952, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14853580", + "profile_background_color": "022330", + "listed_count": 151, + "utc_offset": 36000, + "statuses_count": 38080, + "description": "I'd tell you about how I'm a superhero, but then I'd have to kill you.", + "friends_count": 2687, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1281451235/the_awesome_lean_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/63276820/IMG_3630-2.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/63276820/IMG_3630-2.jpg", + "name": "Andrew Trinh", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2427, + "screen_name": "ancyru", + "notifications": null, + "url": "http://andrewtrinh.com", + "created_at": "Wed May 21 07:36:20 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.887012, + 151.072415 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:29:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0720f1", + "_rev": "1-5dd24d52fce7cd1267ea2e9e10a55f1e", + "oldid": "4eb385b93de67c51170000db", + "favorited": false, + "in_reply_to_user_id": 304029585, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@shymreaps lol why?", + "created_at": "Fri Nov 04 06:29:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132313846361767936", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.07532435, + -26.40286725 + ] + }, + "id": 132343701178552320, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 304029585, + "id_str": "304029585", + "screen_name": "shymreaps", + "name": "Garrett Shymko" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132313846361767940, + "in_reply_to_screen_name": "shymreaps", + "id_str": "132343701178552320", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -26.40286725, + 153.07532435 + ] + }, + "in_reply_to_user_id_str": "304029585", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1531655013/image_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 64289290, + "profile_text_color": "333333", + "followers_count": 123, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "64289290", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": -21600, + "statuses_count": 1157, + "description": "", + "friends_count": 359, + "location": "winnipeg", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1531655013/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "name": "Ryan Barnard", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "barnardnt", + "notifications": null, + "url": null, + "created_at": "Mon Aug 10 00:10:11 +0000 2009", + "contributors_enabled": false, + "time_zone": "Central Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e072c39", + "_rev": "1-b03aeec711c9e738a9722f951bd01943", + "oldid": "4eb385b93de67c51170000dc", + "contributors": null, + "truncated": false, + "text": "I'm at David Jones (622 Hay St, btwn William St and Barrack St, Perth) http://t.co/kvju5BqA", + "in_reply_to_status_id": null, + "id": 132343700650074110, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/kvju5BqA", + "expanded_url": "http://4sq.com/v2Bq8I", + "display_url": "4sq.com/v2Bq8I" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.86000323, + -31.95390095 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343700650074112", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1535789150/Photo_on_2011-09-08_at_08.19__2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 227229432, + "profile_text_color": "333333", + "followers_count": 203, + "profile_sidebar_border_color": "C0DEED", + "id_str": "227229432", + "profile_background_color": "C0DEED", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 3323, + "description": "♥", + "friends_count": 152, + "location": "Perth, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1535789150/Photo_on_2011-09-08_at_08.19__2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/182155022/DSC_0928.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/182155022/DSC_0928.JPG", + "name": "Alice Shenton", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 448, + "screen_name": "lovelylapin", + "notifications": null, + "url": "http://lovely-lissy.blogspot.com/", + "created_at": "Thu Dec 16 07:53:15 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.95390095, + 115.86000323 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:29:31 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e073b01", + "_rev": "1-14b1d105c2a4c80bf3918ee7e9d3ec8c", + "oldid": "4eb385ba3de67c51170000dd", + "favorited": false, + "in_reply_to_user_id": 79413400, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@deanarcuri direct her to #gluttony. She could do with a coupla extra pounds. #justsaying", + "created_at": "Fri Nov 04 06:29:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132329632107212801", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.10037779, + -37.75772505 + ] + }, + "id": 132343706048151550, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 79413400, + "id_str": "79413400", + "screen_name": "deanarcuri", + "name": "Dean Arcuri" + } + ], + "hashtags": [ + { + "indices": [ + 26, + 35 + ], + "text": "gluttony" + }, + { + "indices": [ + 78, + 89 + ], + "text": "justsaying" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132329632107212800, + "in_reply_to_screen_name": "deanarcuri", + "id_str": "132343706048151552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.75772505, + 145.10037779 + ] + }, + "in_reply_to_user_id_str": "79413400", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1537590825/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 176063224, + "profile_text_color": "2d0de0", + "followers_count": 165, + "profile_sidebar_border_color": "eeeeee", + "id_str": "176063224", + "profile_background_color": "131516", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 2561, + "description": "father|football & music tragic|interista|time chaser|follower of political theatre|striving for double figure weight | paroxysmal blogger", + "friends_count": 653, + "location": "Melbourne", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1537590825/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "George Ploumidis", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 584, + "screen_name": "jorginho_94", + "notifications": null, + "url": "http://www.the-lone-striker.blogspot.com", + "created_at": "Sun Aug 08 12:59:19 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e074a42", + "_rev": "1-798ec7480f8c77593fb4d2c7ecb182b3", + "oldid": "4eb385c43de67c51170000de", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#coyotes are an embarrassment to the #NHL not even 7000 fans what a joke #nordiques 2012 #gojetsgo", + "created_at": "Fri Nov 04 06:29:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.07532435, + -26.40286725 + ] + }, + "id": 132343748234453000, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 8 + ], + "text": "coyotes" + }, + { + "indices": [ + 37, + 41 + ], + "text": "NHL" + }, + { + "indices": [ + 73, + 83 + ], + "text": "nordiques" + }, + { + "indices": [ + 89, + 98 + ], + "text": "gojetsgo" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343748234452992", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -26.40286725, + 153.07532435 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1531655013/image_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 64289290, + "profile_text_color": "333333", + "followers_count": 123, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "64289290", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": -21600, + "statuses_count": 1158, + "description": "", + "friends_count": 359, + "location": "winnipeg", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1531655013/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "name": "Ryan Barnard", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "barnardnt", + "notifications": null, + "url": null, + "created_at": "Mon Aug 10 00:10:11 +0000 2009", + "contributors_enabled": false, + "time_zone": "Central Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e075300", + "_rev": "1-e541a408868fa465aadc23dd5c4d188a", + "oldid": "4eb385c73de67c51170000df", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "The main problem with following celebs on twitter is that your own life seems nothing to tweet about! ;)", + "created_at": "Fri Nov 04 06:29:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.4535588, + -37.77673369 + ] + }, + "id": 132343761194856450, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343761194856451", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.77673369, + 145.4535588 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/310567175/face_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 56215103, + "profile_text_color": "333333", + "followers_count": 21, + "profile_sidebar_border_color": "C0DEED", + "id_str": "56215103", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 173, + "description": "", + "friends_count": 32, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/310567175/face_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Angela Jones", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "angijones", + "notifications": null, + "url": null, + "created_at": "Sun Jul 12 22:51:32 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0762a4", + "_rev": "1-4a7fde32bfa114f126dfbdb8178a9f1d", + "oldid": "4eb385d03de67c51170000e0", + "contributors": null, + "truncated": false, + "text": "Check In - Check Out $20 for a pint of Hoegaarden, I don't think so (@ ChoGao) http://t.co/P4kEwLQl", + "in_reply_to_status_id": null, + "id": 132343799954423800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 79, + 99 + ], + "url": "http://t.co/P4kEwLQl", + "expanded_url": "http://4sq.com/rNXlGZ", + "display_url": "4sq.com/rNXlGZ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96395588, + -37.80980091 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132343799954423808", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563549476/Geelong_Cats_logo_3D_jpeg_normal.jpg", + "profile_sidebar_fill_color": "EFEFEF", + "id": 12933282, + "profile_text_color": "333333", + "followers_count": 1385, + "profile_sidebar_border_color": "FFFFFF", + "id_str": "12933282", + "profile_background_color": "FFFFFF", + "listed_count": 48, + "utc_offset": 36000, + "statuses_count": 6137, + "description": "IT Consultant from Melbourne, Australia. I follow & support @water @joinred #NoCleanFeed #OpenInternet #NetNeutrality #OPML", + "friends_count": 1957, + "location": "Melbourne", + "profile_link_color": "BF1238", + "profile_image_url": "http://a1.twimg.com/profile_images/1563549476/Geelong_Cats_logo_3D_jpeg_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/334921607/g2yx0tkzlu6g5j8z46sl.png", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/334921607/g2yx0tkzlu6g5j8z46sl.png", + "name": "Stephen Edgar", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "netweb", + "notifications": null, + "url": "http://netweb.com.au", + "created_at": "Fri Feb 01 06:27:23 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.80980091, + 144.96395588 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:29:55 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e076a55", + "_rev": "1-a863e47f686e43a7655ab3729f4fd3a6", + "oldid": "4eb385d13de67c51170000e1", + "favorited": false, + "in_reply_to_user_id": 20906968, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@amylouisecooper anymore car problems?", + "created_at": "Fri Nov 04 06:29:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.65033845, + -34.93712585 + ] + }, + "id": 132343804018688000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 20906968, + "id_str": "20906968", + "screen_name": "amylouisecooper", + "name": "Amy Cooper" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "amylouisecooper", + "id_str": "132343804018688000", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.93712585, + 138.65033845 + ] + }, + "in_reply_to_user_id_str": "20906968", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1318367583/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 23272031, + "profile_text_color": "333333", + "followers_count": 48, + "profile_sidebar_border_color": "C0DEED", + "id_str": "23272031", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 34200, + "statuses_count": 384, + "description": "", + "friends_count": 295, + "location": "iPhone: -34.937466,138.650803", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1318367583/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Toby Nihill", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Toby_Roby", + "notifications": null, + "url": null, + "created_at": "Sun Mar 08 03:39:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07754b", + "_rev": "1-0575ad39c918f1364f057f249626527a", + "oldid": "4eb385d33de67c51170000e2", + "favorited": false, + "in_reply_to_user_id": 127680281, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@newcastleboyy I just has CC fraud on my Anz card I asked it to be escalated to head of security they refused as I want to know why they", + "created_at": "Fri Nov 04 06:29:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341521709142016", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.09698408, + -33.70581793 + ] + }, + "id": 132343812059172860, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 127680281, + "id_str": "127680281", + "screen_name": "newcastleboyy", + "name": "Peter Longworth" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341521709142020, + "in_reply_to_screen_name": "newcastleboyy", + "id_str": "132343812059172864", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.70581793, + 151.09698408 + ] + }, + "in_reply_to_user_id_str": "127680281", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1296511978/phplU8kS7_c2PM_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 16880186, + "profile_text_color": "333333", + "followers_count": 620, + "profile_sidebar_border_color": "eeeeee", + "id_str": "16880186", + "profile_background_color": "B2DFDA", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 13451, + "description": "IT Backup Geek with a passion for Technology keen political follower and Rugby Fanatic mad Apple Fan views here are mine you have been warned \r\n\r\n", + "friends_count": 1059, + "location": "Hornsby, New South Wales, Aus", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1296511978/phplU8kS7_c2PM_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/120503906/twilk_background_4c33e1514dedb.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/120503906/twilk_background_4c33e1514dedb.jpg", + "name": "Matt_Tulk", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "Matt_Tulk", + "notifications": null, + "url": "http://matttulk.blogspot.com/", + "created_at": "Tue Oct 21 03:05:51 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e077cb9", + "_rev": "1-c99acbb21d33480553c5be5289d653ff", + "oldid": "4eb385d83de67c51170000e3", + "favorited": false, + "in_reply_to_user_id": 127680281, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@newcastleboyy don't have SMS feature", + "created_at": "Fri Nov 04 06:30:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341521709142016", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.09698408, + -33.70581793 + ] + }, + "id": 132343833311711230, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 127680281, + "id_str": "127680281", + "screen_name": "newcastleboyy", + "name": "Peter Longworth" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341521709142020, + "in_reply_to_screen_name": "newcastleboyy", + "id_str": "132343833311711232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.70581793, + 151.09698408 + ] + }, + "in_reply_to_user_id_str": "127680281", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1296511978/phplU8kS7_c2PM_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 16880186, + "profile_text_color": "333333", + "followers_count": 620, + "profile_sidebar_border_color": "eeeeee", + "id_str": "16880186", + "profile_background_color": "B2DFDA", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 13452, + "description": "IT Backup Geek with a passion for Technology keen political follower and Rugby Fanatic mad Apple Fan views here are mine you have been warned \r\n\r\n", + "friends_count": 1059, + "location": "Hornsby, New South Wales, Aus", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1296511978/phplU8kS7_c2PM_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/120503906/twilk_background_4c33e1514dedb.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/120503906/twilk_background_4c33e1514dedb.jpg", + "name": "Matt_Tulk", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "Matt_Tulk", + "notifications": null, + "url": "http://matttulk.blogspot.com/", + "created_at": "Tue Oct 21 03:05:51 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e078152", + "_rev": "1-4124f632d21360e7e458aafe04aa9642", + "oldid": "4eb385dd3de67c51170000e4", + "favorited": false, + "in_reply_to_user_id": 169318838, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tassie_gal @stephenestcourt Trust us, worth the effort!", + "created_at": "Fri Nov 04 06:30:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341090933153792", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20877477, + -33.86992427 + ] + }, + "id": 132343854736224260, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 169318838, + "id_str": "169318838", + "screen_name": "tassie_gal", + "name": "Zelda" + }, + { + "indices": [ + 12, + 28 + ], + "id": 24263683, + "id_str": "24263683", + "screen_name": "StephenEstcourt", + "name": "Stephen Estcourt" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341090933153800, + "in_reply_to_screen_name": "tassie_gal", + "id_str": "132343854736224257", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86992427, + 151.20877477 + ] + }, + "in_reply_to_user_id_str": "169318838", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 272274507, + "profile_text_color": "333333", + "followers_count": 423, + "profile_sidebar_border_color": "C0DEED", + "id_str": "272274507", + "profile_background_color": "C0DEED", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 361, + "description": "Spiedo Restaurant & Bar, Alessandro Pavoni's latest offering. Informal Lombardian food. Level 6, Westfield Sydney. Now open! (P.S. It's pronounced spi-eh-do.)", + "friends_count": 160, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "SpiedoSydneyCBD", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "SpiedoSydneyCBD", + "notifications": null, + "url": "http://www.spiedo.com.au", + "created_at": "Sat Mar 26 05:19:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07895b", + "_rev": "1-deb33481420b174f339d8d038de6c073", + "oldid": "4eb385e03de67c51170000e5", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://levelupstudio.com\" rel=\"nofollow\">Plume </a>", + "text": "The weirdest aboriginal woman was walking straight at me eating the air or some shit. #scariestshit", + "created_at": "Fri Nov 04 06:30:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0363339, + -27.4583068 + ] + }, + "id": 132343864504745980, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 86, + 99 + ], + "text": "scariestshit" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343864504745984", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.4583068, + 153.0363339 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1575104136/19092011_012_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 240900769, + "profile_text_color": "333333", + "followers_count": 64, + "profile_sidebar_border_color": "C0DEED", + "id_str": "240900769", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1880, + "description": "My name is Jacob, I'm 18 and I like to get drunk alone and tell my secrets to cats. I also have a thing for socks.", + "friends_count": 138, + "location": "Brisbane", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1575104136/19092011_012_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/297280714/Forest_Training_Center.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/297280714/Forest_Training_Center.jpg", + "name": "Jacob", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 208, + "screen_name": "Jacobasdf", + "notifications": null, + "url": null, + "created_at": "Fri Jan 21 00:36:47 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e079537", + "_rev": "1-50ac6b4de6ba23dfa1500025b06aeff5", + "oldid": "4eb385e83de67c51170000e6", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I'm extremely loyal and grow very attached to things ... which is why I've been reusing the same condom since '02 (dad handed it down to me)", + "created_at": "Fri Nov 04 06:30:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20622833, + -33.87716198 + ] + }, + "id": 132343899296505860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343899296505856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87716198, + 151.20622833 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572195831/IMG_3716_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 204483270, + "profile_text_color": "333333", + "followers_count": 1448, + "profile_sidebar_border_color": "C0DEED", + "id_str": "204483270", + "profile_background_color": "C0DEED", + "listed_count": 14, + "utc_offset": 36000, + "statuses_count": 2182, + "description": "Award-winning Producer with The Kyle & Jackie O Show / Arrogant Frenchman / Once got humped by a Labrador on a beach / Worked front counter at McDonalds", + "friends_count": 1393, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1572195831/IMG_3716_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/282633019/Untitled-1.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/282633019/Untitled-1.jpg", + "name": "Bruno Bouchet", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "BrunoBBouchet", + "notifications": null, + "url": "http://www.brunolovesboobs.com", + "created_at": "Mon Oct 18 20:09:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07a2ac", + "_rev": "1-dd0b9b7b7408606cf4b69554d852f219", + "oldid": "4eb385ef3de67c51170000e7", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I'm looking forward to Hobart on Monday, it will be lovely spending the evening with Mike xx", + "created_at": "Fri Nov 04 06:30:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.17107969, + -41.15708339 + ] + }, + "id": 132343930330152960, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132343930330152960", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -41.15708339, + 146.17107969 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1566208995/image_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 109745346, + "profile_text_color": "333333", + "followers_count": 53, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "109745346", + "profile_background_color": "EBEBEB", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 415, + "description": "bit of a nerd, more of a geek, not a dork ", + "friends_count": 513, + "location": "Australia", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1566208995/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Simone Haigh ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "Simone_Haigh", + "notifications": null, + "url": "http://www.facebook.com/sim1.haigh", + "created_at": "Sat Jan 30 03:24:28 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07a370", + "_rev": "1-43b81ea9dc2b71bc42ddf9d18d0ff0cc", + "oldid": "4eb385fb3de67c51170000e8", + "favorited": false, + "in_reply_to_user_id": 188794592, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@RawrMattel SONO DIVERSAMENTE INTELLIGENTE.", + "created_at": "Fri Nov 04 06:30:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337903236943872", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42363276, + -28.03745922 + ] + }, + "id": 132343978233298940, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 188794592, + "id_str": "188794592", + "screen_name": "RawrMattel", + "name": "Γεια σας, πόρνη. ॐ" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337903236943870, + "in_reply_to_screen_name": "RawrMattel", + "id_str": "132343978233298944", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -28.03745922, + 153.42363276 + ] + }, + "in_reply_to_user_id_str": "188794592", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "profile_sidebar_fill_color": "070918", + "id": 44710301, + "profile_text_color": "a19b9b", + "followers_count": 1139, + "profile_sidebar_border_color": "000000", + "id_str": "44710301", + "profile_background_color": "000000", + "listed_count": 33, + "utc_offset": 3600, + "statuses_count": 42157, + "description": "Life, Movies, TV Series and Music Addicted.\r\nFan of Aphorisms and PS3 Gamer. Bilingual. Distinguishing Marks: Geek", + "friends_count": 778, + "location": "Gold Coast, QLD, Australia", + "profile_link_color": "0342ff", + "profile_image_url": "http://a0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "is_translator": true, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "name": "Stefano Mascolo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1020, + "screen_name": "stefa93", + "notifications": null, + "url": "http://stefa93.tumblr.com", + "created_at": "Thu Jun 04 20:22:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Rome", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07aa2a", + "_rev": "1-c5c3ac2d3f54cd88f0b7afcd631c9382", + "oldid": "4eb385fe3de67c51170000e9", + "favorited": false, + "in_reply_to_user_id": 259591441, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JCM_Photography paso al rato a tu chan con unos Jackdaniels o que?", + "created_at": "Fri Nov 04 06:30:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340769569783808", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.38114108, + -27.96140901 + ] + }, + "id": 132343990665224200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 259591441, + "id_str": "259591441", + "screen_name": "JCM_Photography", + "name": "Juan Carlos Medina" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340769569783800, + "in_reply_to_screen_name": "JCM_Photography", + "id_str": "132343990665224192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.96140901, + 153.38114108 + ] + }, + "in_reply_to_user_id_str": "259591441", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1571609004/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 378363590, + "profile_text_color": "333333", + "followers_count": 28, + "profile_sidebar_border_color": "C0DEED", + "id_str": "378363590", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 627, + "description": "surfero y tochero bachatero", + "friends_count": 23, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1571609004/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Julian castellanos", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "Gabojrodd", + "notifications": null, + "url": null, + "created_at": "Fri Sep 23 02:28:52 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07b4d8", + "_rev": "1-fffeb1bb645ee20da418bcaade9c0191", + "oldid": "4eb385ff3de67c51170000ea", + "favorited": false, + "in_reply_to_user_id": 5943072, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@thatjohn yeah I did, but I thought it would be too late to affect today's schedule //cc @shamywow", + "created_at": "Fri Nov 04 06:30:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342475456126976", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.16855889, + -33.9368975 + ] + }, + "id": 132343994263945220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 5943072, + "id_str": "5943072", + "screen_name": "thatjohn", + "name": "Yes, that John" + }, + { + "indices": [ + 89, + 98 + ], + "id": 219939131, + "id_str": "219939131", + "screen_name": "shamywow", + "name": "shamywow" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342475456126980, + "in_reply_to_screen_name": "thatjohn", + "id_str": "132343994263945216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9368975, + 151.16855889 + ] + }, + "in_reply_to_user_id_str": "5943072", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1549905798/shaunledge-500x500_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14439876, + "profile_text_color": "333333", + "followers_count": 250, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14439876", + "profile_background_color": "022330", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 2100, + "description": "Professional in the hosted services industry. Love travel, reading, good food and wine, and more :-)", + "friends_count": 214, + "location": "SYD and CBR", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1549905798/shaunledge-500x500_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Shaun Ewing", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "swewing", + "notifications": null, + "url": "http://shaun.net", + "created_at": "Sat Apr 19 02:26:04 +0000 2008", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07bff0", + "_rev": "1-f6fd965882f0d3a7e23f694f6f2b7ef2", + "oldid": "4eb385ff3de67c51170000eb", + "favorited": false, + "in_reply_to_user_id": 21073183, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@tralisajarvis y dont u then", + "created_at": "Fri Nov 04 06:30:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132322219027218432", + "coordinates": { + "type": "Point", + "coordinates": [ + 146.7919832, + -19.2946214 + ] + }, + "id": 132343993961938940, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 21073183, + "id_str": "21073183", + "screen_name": "tralisajarvis", + "name": "Tralisa Jarvis" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132322219027218430, + "in_reply_to_screen_name": "tralisajarvis", + "id_str": "132343993961938944", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -19.2946214, + 146.7919832 + ] + }, + "in_reply_to_user_id_str": "21073183", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1266708659/kd_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 113288743, + "profile_text_color": "333333", + "followers_count": 48, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "113288743", + "profile_background_color": "022330", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 3095, + "description": "I'm a BIG old school WWE Wrestling fan & big Canterbury Bulldogs fan, Bulldogs for the win 2011 :)", + "friends_count": 206, + "location": "townsville australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1266708659/kd_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/215113541/Canterbury-Bullds-mascot-Arnold-Jr-5755481.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/215113541/Canterbury-Bullds-mascot-Arnold-Jr-5755481.jpg", + "name": "Jason Munro", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "jasxpac", + "notifications": null, + "url": null, + "created_at": "Thu Feb 11 08:37:12 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07c370", + "_rev": "1-d6d31a6073bee0f9e14ba8d707a5eb0a", + "oldid": "4eb3860d3de67c51170000ec", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "#3WordsDuringSex \"toughen up princess\"", + "created_at": "Fri Nov 04 06:30:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.75476948, + -31.97942239 + ] + }, + "id": 132344053449768960, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 16 + ], + "text": "3WordsDuringSex" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344053449768960", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.97942239, + 115.75476948 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607171936/AcWZjCRCIAE4_9R_normal.jpg", + "profile_sidebar_fill_color": "204685", + "id": 50534512, + "profile_text_color": "1283B8", + "followers_count": 223, + "profile_sidebar_border_color": "0A75FF", + "id_str": "50534512", + "profile_background_color": "63CDFF", + "listed_count": 1, + "utc_offset": 28800, + "statuses_count": 1158, + "description": "confident / active / metrosexual (love that word) / in love / festival lover / visitor in Australia since 3 years / missing my home Germany / love u babe", + "friends_count": 406, + "location": "Perth (WA), Australia", + "profile_link_color": "9ED1E8", + "profile_image_url": "http://a3.twimg.com/profile_images/1607171936/AcWZjCRCIAE4_9R_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/353116231/x5dbe0102ddffd0e6e1ca143cbd8ad8c.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/353116231/x5dbe0102ddffd0e6e1ca143cbd8ad8c.jpg", + "name": "Danjo", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 65, + "screen_name": "Enamsuo", + "notifications": null, + "url": null, + "created_at": "Thu Jun 25 03:16:34 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07c5fc", + "_rev": "1-71aacd9c8fc95e87ce50be2fc7910096", + "oldid": "4eb386103de67c51170000ed", + "contributors": null, + "truncated": false, + "text": "I just ousted Scott M. as the mayor of Sam's Warehouse on @foursquare! http://t.co/qR9KiUjy", + "in_reply_to_status_id": null, + "id": 132344065399336960, + "entities": { + "user_mentions": [ + { + "indices": [ + 58, + 69 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/qR9KiUjy", + "expanded_url": "http://4sq.com/gJdMPA", + "display_url": "4sq.com/gJdMPA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.965342, + -38.333219 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344065399336960", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1359602428/image_normal.jpg", + "profile_sidebar_fill_color": "D5DED9", + "id": 86905084, + "profile_text_color": "948C75", + "followers_count": 769, + "profile_sidebar_border_color": "7A6A53", + "id_str": "86905084", + "profile_background_color": "D9CEB2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 2903, + "description": "Affectionately known as 'Hocus Pocus', Modern day 'Medicine Woman', Master Trainer, Facilitator, Speaker, Writer; Speciality coffee lover!", + "friends_count": 799, + "location": "Melbourne", + "profile_link_color": "99B2B7", + "profile_image_url": "http://a2.twimg.com/profile_images/1359602428/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "name": "Vicky Gardner", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "VickyGardner", + "notifications": null, + "url": "http://www.socialoomph.com/profiles/vickygardner", + "created_at": "Mon Nov 02 09:06:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.333219, + 144.965342 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:30:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e07c77c", + "_rev": "1-e64837386be2c97b627b1073efd2fa8b", + "oldid": "4eb386103de67c51170000ee", + "contributors": null, + "truncated": false, + "text": "I'm at Sam's Warehouse (Dromana) http://t.co/d9E0jVYi", + "in_reply_to_status_id": null, + "id": 132344065818755070, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 33, + 53 + ], + "url": "http://t.co/d9E0jVYi", + "expanded_url": "http://4sq.com/vJ9Alq", + "display_url": "4sq.com/vJ9Alq" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.965342, + -38.333219 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344065818755072", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1359602428/image_normal.jpg", + "profile_sidebar_fill_color": "D5DED9", + "id": 86905084, + "profile_text_color": "948C75", + "followers_count": 769, + "profile_sidebar_border_color": "7A6A53", + "id_str": "86905084", + "profile_background_color": "D9CEB2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 2904, + "description": "Affectionately known as 'Hocus Pocus', Modern day 'Medicine Woman', Master Trainer, Facilitator, Speaker, Writer; Speciality coffee lover!", + "friends_count": 799, + "location": "Melbourne", + "profile_link_color": "99B2B7", + "profile_image_url": "http://a2.twimg.com/profile_images/1359602428/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "name": "Vicky Gardner", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "VickyGardner", + "notifications": null, + "url": "http://www.socialoomph.com/profiles/vickygardner", + "created_at": "Mon Nov 02 09:06:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.333219, + 144.965342 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:30:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e07d448", + "_rev": "1-cbdcd88a762629546f45aeb36e372876", + "oldid": "4eb386103de67c51170000ef", + "favorited": false, + "in_reply_to_user_id": 19043422, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@bryonycole it's for the greater good of progressive feminism! #fact @deanfra", + "created_at": "Fri Nov 04 06:30:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132336677803921408", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95478237, + -37.81675499 + ] + }, + "id": 132344065932005380, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 19043422, + "id_str": "19043422", + "screen_name": "bryonycole", + "name": "Bryony Cole" + }, + { + "indices": [ + 69, + 77 + ], + "id": 191294421, + "id_str": "191294421", + "screen_name": "deanfra", + "name": "Dean Francis" + } + ], + "hashtags": [ + { + "indices": [ + 63, + 68 + ], + "text": "fact" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132336677803921400, + "in_reply_to_screen_name": "bryonycole", + "id_str": "132344065932005376", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81675499, + 144.95478237 + ] + }, + "in_reply_to_user_id_str": "19043422", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527223832/image_normal.jpg", + "profile_sidebar_fill_color": "7aa1e6", + "id": 7446652, + "profile_text_color": "44494d", + "followers_count": 511, + "profile_sidebar_border_color": "181A1E", + "id_str": "7446652", + "profile_background_color": "1b4c70", + "listed_count": 58, + "utc_offset": 36000, + "statuses_count": 9421, + "description": "Fueled by caffeine + country music. Web kid at @DeloitteOnline. All for music futurism, digital strat and caramel coloured sunset skies", + "friends_count": 145, + "location": "Melbourne, Australia", + "profile_link_color": "6174a1", + "profile_image_url": "http://a2.twimg.com/profile_images/1527223832/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/276824585/photo.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/276824585/photo.jpg", + "name": "Julia Hughan", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 92, + "screen_name": "juleshughan", + "notifications": null, + "url": "http://juliahughan.com", + "created_at": "Fri Jul 13 05:48:31 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07e2dd", + "_rev": "1-1642ecca4117ec73adffc5bae3f70da8", + "oldid": "4eb386143de67c51170000f0", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "Dad just broke a window with a practice golf ball .. Epic!", + "created_at": "Fri Nov 04 06:31:02 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.06598881, + -31.98431667 + ] + }, + "id": 132344082554028030, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344082554028032", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.98431667, + 116.06598881 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600556942/brainy_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 264767454, + "profile_text_color": "333333", + "followers_count": 31, + "profile_sidebar_border_color": "C0DEED", + "id_str": "264767454", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 420, + "description": "Geek who is into people, music, the iPhone, food, and drink. Soon to be iMac user :)\r\n", + "friends_count": 105, + "location": "Kalamunda, Western Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1600556942/brainy_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Steve Doherty", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Steverty", + "notifications": null, + "url": null, + "created_at": "Sat Mar 12 12:33:35 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07e3d9", + "_rev": "1-1898d498838af9b9e0d8b3972489de16", + "oldid": "4eb386153de67c51170000f1", + "contributors": null, + "truncated": false, + "text": "Bradbury @ Deloitte http://t.co/WZD3UrNL", + "in_reply_to_status_id": null, + "id": 132344088396709890, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 21, + 41 + ], + "url": "http://t.co/WZD3UrNL", + "expanded_url": "http://instagr.am/p/SqPuh/", + "display_url": "instagr.am/p/SqPuh/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95721817, + -37.81542897 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344088396709888", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1169671288/avatar2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16668247, + "profile_text_color": "333333", + "followers_count": 380, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16668247", + "profile_background_color": "C0DEED", + "listed_count": 12, + "utc_offset": 36000, + "statuses_count": 1698, + "description": "UX designer by day, charming man-boy by night.", + "friends_count": 331, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1169671288/avatar2_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Chris Bride", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 350, + "screen_name": "chrisbride", + "notifications": null, + "url": "http://about.me/chrisbride", + "created_at": "Thu Oct 09 16:03:49 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81542897, + 144.95721817 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:31:04 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e07e7bf", + "_rev": "1-34a4b9bf2e8cb9e591761e024f8716d8", + "oldid": "4eb386153de67c51170000f2", + "favorited": false, + "in_reply_to_user_id": 21678575, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@FrickingKaos I know. Just got done and am on way home now", + "created_at": "Fri Nov 04 06:31:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132340554787852288", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.28144325, + -36.76249262 + ] + }, + "id": 132344090267369470, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 21678575, + "id_str": "21678575", + "screen_name": "FrickingKaos", + "name": "Tracy/Delphina " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132340554787852290, + "in_reply_to_screen_name": "FrickingKaos", + "id_str": "132344090267369472", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.76249262, + 144.28144325 + ] + }, + "in_reply_to_user_id_str": "21678575", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620368394/9fc179e5-9b52-4004-a238-2fc9cd896196_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 335186853, + "profile_text_color": "333333", + "followers_count": 11, + "profile_sidebar_border_color": "C0DEED", + "id_str": "335186853", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1127, + "description": "", + "friends_count": 162, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1620368394/9fc179e5-9b52-4004-a238-2fc9cd896196_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/356234988/817560731.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/356234988/817560731.png", + "name": "Denise", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "dpowell3550", + "notifications": null, + "url": null, + "created_at": "Thu Jul 14 08:47:49 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07f32d", + "_rev": "1-5eddf3fe84172be627a1ab37bd2ed96c", + "oldid": "4eb3861c3de67c51170000f3", + "favorited": false, + "in_reply_to_user_id": 188794592, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@RawrMattel #einvece", + "created_at": "Fri Nov 04 06:31:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132338180828569600", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42363372, + -28.0374759 + ] + }, + "id": 132344118482448380, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 188794592, + "id_str": "188794592", + "screen_name": "RawrMattel", + "name": "Γεια σας, πόρνη. ॐ" + } + ], + "hashtags": [ + { + "indices": [ + 12, + 20 + ], + "text": "einvece" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132338180828569600, + "in_reply_to_screen_name": "RawrMattel", + "id_str": "132344118482448384", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -28.0374759, + 153.42363372 + ] + }, + "in_reply_to_user_id_str": "188794592", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "profile_sidebar_fill_color": "070918", + "id": 44710301, + "profile_text_color": "a19b9b", + "followers_count": 1139, + "profile_sidebar_border_color": "000000", + "id_str": "44710301", + "profile_background_color": "000000", + "listed_count": 33, + "utc_offset": 3600, + "statuses_count": 42158, + "description": "Life, Movies, TV Series and Music Addicted.\r\nFan of Aphorisms and PS3 Gamer. Bilingual. Distinguishing Marks: Geek", + "friends_count": 777, + "location": "Gold Coast, QLD, Australia", + "profile_link_color": "0342ff", + "profile_image_url": "http://a0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "is_translator": true, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "name": "Stefano Mascolo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1020, + "screen_name": "stefa93", + "notifications": null, + "url": "http://stefa93.tumblr.com", + "created_at": "Thu Jun 04 20:22:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Rome", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e07f7c0", + "_rev": "1-5e47f7e96db157e2ee5f49090b2b64b2", + "oldid": "4eb3861f3de67c51170000f4", + "contributors": null, + "truncated": false, + "text": "I'm at Shauns Rape Dungeon w/ @xglossd http://t.co/TKPyl5SP", + "in_reply_to_status_id": null, + "id": 132344130100674560, + "entities": { + "user_mentions": [ + { + "indices": [ + 30, + 38 + ], + "id": 193542758, + "id_str": "193542758", + "screen_name": "xglossd", + "name": "Dear Miami." + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/TKPyl5SP", + "expanded_url": "http://4sq.com/sqyR83", + "display_url": "4sq.com/sqyR83" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.2911, + -38.032958 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344130100674560", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615143715/image_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 19382827, + "profile_text_color": "333333", + "followers_count": 50, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "19382827", + "profile_background_color": "9AE4E8", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1104, + "description": "i like stuff, im also getting into things... how about you?", + "friends_count": 140, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1615143715/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/5410123/07-8Bit_Wonder.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/5410123/07-8Bit_Wonder.jpg", + "name": "Shaun Camilleri", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "MLTZER", + "notifications": null, + "url": "http://www.facebook.com/MLTZER", + "created_at": "Fri Jan 23 05:24:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.032958, + 145.2911 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:31:14 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e080330", + "_rev": "1-1bf657d163195b38e7ff51768dcf3d23", + "oldid": "4eb386233de67c51170000f5", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "On a bus. Says it's going via Anzac Pde, so must be going up Flinders St. #FingersCrossed #MistrustBuses", + "created_at": "Fri Nov 04 06:31:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21346136, + -33.86388547 + ] + }, + "id": 132344146332618750, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 74, + 89 + ], + "text": "FingersCrossed" + }, + { + "indices": [ + 90, + 104 + ], + "text": "MistrustBuses" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344146332618752", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86388547, + 151.21346136 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1206502190/25803_358081346662_619541662_4818744_5193106_n_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 24136502, + "profile_text_color": "3D1957", + "followers_count": 1058, + "profile_sidebar_border_color": "65B0DA", + "id_str": "24136502", + "profile_background_color": "642D8B", + "listed_count": 91, + "utc_offset": 36000, + "statuses_count": 63604, + "description": "'the average human is mad and I am proud to consider myself well above average...' - ralph lazar & lisa swerling", + "friends_count": 1104, + "location": "Sydney, Australia", + "profile_link_color": "bf0a0d", + "profile_image_url": "http://a3.twimg.com/profile_images/1206502190/25803_358081346662_619541662_4818744_5193106_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/59057616/PolTemi.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/59057616/PolTemi.jpg", + "name": "ChelleC", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "Rellarc79", + "notifications": null, + "url": null, + "created_at": "Fri Mar 13 05:58:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0810dc", + "_rev": "1-12ba98c2c59bdbd5fc9f5d7ca166e68f", + "oldid": "4eb386293de67c51170000f6", + "favorited": false, + "in_reply_to_user_id": 100047856, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@Annlise85 faaaigo *_*", + "created_at": "Fri Nov 04 06:31:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132322687921029120", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42363371, + -28.03747572 + ] + }, + "id": 132344173369106430, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 100047856, + "id_str": "100047856", + "screen_name": "Annlise85", + "name": "Annalisa" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132322687921029120, + "in_reply_to_screen_name": "Annlise85", + "id_str": "132344173369106432", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -28.03747572, + 153.42363371 + ] + }, + "in_reply_to_user_id_str": "100047856", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "profile_sidebar_fill_color": "070918", + "id": 44710301, + "profile_text_color": "a19b9b", + "followers_count": 1139, + "profile_sidebar_border_color": "000000", + "id_str": "44710301", + "profile_background_color": "000000", + "listed_count": 33, + "utc_offset": 3600, + "statuses_count": 42159, + "description": "Life, Movies, TV Series and Music Addicted.\r\nFan of Aphorisms and PS3 Gamer. Bilingual. Distinguishing Marks: Geek", + "friends_count": 777, + "location": "Gold Coast, QLD, Australia", + "profile_link_color": "0342ff", + "profile_image_url": "http://a0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "is_translator": true, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "name": "Stefano Mascolo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1020, + "screen_name": "stefa93", + "notifications": null, + "url": "http://stefa93.tumblr.com", + "created_at": "Thu Jun 04 20:22:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Rome", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e081773", + "_rev": "1-ef491c1d7980bc8ca729d4cf9e44dbf9", + "oldid": "4eb386333de67c51170000f7", + "favorited": false, + "in_reply_to_user_id": 321295815, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@hasselpassel heeeeeeeeeey", + "created_at": "Fri Nov 04 06:31:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132093874305908737", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03150683, + -32.13413178 + ] + }, + "id": 132344212942356480, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 321295815, + "id_str": "321295815", + "screen_name": "hasselpassel", + "name": "chris " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132093874305908740, + "in_reply_to_screen_name": "hasselpassel", + "id_str": "132344212942356480", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13413178, + 116.03150683 + ] + }, + "in_reply_to_user_id_str": "321295815", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546812564/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3300, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1781, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1546812564/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 151, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0820fc", + "_rev": "1-fcc428aa40d57e7582972ef92d5ca8fc", + "oldid": "4eb386363de67c51170000f8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 4 km/h SSE. Barometer 999.1 hPa, Falling. Temperature 23.1 °C. Rain today 0.0 mm. Humidity 62%", + "created_at": "Fri Nov 04 06:31:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 154.23138889, + -37.99416667 + ] + }, + "id": 132344227236560900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344227236560896", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.99416667, + 154.23138889 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1270431771/weatherstn_normal_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 198412791, + "profile_text_color": "663B12", + "followers_count": 22, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "198412791", + "profile_background_color": "C6E2EE", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 14530, + "description": "Hallam Station shows the current and forecast weather, daily rainfall and temperature records,and a live display of the Melbourne pages updated every 10 minutes", + "friends_count": 58, + "location": "Hallam Melbourne Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a0.twimg.com/profile_images/1270431771/weatherstn_normal_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Gary ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "HallamWeather", + "notifications": null, + "url": "http://www.aussiedownunder.net/", + "created_at": "Mon Oct 04 06:59:08 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0822a7", + "_rev": "1-0a36f33360e6132ea1b071c55e5cc984", + "oldid": "4eb386403de67c51170000f9", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Must keep gym routine going.", + "created_at": "Fri Nov 04 06:31:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00495469, + -37.93993914 + ] + }, + "id": 132344265740267520, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344265740267520", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93993914, + 145.00495469 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1566317622/IMG_2090_normal.JPG", + "profile_sidebar_fill_color": "252429", + "id": 39211191, + "profile_text_color": "666666", + "followers_count": 21, + "profile_sidebar_border_color": "181A1E", + "id_str": "39211191", + "profile_background_color": "1A1B1F", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 64, + "description": "Full time student @ Swinburne Uni", + "friends_count": 56, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1566317622/IMG_2090_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Daniel Lieb", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "lieb39", + "notifications": null, + "url": "http://www.lieb39.com/", + "created_at": "Mon May 11 07:26:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e082d55", + "_rev": "1-7e2eeba2072216ff4a862a2bd5d5c972", + "oldid": "4eb386403de67c51170000fa", + "favorited": false, + "in_reply_to_user_id": 38407271, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@NRLNEWS nice 1 carny,Gibbs & digital look out", + "created_at": "Fri Nov 04 06:31:47 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343772867600384", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.3416684, + -35.1250397 + ] + }, + "id": 132344269779382270, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 38407271, + "id_str": "38407271", + "screen_name": "NRLNEWS", + "name": "NRL News" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343772867600380, + "in_reply_to_screen_name": "NRLNEWS", + "id_str": "132344269779382272", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.1250397, + 147.3416684 + ] + }, + "in_reply_to_user_id_str": "38407271", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 370986383, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "370986383", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 124, + "description": "Balmain Fan 1st now a mad Wests Tigers Fan 4 ever", + "friends_count": 41, + "location": "Wagga Wagga N.S.W Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lionel C Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Storkman1", + "notifications": null, + "url": null, + "created_at": "Sat Sep 10 00:29:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e083aea", + "_rev": "1-fc2b3ee9c726582f85a05d7a8010a890", + "oldid": "4eb386453de67c51170000fb", + "contributors": null, + "truncated": false, + "text": "I just ousted @nimasdisini as the mayor of Frans Kaisiepo Airport / Mokmer Airport (BIK) on @foursquare! http://t.co/P4DA3NKK", + "in_reply_to_status_id": null, + "id": 132344291073851400, + "entities": { + "user_mentions": [ + { + "indices": [ + 14, + 26 + ], + "id": 75119292, + "id_str": "75119292", + "screen_name": "nimasdisini", + "name": "Nimas mayang sagita" + }, + { + "indices": [ + 92, + 103 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 105, + 125 + ], + "url": "http://t.co/P4DA3NKK", + "expanded_url": "http://4sq.com/gq5ish", + "display_url": "4sq.com/gq5ish" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 136.107997, + -1.190017 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344291073851392", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "profile_sidebar_fill_color": "c6f2c2", + "id": 59374541, + "profile_text_color": "171017", + "followers_count": 197, + "profile_sidebar_border_color": "171e2b", + "id_str": "59374541", + "profile_background_color": "fafafa", + "listed_count": 4, + "utc_offset": 32400, + "statuses_count": 8573, + "description": "I am Me and I won't change for anyone", + "friends_count": 197, + "location": "luphseekeer", + "profile_link_color": "e6281e", + "profile_image_url": "http://a3.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "name": "ratno pebrianto", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "darkseekeeRatno", + "notifications": null, + "url": "http://www.kaskus.us/member.php?u=529049", + "created_at": "Thu Jul 23 05:39:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Osaka", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -1.190017, + 136.107997 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:31:52 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "full_name": "Papua, Indonesia", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "country_code": "ID", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e08431b", + "_rev": "1-0c8a86e40aafc101d711075ecb8df7d4", + "oldid": "4eb386453de67c51170000fc", + "contributors": null, + "truncated": false, + "text": "1 tempat banyak venue (@ Frans Kaisiepo Airport / Mokmer Airport (BIK)) http://t.co/0bbMvbJ5", + "in_reply_to_status_id": null, + "id": 132344291220664320, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/0bbMvbJ5", + "expanded_url": "http://4sq.com/t2fStW", + "display_url": "4sq.com/t2fStW" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 136.107997, + -1.190017 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344291220664320", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "profile_sidebar_fill_color": "c6f2c2", + "id": 59374541, + "profile_text_color": "171017", + "followers_count": 197, + "profile_sidebar_border_color": "171e2b", + "id_str": "59374541", + "profile_background_color": "fafafa", + "listed_count": 4, + "utc_offset": 32400, + "statuses_count": 8573, + "description": "I am Me and I won't change for anyone", + "friends_count": 197, + "location": "luphseekeer", + "profile_link_color": "e6281e", + "profile_image_url": "http://a3.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "name": "ratno pebrianto", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "darkseekeeRatno", + "notifications": null, + "url": "http://www.kaskus.us/member.php?u=529049", + "created_at": "Thu Jul 23 05:39:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Osaka", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -1.190017, + 136.107997 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:31:52 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "full_name": "Papua, Indonesia", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "country_code": "ID", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e084645", + "_rev": "1-02dc5fa3eda9a00f1d60b570aca8335f", + "oldid": "4eb386483de67c51170000fd", + "contributors": null, + "truncated": false, + "text": "Akehe (@ Bandara Frans Kaisiepo (BIK)) http://t.co/eB425PFE", + "in_reply_to_status_id": null, + "id": 132344299638620160, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/eB425PFE", + "expanded_url": "http://4sq.com/w4UzDr", + "display_url": "4sq.com/w4UzDr" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 136.10678, + -1.190558 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344299638620160", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "profile_sidebar_fill_color": "c6f2c2", + "id": 59374541, + "profile_text_color": "171017", + "followers_count": 197, + "profile_sidebar_border_color": "171e2b", + "id_str": "59374541", + "profile_background_color": "fafafa", + "listed_count": 4, + "utc_offset": 32400, + "statuses_count": 8574, + "description": "I am Me and I won't change for anyone", + "friends_count": 197, + "location": "luphseekeer", + "profile_link_color": "e6281e", + "profile_image_url": "http://a3.twimg.com/profile_images/1600319467/328452013_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/142875358/5qn7jgcr.jpg", + "name": "ratno pebrianto", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "darkseekeeRatno", + "notifications": null, + "url": "http://www.kaskus.us/member.php?u=529049", + "created_at": "Thu Jul 23 05:39:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Osaka", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -1.190558, + 136.10678 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:31:54 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e08485a", + "_rev": "1-1f9482345b8bbcd57a84e4f1650f745e", + "oldid": "4eb3864d3de67c51170000fe", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Great lunch @CSIsocialimpact - a Liter of Light a great, simple and high impact idea turned into enterprises. Not sure about the patents tho", + "created_at": "Fri Nov 04 06:32:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.00521185, + -33.80876152 + ] + }, + "id": 132344323768459260, + "entities": { + "user_mentions": [ + { + "indices": [ + 12, + 28 + ], + "id": 58994449, + "id_str": "58994449", + "screen_name": "CSIsocialimpact", + "name": "CentreSocial Impact " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344323768459264", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.80876152, + 151.00521185 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14839013, + "profile_text_color": "333333", + "followers_count": 713, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14839013", + "profile_background_color": "C0DEED", + "listed_count": 36, + "utc_offset": 36000, + "statuses_count": 1248, + "description": "Director - Community Builders Australia & legal.consult; President NSW Society for Computers & the Law", + "friends_count": 465, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andrew Perry", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "andrewperry", + "notifications": null, + "url": "http://www.andrewperry.id.au", + "created_at": "Mon May 19 23:23:55 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0848c0", + "_rev": "1-a091386acc3df97858771dc1f557a5a6", + "oldid": "4eb386503de67c51170000ff", + "contributors": null, + "truncated": false, + "text": "@opoeian @addthis FAR OUT @LanceWeiler & @GaryPHayes at the one event! Big! bit.ly/ucLefj", + "in_reply_to_status_id": 132336555707736060, + "id": 132344333486657540, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 29661319, + "id_str": "29661319", + "screen_name": "opoeian", + "name": "eamon wyss" + }, + { + "indices": [ + 9, + 17 + ], + "id": 15907720, + "id_str": "15907720", + "screen_name": "addthis", + "name": "AddThis" + }, + { + "indices": [ + 26, + 38 + ], + "id": 615213, + "id_str": "615213", + "screen_name": "LanceWeiler", + "name": "lance weiler" + }, + { + "indices": [ + 41, + 52 + ], + "id": 14206085, + "id_str": "14206085", + "screen_name": "GaryPHayes", + "name": "Gary Hayes" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 77, + 90 + ], + "url": "bit.ly/ucLefj", + "expanded_url": null + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.27898108, + -36.76575857 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "opoeian", + "in_reply_to_user_id": 29661319, + "retweet_count": 0, + "id_str": "132344333486657536", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607512495/IMG_0598_normal.JPG", + "profile_sidebar_fill_color": "ffffff", + "id": 211828270, + "profile_text_color": "333333", + "followers_count": 19, + "profile_sidebar_border_color": "eeeeee", + "id_str": "211828270", + "profile_background_color": "b4cade", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 132, + "description": "Starting up a social movie network", + "friends_count": 42, + "location": "Melbourne, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/1607512495/IMG_0598_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Joss Wyss", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "josswyss", + "notifications": null, + "url": "http://www.movr.com", + "created_at": "Thu Nov 04 11:23:37 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -36.76575857, + 144.27898108 + ] + }, + "in_reply_to_user_id_str": "29661319", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:32:02 +0000 2011", + "in_reply_to_status_id_str": "132336555707736064", + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e084d1f", + "_rev": "1-de6d2acd756b3501bd03f0d61f57e8d8", + "oldid": "4eb386633de67c5117000100", + "favorited": false, + "in_reply_to_user_id": 7517222, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@WWE #Smackdown Kidd vs DiBase is a superstars match at best maybe even worth showing on #NXT.Teddy Long please make better matches!", + "created_at": "Fri Nov 04 06:32:22 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.57731311, + -37.71090086 + ] + }, + "id": 132344416248676350, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 4 + ], + "id": 7517222, + "id_str": "7517222", + "screen_name": "WWE", + "name": "WWE" + } + ], + "hashtags": [ + { + "indices": [ + 5, + 15 + ], + "text": "Smackdown" + }, + { + "indices": [ + 89, + 93 + ], + "text": "NXT" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "WWE", + "id_str": "132344416248676352", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.71090086, + 144.57731311 + ] + }, + "in_reply_to_user_id_str": "7517222", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1377045454/m_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 23261727, + "profile_text_color": "666666", + "followers_count": 81, + "profile_sidebar_border_color": "181A1E", + "id_str": "23261727", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2351, + "description": "i love bourbon, xbox, fremantle football club, Chelsea, Adelaide United, New England Patriots & Miam Heat! ", + "friends_count": 477, + "location": "Melton South", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1377045454/m_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Daniel Brinkman", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 16, + "screen_name": "DanielBrinkman", + "notifications": null, + "url": null, + "created_at": "Sun Mar 08 01:41:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e085745", + "_rev": "1-de729ca460975faa78de777d5e043c63", + "oldid": "4eb386663de67c5117000101", + "contributors": null, + "truncated": false, + "text": "I'm at Queen Victoria Building (QVB) (455 George St, between Market & Druitt, Sydney) w/ 3 others http://t.co/9QaPhMKL", + "in_reply_to_status_id": null, + "id": 132344428370202620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 98, + 118 + ], + "url": "http://t.co/9QaPhMKL", + "expanded_url": "http://4sq.com/tDWkQ3", + "display_url": "4sq.com/tDWkQ3" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20667934, + -33.87185866 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344428370202624", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1083607077/n556948789_294856_7837_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 58786092, + "profile_text_color": "333333", + "followers_count": 49, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "58786092", + "profile_background_color": "ACDED6", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 413, + "description": "-en yalniz dalganin uzerinde bos bir konserve kutusu...-", + "friends_count": 111, + "location": "Sydney", + "profile_link_color": "038543", + "profile_image_url": "http://a3.twimg.com/profile_images/1083607077/n556948789_294856_7837_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme18/bg.gif", + "name": "Ozlem Duran", + "lang": "tr", + "profile_background_tile": false, + "favourites_count": 18, + "screen_name": "ozlemben", + "notifications": null, + "url": null, + "created_at": "Tue Jul 21 12:50:23 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87185866, + 151.20667934 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:32:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0863cc", + "_rev": "1-04f2a7f8b13b44680507b721e56c17df", + "oldid": "4eb386683de67c5117000102", + "contributors": null, + "truncated": false, + "text": "$3 bulmers! (@ Mothers Milk) http://t.co/5YNbS0at", + "in_reply_to_status_id": null, + "id": 132344436054171650, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 29, + 49 + ], + "url": "http://t.co/5YNbS0at", + "expanded_url": "http://4sq.com/u8RqIp", + "display_url": "4sq.com/u8RqIp" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.992347, + -37.857135 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344436054171649", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1312144803/215927_10150542199780387_754685386_18122663_1156755_n_normal.jpg", + "profile_sidebar_fill_color": "90989c", + "id": 79379759, + "profile_text_color": "140314", + "followers_count": 653, + "profile_sidebar_border_color": "d1dde3", + "id_str": "79379759", + "profile_background_color": "022333", + "listed_count": 25, + "utc_offset": 36000, + "statuses_count": 19413, + "description": "Trying to make my way in the IT/SM world! Love to travel, cant live without sport, music, good mates, and lots of good food!", + "friends_count": 1497, + "location": "Melbourne, Australia", + "profile_link_color": "0f171a", + "profile_image_url": "http://a3.twimg.com/profile_images/1312144803/215927_10150542199780387_754685386_18122663_1156755_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/69337734/imaging.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/69337734/imaging.png", + "name": "Nick Splitter", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 142, + "screen_name": "nicksplitter", + "notifications": null, + "url": "http://www.facebook.com/n1ck1985", + "created_at": "Sat Oct 03 05:01:02 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.857135, + 144.992347 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:32:27 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e087274", + "_rev": "1-0badaebc6bbc17dc9f1bae21937f6eba", + "oldid": "4eb3866b3de67c5117000103", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker That's all I'm gonna say. A gentleman never kisses and tells, even in dreams.", + "created_at": "Fri Nov 04 06:32:30 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342662278819840", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132344449245249540, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342662278819840, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132344449245249536", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20034, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e087f86", + "_rev": "1-b3857ea7f9d1c216b922bef3a619d007", + "oldid": "4eb3866f3de67c5117000104", + "contributors": null, + "truncated": false, + "text": "How many koalas do you see? :o) @ Taronga Zoo http://t.co/CVqmSJy2", + "in_reply_to_status_id": null, + "id": 132344467297538050, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/CVqmSJy2", + "expanded_url": "http://instagr.am/p/SqP-j/", + "display_url": "instagr.am/p/SqP-j/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.24093652, + -33.84301858 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344467297538048", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1606500719/1316825902_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 13302, + "profile_text_color": "333333", + "followers_count": 593, + "profile_sidebar_border_color": "eeeeee", + "id_str": "13302", + "profile_background_color": "B2DFDA", + "listed_count": 32, + "utc_offset": 3600, + "statuses_count": 11599, + "description": "Bearcub. TV Series Junkie. Popstar. Effortlessly cool. Amateur Photographer. @Nokia. Sometimes I feel like the world isn't ready for me", + "friends_count": 270, + "location": "Berlin, Germany", + "profile_link_color": "93A644", + "profile_image_url": "http://a0.twimg.com/profile_images/1606500719/1316825902_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Pino", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 25, + "screen_name": "haikus", + "notifications": null, + "url": "http://talkinhaik.us", + "created_at": "Mon Nov 20 18:54:58 +0000 2006", + "contributors_enabled": false, + "time_zone": "Berlin", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.84301858, + 151.24093652 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:32:34 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e088946", + "_rev": "1-e802651d278d3a4e6b520090a2527c61", + "oldid": "4eb386723de67c5117000105", + "contributors": null, + "truncated": false, + "text": "Ok it just took me an hour to get home from Walsh Bay! (@ Princes Gardens) http://t.co/ulV5mr25", + "in_reply_to_status_id": null, + "id": 132344476659228670, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 75, + 95 + ], + "url": "http://t.co/ulV5mr25", + "expanded_url": "http://4sq.com/sW1l2M", + "display_url": "4sq.com/sW1l2M" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2066145, + -33.8871595 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344476659228672", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1497833613/Donna_normal.jpg", + "profile_sidebar_fill_color": "9beaeb", + "id": 20639758, + "profile_text_color": "26046b", + "followers_count": 399, + "profile_sidebar_border_color": "1ddec4", + "id_str": "20639758", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 18835, + "description": "Spin junkie - Pilates guru in training. Sales person extraordinaire. *L*", + "friends_count": 181, + "location": "Surry Hills", + "profile_link_color": "a60525", + "profile_image_url": "http://a3.twimg.com/profile_images/1497833613/Donna_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/150021843/Bubbly.jpeg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/150021843/Bubbly.jpeg", + "name": "Donna Gow", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 27, + "screen_name": "donnagow", + "notifications": null, + "url": null, + "created_at": "Wed Feb 11 23:30:25 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8871595, + 151.2066145 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:32:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e088a26", + "_rev": "1-389d397a9faaf579658bcb7e1d53d0c7", + "oldid": "4eb386723de67c5117000106", + "favorited": false, + "in_reply_to_user_id": 170576998, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@claw_politics ha ha @JoeHockey the only alternative to @TonyAbbottMHR #LibSpill #AusPol", + "created_at": "Fri Nov 04 06:32:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341363571294210", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.96539795, + -32.07906425 + ] + }, + "id": 132344478945128450, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 170576998, + "id_str": "170576998", + "screen_name": "claw_politics", + "name": "The Claw" + }, + { + "indices": [ + 21, + 31 + ], + "id": 18658280, + "id_str": "18658280", + "screen_name": "JoeHockey", + "name": "Joe Hockey" + }, + { + "indices": [ + 56, + 70 + ], + "id": 93766096, + "id_str": "93766096", + "screen_name": "TonyAbbottMHR", + "name": "Tony Abbott" + } + ], + "hashtags": [ + { + "indices": [ + 71, + 80 + ], + "text": "LibSpill" + }, + { + "indices": [ + 81, + 88 + ], + "text": "AusPol" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132341363571294200, + "in_reply_to_screen_name": "claw_politics", + "id_str": "132344478945128449", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07906425, + 115.96539795 + ] + }, + "in_reply_to_user_id_str": "170576998", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572527461/6YMU7283_normal", + "profile_sidebar_fill_color": "ffffff", + "id": 46613797, + "profile_text_color": "333333", + "followers_count": 47, + "profile_sidebar_border_color": "eeeeee", + "id_str": "46613797", + "profile_background_color": "B2DFDA", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 973, + "description": "An interested observer, and participant of life. ", + "friends_count": 155, + "location": "Perth, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/1572527461/6YMU7283_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Simone ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "InMyOpinion01", + "notifications": null, + "url": null, + "created_at": "Fri Jun 12 08:49:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0892aa", + "_rev": "1-9521370ec5b433f9a33900123363756d", + "oldid": "4eb386853de67c5117000107", + "favorited": false, + "in_reply_to_user_id": 191294421, + "contributors": null, + "source": "<a href=\"http://ubersocial.com\" rel=\"nofollow\">UberSocial for Android</a>", + "text": "@deanfra thanks :3", + "created_at": "Fri Nov 04 06:32:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132332820386430976", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9596897, + -37.8228818 + ] + }, + "id": 132344559861637120, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 191294421, + "id_str": "191294421", + "screen_name": "deanfra", + "name": "Dean Francis" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132332820386430980, + "in_reply_to_screen_name": "deanfra", + "id_str": "132344559861637121", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8228818, + 144.9596897 + ] + }, + "in_reply_to_user_id_str": "191294421", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "profile_sidebar_fill_color": "91baf7", + "id": 22474528, + "profile_text_color": "0a0a0a", + "followers_count": 151, + "profile_sidebar_border_color": "52bef0", + "id_str": "22474528", + "profile_background_color": "acded6", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 10238, + "description": "My imagination tells me: Be amazing! \r\nIn the distance, time is calling out: Just get on with it, already!", + "friends_count": 118, + "location": "Melbourne, Australia", + "profile_link_color": "a80d8e", + "profile_image_url": "http://a2.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "name": "K", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "Belmoroe", + "notifications": null, + "url": null, + "created_at": "Mon Mar 02 11:06:31 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0895dc", + "_rev": "1-fdcdd07e0930bd710f952638475ebb87", + "oldid": "4eb386863de67c5117000108", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "ab!", + "created_at": "Fri Nov 04 06:32:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6000696, + -34.9014695 + ] + }, + "id": 132344561417723900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344561417723904", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.9014695, + 138.6000696 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1603879906/5a5d4c30186033f8d7fcb7f688e377de_19784567_normal.jpg", + "profile_sidebar_fill_color": "242424", + "id": 279338299, + "profile_text_color": "ffffff", + "followers_count": 44, + "profile_sidebar_border_color": "ffffff", + "id_str": "279338299", + "profile_background_color": "191a1a", + "listed_count": 2, + "utc_offset": 34200, + "statuses_count": 1940, + "description": "following me, would just get you lost.", + "friends_count": 39, + "location": "radelaide", + "profile_link_color": "345732", + "profile_image_url": "http://a1.twimg.com/profile_images/1603879906/5a5d4c30186033f8d7fcb7f688e377de_19784567_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/230342066/3237102051_19ae77a9f2_o.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/230342066/3237102051_19ae77a9f2_o.jpg", + "name": "tykwok", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "taq91x", + "notifications": null, + "url": null, + "created_at": "Sat Apr 09 02:29:43 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08a591", + "_rev": "1-b2bc77cba9d743552e546a22baddd8c5", + "oldid": "4eb3868c3de67c5117000109", + "favorited": false, + "in_reply_to_user_id": 26175981, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JessLarum great idea!", + "created_at": "Fri Nov 04 06:33:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344375299674112", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.05999896, + -27.44440854 + ] + }, + "id": 132344588491952130, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 26175981, + "id_str": "26175981", + "screen_name": "JessLarum", + "name": "Jess" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344375299674110, + "in_reply_to_screen_name": "JessLarum", + "id_str": "132344588491952129", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.44440854, + 153.05999896 + ] + }, + "in_reply_to_user_id_str": "26175981", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576708035/28970_518240182548_218700203_31220128_8357205_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 157352397, + "profile_text_color": "333333", + "followers_count": 309, + "profile_sidebar_border_color": "eeeeee", + "id_str": "157352397", + "profile_background_color": "131516", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 3725, + "description": "Founder of nrlsupercoachtalk.com and thepuntroadend.com. Website creator, twit, blogger, sports fanatic and a ranga. What more could you want to follow?", + "friends_count": 729, + "location": "Brisbane", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1576708035/28970_518240182548_218700203_31220128_8357205_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Joshua Langdon", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "Wenin_Rome", + "notifications": null, + "url": "http://www.thepuntroadend.com", + "created_at": "Sat Jun 19 15:09:09 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08ae2d", + "_rev": "1-9b23c54cbb477be8167aecd160d80744", + "oldid": "4eb386973de67c511700010a", + "contributors": null, + "truncated": false, + "text": "I'm at Belmont Bowls Club (Reynolds Road, Belmont) http://t.co/Sfduoui2", + "in_reply_to_status_id": null, + "id": 132344634973237250, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 51, + 71 + ], + "url": "http://t.co/Sfduoui2", + "expanded_url": "http://4sq.com/vEQh2w", + "display_url": "4sq.com/vEQh2w" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.326203, + -38.187786 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344634973237248", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1553837106/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 89021115, + "profile_text_color": "333333", + "followers_count": 19, + "profile_sidebar_border_color": "eeeeee", + "id_str": "89021115", + "profile_background_color": "B2DFDA", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 800, + "description": "I live in geelong, with my partner Greg who i love to pieces. Come say hello ppl. I don't bite and i love to make friends. Huge footy fan.", + "friends_count": 155, + "location": "geelong", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1553837106/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "tracey burville", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "lovergirltracey", + "notifications": null, + "url": null, + "created_at": "Tue Nov 10 21:04:17 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.187786, + 144.326203 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:33:14 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e08b151", + "_rev": "1-4bc2701a99843c3ccace0a210aa7a0f1", + "oldid": "4eb386a23de67c511700010b", + "contributors": null, + "truncated": false, + "text": "I'm at Werri Beach Holiday Park http://t.co/SSCysw7U", + "in_reply_to_status_id": null, + "id": 132344678120046600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 32, + 52 + ], + "url": "http://t.co/SSCysw7U", + "expanded_url": "http://4sq.com/tkf5uj", + "display_url": "4sq.com/tkf5uj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.828067, + -34.735101 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344678120046592", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1438396729/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 250504914, + "profile_text_color": "333333", + "followers_count": 17, + "profile_sidebar_border_color": "C0DEED", + "id_str": "250504914", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 1458, + "description": "gay father of 2 wonderful teenage boys. happily partnered with my perfect man! other than that just a bit of a boring tryhard geek! lol ", + "friends_count": 91, + "location": "-33.996344,150.883289", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1438396729/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Phillip Kennedy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "gaydadof2", + "notifications": null, + "url": null, + "created_at": "Fri Feb 11 06:34:34 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.735101, + 150.828067 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:33:24 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e08b1ee", + "_rev": "1-e11aab43c02cc3713a8f902acb0e4f92", + "oldid": "4eb386a53de67c511700010c", + "contributors": null, + "truncated": false, + "text": "I'm at 1st Choice Liquor Superstore (516 Newnham Rd, Upper Mt Gravatt) http://t.co/UTCtXXdh", + "in_reply_to_status_id": null, + "id": 132344691495669760, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/UTCtXXdh", + "expanded_url": "http://4sq.com/tdwFxf", + "display_url": "4sq.com/tdwFxf" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.08954716, + -27.5604988 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344691495669760", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602052420/328516022_normal.jpg", + "profile_sidebar_fill_color": "f0b248", + "id": 143308182, + "profile_text_color": "0f0f0f", + "followers_count": 105, + "profile_sidebar_border_color": "f01a7a", + "id_str": "143308182", + "profile_background_color": "0f0a02", + "listed_count": 0, + "utc_offset": 25200, + "statuses_count": 3186, + "description": "Just an ordinary person... ", + "friends_count": 126, + "location": "ÜT: -6.274831,106.753813", + "profile_link_color": "1b09e6", + "profile_image_url": "http://a0.twimg.com/profile_images/1602052420/328516022_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/189356271/x4c8453a5b107a209c981cf46b99425b.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/189356271/x4c8453a5b107a209c981cf46b99425b.jpg", + "name": "yura", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "blackers_ura", + "notifications": null, + "url": null, + "created_at": "Thu May 13 03:51:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.5604988, + 153.08954716 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:33:27 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e08c0e1", + "_rev": "1-f2fb33f0350c52d60efec53ea1c706cb", + "oldid": "4eb386a63de67c511700010d", + "contributors": null, + "truncated": false, + "text": "I'm at Kings Langley Shopping Centre (James Cook Drive & Ravenhill Street, Sydney) http://t.co/dYe6fiJg", + "in_reply_to_status_id": null, + "id": 132344697459970050, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 83, + 103 + ], + "url": "http://t.co/dYe6fiJg", + "expanded_url": "http://4sq.com/v4HGmT", + "display_url": "4sq.com/v4HGmT" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.918197, + -33.742821 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344697459970049", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592039432/275801_1052705220_64797892_n_normal.jpg", + "profile_sidebar_fill_color": "ddffcd", + "id": 196117757, + "profile_text_color": "333333", + "followers_count": 697, + "profile_sidebar_border_color": "bddcad", + "id_str": "196117757", + "profile_background_color": "ffffff", + "listed_count": 42, + "utc_offset": 36000, + "statuses_count": 30935, + "description": "Carlton(AFL)Man since Dec03. Lapsed multi-instrumentalist since Dec06. Proud Father since 21Jul10. Cancer Free since 19Apr11. Bespectacled since 17Oct11.", + "friends_count": 1483, + "location": "Western Sydney, NSW Australia", + "profile_link_color": "0084b4", + "profile_image_url": "http://a1.twimg.com/profile_images/1592039432/275801_1052705220_64797892_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/219731937/2011-03-19_06-02-21_122.111.55.216.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/219731937/2011-03-19_06-02-21_122.111.55.216.jpg", + "name": "Peter G Gleeson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 68, + "screen_name": "p_terg", + "notifications": null, + "url": "http://peterg-gleeson.blogspot.com/", + "created_at": "Tue Sep 28 11:24:02 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.742821, + 150.918197 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:33:29 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e08c7ff", + "_rev": "1-030d716d9b82b65e45778430b75429c1", + "oldid": "4eb386b23de67c511700010e", + "favorited": false, + "in_reply_to_user_id": 205134339, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@bluewatersbali どっちも行きたいぜ\(^o^)/", + "created_at": "Fri Nov 04 06:33:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132307139799695360", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.46980958, + -33.39975246 + ] + }, + "id": 132344745958703100, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 205134339, + "id_str": "205134339", + "screen_name": "bluewatersbali", + "name": "Blue Waters" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132307139799695360, + "in_reply_to_screen_name": "bluewatersbali", + "id_str": "132344745958703105", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.39975246, + 151.46980958 + ] + }, + "in_reply_to_user_id_str": "205134339", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1231118988/f1_normal.JPG", + "profile_sidebar_fill_color": "E5507E", + "id": 233056723, + "profile_text_color": "362720", + "followers_count": 17, + "profile_sidebar_border_color": "CC3366", + "id_str": "233056723", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 32400, + "statuses_count": 728, + "description": "ぶつぶつ独り言・・\r\n南半球からぶーたれブツブツ・・・\r\n寂しさに負けないように頑張る!!ぞ!!", + "friends_count": 12, + "location": "横浜市", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1231118988/f1_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "ぁりんこ", + "lang": "ja", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "pinkpinkpinpon", + "notifications": null, + "url": null, + "created_at": "Sun Jan 02 04:32:15 +0000 2011", + "contributors_enabled": false, + "time_zone": "Tokyo", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08c800", + "_rev": "1-f5f4535a067a386edfbd3d7e780983d8", + "oldid": "4eb386b83de67c511700010f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I know how to fix this.. Mie goreng!\nMie goreng fixes errrything", + "created_at": "Fri Nov 04 06:33:47 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.88322132, + -37.2416768 + ] + }, + "id": 132344772756119550, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132344772756119552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.2416768, + 145.88322132 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1540797095/Photo_on_9-09-11_at_5.23_PM_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 37879285, + "profile_text_color": "333333", + "followers_count": 58, + "profile_sidebar_border_color": "C0DEED", + "id_str": "37879285", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 410, + "description": "", + "friends_count": 420, + "location": "Victoria, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1540797095/Photo_on_9-09-11_at_5.23_PM_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/331573242/4254588759_bd1be24bca_b.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/331573242/4254588759_bd1be24bca_b.jpg", + "name": "Du", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "DuWalter", + "notifications": null, + "url": "http://timetototallykickass.tumblr.com", + "created_at": "Tue May 05 07:26:59 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08d55f", + "_rev": "1-7fa16540b07e84cb8b67a8eead156344", + "oldid": "4eb386c73de67c5117000110", + "contributors": null, + "truncated": false, + "text": "I'm at Epoque Belgian Beer Cafe (429 Miller St., Amherst St., Cammeray) http://t.co/UDjaRG41", + "in_reply_to_status_id": null, + "id": 132344832411701250, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/UDjaRG41", + "expanded_url": "http://4sq.com/sPnnzH", + "display_url": "4sq.com/sPnnzH" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.210316, + -33.82274687 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344832411701248", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1473508986/photo_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 22688458, + "profile_text_color": "000000", + "followers_count": 258, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22688458", + "profile_background_color": "131516", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2133, + "description": "I’m a passionate UI/UX designer with a decade of hands-on experience. I create immersive, accessible and exciting digital experiences. ", + "friends_count": 491, + "location": "Sydney", + "profile_link_color": "4f4f4f", + "profile_image_url": "http://a1.twimg.com/profile_images/1473508986/photo_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/302570737/twitter.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/302570737/twitter.jpg", + "name": "Steve Nash", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 35, + "screen_name": "Nashtendo", + "notifications": null, + "url": "http://www.stevenash.com.au/", + "created_at": "Tue Mar 03 22:05:36 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.82274687, + 151.210316 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:34:01 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e08df34", + "_rev": "1-006ce3c19bc71a4324cc7d296ad7c352", + "oldid": "4eb386ca3de67c5117000111", + "favorited": false, + "in_reply_to_user_id": 272397729, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@BrokenLock 666vodka. Little creatures. 42below vodka.", + "created_at": "Fri Nov 04 06:34:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344221037367296", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.34387218, + -29.441536 + ] + }, + "id": 132344846647164930, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 272397729, + "id_str": "272397729", + "screen_name": "BrokenLock", + "name": "Broken Lock" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344221037367300, + "in_reply_to_screen_name": "BrokenLock", + "id_str": "132344846647164928", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -29.441536, + 153.34387218 + ] + }, + "in_reply_to_user_id_str": "272397729", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1218654411/38982_10150214877305154_828590153_14102369_408602_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 24345231, + "profile_text_color": "333333", + "followers_count": 119, + "profile_sidebar_border_color": "C0DEED", + "id_str": "24345231", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 875, + "description": "", + "friends_count": 724, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1218654411/38982_10150214877305154_828590153_14102369_408602_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/203539014/Flea_Market_Test_Banner.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/203539014/Flea_Market_Test_Banner.jpg", + "name": "Flea Anderson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "fleaanderson", + "notifications": null, + "url": "http://f-l-e-a-m-a-r-k-e-t.blogspot.com", + "created_at": "Sat Mar 14 07:39:44 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08e37d", + "_rev": "1-501145a100d29c66594603f81dbc19ed", + "oldid": "4eb386ce3de67c5117000112", + "favorited": false, + "in_reply_to_user_id": 19042006, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@DANNY_TREJO #FFs great guy Great actor", + "created_at": "Fri Nov 04 06:34:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1605416, + -33.87224417 + ] + }, + "id": 132344863596359680, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 19042006, + "id_str": "19042006", + "screen_name": "DANNY_TREJO", + "name": "DANNY TREJO " + } + ], + "hashtags": [ + { + "indices": [ + 14, + 18 + ], + "text": "FFs" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "DANNY_TREJO", + "id_str": "132344863596359681", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87224417, + 151.1605416 + ] + }, + "in_reply_to_user_id_str": "19042006", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619757778/b46c09a8-bd0a-48ce-b189-85eff1b8fff4_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 128234187, + "profile_text_color": "333333", + "followers_count": 44, + "profile_sidebar_border_color": "C0DEED", + "id_str": "128234187", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 2797, + "description": "Gday, I luv animals especially my pitty Ty - Im a part time receptionist in a Brothel in Sydney, luv my job get to meet ppl from all over the world ", + "friends_count": 108, + "location": "Australia Sydney. ", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1619757778/b46c09a8-bd0a-48ce-b189-85eff1b8fff4_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Tracey ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 192, + "screen_name": "tsimm", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 14:29:06 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08ed21", + "_rev": "1-99eae2c41fa682d8afb6b81ccf0db1ab", + "oldid": "4eb386d63de67c5117000113", + "favorited": false, + "in_reply_to_user_id": 386455027, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@bryceegibbs don't no yet Leichhardt I hope", + "created_at": "Fri Nov 04 06:34:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342918697586689", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.3416684, + -35.1250397 + ] + }, + "id": 132344894030221310, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 386455027, + "id_str": "386455027", + "screen_name": "bryceegibbs", + "name": "bryce gibbs" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342918697586690, + "in_reply_to_screen_name": "bryceegibbs", + "id_str": "132344894030221312", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.1250397, + 147.3416684 + ] + }, + "in_reply_to_user_id_str": "386455027", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 370986383, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "370986383", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 125, + "description": "Balmain Fan 1st now a mad Wests Tigers Fan 4 ever", + "friends_count": 41, + "location": "Wagga Wagga N.S.W Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lionel C Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Storkman1", + "notifications": null, + "url": null, + "created_at": "Sat Sep 10 00:29:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08ef5d", + "_rev": "1-cb2e4c63b8a773c1ce516c62ec5f21a0", + "oldid": "4eb386db3de67c5117000114", + "favorited": false, + "in_reply_to_user_id": 126524269, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Flyfromadream @dailysydney hopefully first 2 weeks December", + "created_at": "Fri Nov 04 06:34:22 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344323000893440", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21412962, + -33.87774753 + ] + }, + "id": 132344920349478910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 126524269, + "id_str": "126524269", + "screen_name": "Flyfromadream", + "name": "Sheree Joseph" + }, + { + "indices": [ + 15, + 27 + ], + "id": 70633511, + "id_str": "70633511", + "screen_name": "dailysydney", + "name": "Daily Sydney" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344323000893440, + "in_reply_to_screen_name": "Flyfromadream", + "id_str": "132344920349478912", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87774753, + 151.21412962 + ] + }, + "in_reply_to_user_id_str": "126524269", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 318139112, + "profile_text_color": "333333", + "followers_count": 74, + "profile_sidebar_border_color": "eeeeee", + "id_str": "318139112", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": -36000, + "statuses_count": 74, + "description": "One guy is reinventing the idea of the evening meal by opening his space for a weekly gathering of friends & strangers.This is neighbourhood dining at its best", + "friends_count": 56, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1398023468/table_for_20_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/270991326/tf20.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/270991326/tf20.jpg", + "name": "Michael Fantuz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "_Tablefor20", + "notifications": null, + "url": "http://www.tablefor20.blogspot.com/", + "created_at": "Thu Jun 16 01:17:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e08f61c", + "_rev": "1-9f5d41669605e84482827c13b21326f3", + "oldid": "4eb386dd3de67c5117000115", + "contributors": null, + "truncated": false, + "text": "I'm at Westfield Garden City (Logan Rd., at Kessels Rd., Upper Mt Gravatt) http://t.co/0nHYxqOV", + "in_reply_to_status_id": null, + "id": 132344926162784260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 75, + 95 + ], + "url": "http://t.co/0nHYxqOV", + "expanded_url": "http://4sq.com/udLBdv", + "display_url": "4sq.com/udLBdv" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.08362484, + -27.56329748 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344926162784256", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602052420/328516022_normal.jpg", + "profile_sidebar_fill_color": "f0b248", + "id": 143308182, + "profile_text_color": "0f0f0f", + "followers_count": 105, + "profile_sidebar_border_color": "f01a7a", + "id_str": "143308182", + "profile_background_color": "0f0a02", + "listed_count": 0, + "utc_offset": 25200, + "statuses_count": 3187, + "description": "Just an ordinary person... ", + "friends_count": 126, + "location": "ÜT: -6.274831,106.753813", + "profile_link_color": "1b09e6", + "profile_image_url": "http://a0.twimg.com/profile_images/1602052420/328516022_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/189356271/x4c8453a5b107a209c981cf46b99425b.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/189356271/x4c8453a5b107a209c981cf46b99425b.jpg", + "name": "yura", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "blackers_ura", + "notifications": null, + "url": null, + "created_at": "Thu May 13 03:51:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.56329748, + 153.08362484 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:34:23 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e08fed0", + "_rev": "1-6f56923eb17427499a60fbd82f7ab56c", + "oldid": "4eb386e13de67c5117000116", + "favorited": false, + "in_reply_to_user_id": 15003628, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@adesignapart No worries Warwick. Since I can't be there I can at least help find someone else to be there. :)", + "created_at": "Fri Nov 04 06:34:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343648066080769", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.71853411, + -37.91374284 + ] + }, + "id": 132344941274869760, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 15003628, + "id_str": "15003628", + "screen_name": "adesignapart", + "name": "Warwick Kay" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343648066080770, + "in_reply_to_screen_name": "adesignapart", + "id_str": "132344941274869760", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.91374284, + 147.71853411 + ] + }, + "in_reply_to_user_id_str": "15003628", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1368238343/250234_10150260787110400_557760399_9402997_1886090_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 6989, + "profile_text_color": "666666", + "followers_count": 2789, + "profile_sidebar_border_color": "181A1E", + "id_str": "6989", + "profile_background_color": "1A1B1F", + "listed_count": 170, + "utc_offset": 36000, + "statuses_count": 34427, + "description": "Online community manager, traveller.\nMoving to Hong Kong on 12 January 2012.", + "friends_count": 2088, + "location": "Paynesville, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1368238343/250234_10150260787110400_557760399_9402997_1886090_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/187640146/141300158_9e21723ad5_o.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/187640146/141300158_9e21723ad5_o.jpg", + "name": "Greg Lexiphanic", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 628, + "screen_name": "lexiphanic", + "notifications": null, + "url": "http://greg.lexiphanic.com", + "created_at": "Wed Sep 27 03:48:34 +0000 2006", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e090d7b", + "_rev": "1-e75cbb377cbcaf43e4c00267cd54b8c6", + "oldid": "4eb386e43de67c5117000117", + "contributors": null, + "truncated": false, + "text": "I'm at Melbourne Airport (MEL) (Airport Dr., Tullamarine) w/ 9 others http://t.co/HaXHbisQ", + "in_reply_to_status_id": null, + "id": 132344954042318850, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/HaXHbisQ", + "expanded_url": "http://4sq.com/sSkrcq", + "display_url": "4sq.com/sSkrcq" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.84903932, + -37.66990267 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132344954042318848", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83614988/Alex_2_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 14781638, + "profile_text_color": "666666", + "followers_count": 403, + "profile_sidebar_border_color": "181A1E", + "id_str": "14781638", + "profile_background_color": "1A1B1F", + "listed_count": 17, + "utc_offset": 36000, + "statuses_count": 10819, + "description": "Radio Producer/Announcer, Club DJ, MC, Mac-Addict and Occasional Pole Dancer (after a few Tequilas)", + "friends_count": 555, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/83614988/Alex_2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Alex Cooke", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "alexcooke", + "notifications": null, + "url": "http://alexcooke.id.au", + "created_at": "Thu May 15 04:01:12 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.66990267, + 144.84903932 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:34:30 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e090dcf", + "_rev": "1-8749f7f97a152b23bdb0530d627c09bd", + "oldid": "4eb386e53de67c5117000118", + "favorited": false, + "in_reply_to_user_id": 47905782, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tarabxx no not really..", + "created_at": "Fri Nov 04 06:34:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343694249566210", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33363638, + -38.0308959 + ] + }, + "id": 132344959398445060, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 47905782, + "id_str": "47905782", + "screen_name": "tarabxx", + "name": "Tara Bell" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343694249566200, + "in_reply_to_screen_name": "tarabxx", + "id_str": "132344959398445056", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.0308959, + 145.33363638 + ] + }, + "in_reply_to_user_id_str": "47905782", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2632, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e090de5", + "_rev": "1-7d8f0e914d50c89d24717b7a4649d537", + "oldid": "4eb386f13de67c5117000119", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "At Rivoli with @loveschack all alone in the cinema watching My Idiot Brother.", + "created_at": "Fri Nov 04 06:34:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.05586484, + -37.82926702 + ] + }, + "id": 132345010438946820, + "entities": { + "user_mentions": [ + { + "indices": [ + 15, + 26 + ], + "id": 18970570, + "id_str": "18970570", + "screen_name": "loveschack", + "name": "Karen S" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345010438946817", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82926702, + 145.05586484 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1453211759/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 173299227, + "profile_text_color": "333333", + "followers_count": 8, + "profile_sidebar_border_color": "C0DEED", + "id_str": "173299227", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 620, + "description": "TCB", + "friends_count": 46, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1453211759/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Peter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Peter28888", + "notifications": null, + "url": null, + "created_at": "Sun Aug 01 01:22:56 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e091609", + "_rev": "1-e2d4b6b9b01885b74f72589618b0af7b", + "oldid": "4eb386f63de67c511700011a", + "contributors": null, + "truncated": false, + "text": "Got plans for the weekend? How about Soju Girl, HonkyTonks or the Varsity Derby League roller disco? Check out TheCanberran.com for details.", + "in_reply_to_status_id": null, + "id": 132345031435616260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 111, + 127 + ], + "url": "TheCanberran.com", + "expanded_url": null + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.14075716, + -35.31645688 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345031435616256", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1448409402/The-Canberran-Logo-2_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 337655673, + "profile_text_color": "333333", + "followers_count": 178, + "profile_sidebar_border_color": "C0DEED", + "id_str": "337655673", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 258, + "description": "Food and Wine, Fashion, Arts and Design. A critical eye on the social side of the City of Roundabouts. editor@thecanberran.com", + "friends_count": 196, + "location": "The Nation's Capital", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1448409402/The-Canberran-Logo-2_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "The Canberran", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "TheCanberran", + "notifications": null, + "url": "http://thecanberran.com", + "created_at": "Mon Jul 18 11:18:44 +0000 2011", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.31645688, + 149.14075716 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:34:49 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0917c7", + "_rev": "1-e8e4358e9a2c1f1326529466436a9b92", + "oldid": "4eb387003de67c511700011b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@KenRoczen94: Paranormal Activity 3 sucked! #boring” love Ur profile pitcher 😃", + "created_at": "Fri Nov 04 06:34:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.91752057, + -37.76329097 + ] + }, + "id": 132345073005379580, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 13 + ], + "id": 223299859, + "id_str": "223299859", + "screen_name": "KenRoczen94", + "name": "Ken Roczen" + } + ], + "hashtags": [ + { + "indices": [ + 45, + 52 + ], + "text": "boring" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345073005379584", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.76329097, + 144.91752057 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1605612314/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 102617868, + "profile_text_color": "333333", + "followers_count": 38, + "profile_sidebar_border_color": "C0DEED", + "id_str": "102617868", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2306, + "description": "building,construction & developments + dirt bikes", + "friends_count": 57, + "location": "Melbourne Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1605612314/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/176715742/2011-Audi-Q7-S-Line-by-JE-Design-front-side-pictures.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/176715742/2011-Audi-Q7-S-Line-by-JE-Design-front-side-pictures.jpg", + "name": "tony italia", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "tonyita5", + "notifications": null, + "url": "http://www.itndevelopments.com.au", + "created_at": "Thu Jan 07 08:25:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e092025", + "_rev": "1-a7be8fcb8cd5d74895ef3c9aa7611bc6", + "oldid": "4eb387093de67c511700011c", + "contributors": null, + "truncated": false, + "text": "no STODGE tonight :( (@ Coles Kings Langley) http://t.co/DYm8nvT8", + "in_reply_to_status_id": null, + "id": 132345113518157820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 45, + 65 + ], + "url": "http://t.co/DYm8nvT8", + "expanded_url": "http://4sq.com/vujX8y", + "display_url": "4sq.com/vujX8y" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.92355, + -33.74312284 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345113518157824", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592039432/275801_1052705220_64797892_n_normal.jpg", + "profile_sidebar_fill_color": "ddffcd", + "id": 196117757, + "profile_text_color": "333333", + "followers_count": 697, + "profile_sidebar_border_color": "bddcad", + "id_str": "196117757", + "profile_background_color": "ffffff", + "listed_count": 42, + "utc_offset": 36000, + "statuses_count": 30936, + "description": "Carlton(AFL)Man since Dec03. Lapsed multi-instrumentalist since Dec06. Proud Father since 21Jul10. Cancer Free since 19Apr11. Bespectacled since 17Oct11.", + "friends_count": 1483, + "location": "Western Sydney, NSW Australia", + "profile_link_color": "0084b4", + "profile_image_url": "http://a1.twimg.com/profile_images/1592039432/275801_1052705220_64797892_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/219731937/2011-03-19_06-02-21_122.111.55.216.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/219731937/2011-03-19_06-02-21_122.111.55.216.jpg", + "name": "Peter G Gleeson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 68, + "screen_name": "p_terg", + "notifications": null, + "url": "http://peterg-gleeson.blogspot.com/", + "created_at": "Tue Sep 28 11:24:02 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.74312284, + 150.92355 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:35:08 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e092d2d", + "_rev": "1-e65be2f47f6b54192f09f5d99edcd70f", + "oldid": "4eb387143de67c511700011d", + "contributors": null, + "truncated": false, + "text": "Nemenin Bendahara Ambil Uang Makan dan Uang Belanja Barang dan Jasa (@ Bank Mandiri) http://t.co/RICSS97R", + "in_reply_to_status_id": null, + "id": 132345159475142660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 85, + 105 + ], + "url": "http://t.co/RICSS97R", + "expanded_url": "http://4sq.com/rxLblx", + "display_url": "4sq.com/rxLblx" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 123.58272672, + -10.16190228 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345159475142656", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600904598/328475179_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 143317631, + "profile_text_color": "333333", + "followers_count": 376, + "profile_sidebar_border_color": "C0DEED", + "id_str": "143317631", + "profile_background_color": "C0DEED", + "listed_count": 6, + "utc_offset": -28800, + "statuses_count": 43301, + "description": "Menjadi Pelayan anak Berkebutuhan Khusus dan disabilitas khususnya kepada Penyandang Cacat Rungu Wicara di eNTeTe ", + "friends_count": 104, + "location": "ÜT: -10.1668897,123.5983885", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1600904598/328475179_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "ARHUL PUTRA AGUNG", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "atragung", + "notifications": null, + "url": "http://www.facebook.com/arhulputraagung", + "created_at": "Thu May 13 04:28:17 +0000 2010", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -10.16190228, + 123.58272672 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:35:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/7b6d4729251ea40b.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 117.344055, + -10.997407 + ], + [ + 125.169182, + -10.997407 + ], + [ + 125.169182, + -8.062931 + ], + [ + 117.344055, + -8.062931 + ] + ] + ] + }, + "full_name": "Nusa Tenggara Timur, Indonesia", + "attributes": {}, + "id": "7b6d4729251ea40b", + "name": "Nusa Tenggara Timur" + } + }, + { + "_id": "51f39676462cca21859bd92d8e0931cc", + "_rev": "1-1b98b12f3a2270067686f829cbcbe72c", + "oldid": "4eb387183de67c511700011e", + "favorited": false, + "in_reply_to_user_id": 290976761, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@aj_howes vodafone is shit. Come and visit me at work", + "created_at": "Fri Nov 04 06:35:22 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132333447824941056", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.60330956, + -34.88917287 + ] + }, + "id": 132345173576400900, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 290976761, + "id_str": "290976761", + "screen_name": "aj_howes", + "name": "Alex Howes" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132333447824941060, + "in_reply_to_screen_name": "aj_howes", + "id_str": "132345173576400896", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.88917287, + 138.60330956 + ] + }, + "in_reply_to_user_id_str": "290976761", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618238520/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 229787624, + "profile_text_color": "d1d1d1", + "followers_count": 57, + "profile_sidebar_border_color": "ffffff", + "id_str": "229787624", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 1719, + "description": "3rd year uni student studying design and majoring in architecture. PRE ORDER #BlueSlidePark http://tinyurl.com/3javs39", + "friends_count": 148, + "location": "Adelaide", + "profile_link_color": "bdbdbd", + "profile_image_url": "http://a2.twimg.com/profile_images/1618238520/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/290854103/Undefeated_Wallpaper_desktop_background_logo_quality2.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/290854103/Undefeated_Wallpaper_desktop_background_logo_quality2.jpg", + "name": "Ben Ramsey", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "BenRamsey3", + "notifications": null, + "url": null, + "created_at": "Thu Dec 23 09:48:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e093f0e", + "_rev": "1-02f291e8e52737a3712be3b8d28a0a3a", + "oldid": "4eb387183de67c511700011f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "At Essendon station and the train is late. I need a nap so badly.", + "created_at": "Fri Nov 04 06:35:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9142073, + -37.7587488 + ] + }, + "id": 132345175212175360, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345175212175360", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.7587488, + 144.9142073 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 393046239, + "profile_text_color": "333333", + "followers_count": 23, + "profile_sidebar_border_color": "C0DEED", + "id_str": "393046239", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 363, + "description": "Hi there, I'm Mandy. I'm average. I like things and love someone, and yeah.", + "friends_count": 45, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Mandy Gu", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 132, + "screen_name": "mandyguzza", + "notifications": null, + "url": "http://mandy-blah-xox.tumblr.com/", + "created_at": "Mon Oct 17 23:12:51 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e094501", + "_rev": "1-91880c1fa4e71fd1997f5f08ca1fce9a", + "oldid": "4eb3871a3de67c5117000120", + "favorited": false, + "in_reply_to_user_id": 234246043, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mermaidfagg0t can you tell me what I did so that I can do it to others?", + "created_at": "Fri Nov 04 06:35:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345008530534400", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0972601, + -37.64043169 + ] + }, + "id": 132345184200560640, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 234246043, + "id_str": "234246043", + "screen_name": "mermaidfagg0t", + "name": "人魚束♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345008530534400, + "in_reply_to_screen_name": "mermaidfagg0t", + "id_str": "132345184200560640", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.64043169, + 145.0972601 + ] + }, + "in_reply_to_user_id_str": "234246043", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1402823130/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 22450813, + "profile_text_color": "333333", + "followers_count": 138, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22450813", + "profile_background_color": "131516", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 5383, + "description": "Hi im rhys and i hate brokencyde with a passion. @LauraLoveless_ is everything to me :)", + "friends_count": 250, + "location": "Melbourne", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1402823130/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Rhys Montgomery", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "rhys1508", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=703417461", + "created_at": "Mon Mar 02 04:30:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e095327", + "_rev": "1-07937cf0a15d5d95c5bc44a15db061a0", + "oldid": "4eb3871c3de67c5117000121", + "contributors": null, + "truncated": false, + "text": "'harbour', 'mdma', 'rowdy' & #sydneytraffic are now trending in #Sydney http://t.co/mFyRIfjp", + "in_reply_to_status_id": null, + "id": 132345190932430850, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 29, + 43 + ], + "text": "sydneytraffic" + }, + { + "indices": [ + 64, + 71 + ], + "text": "Sydney" + } + ], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/mFyRIfjp", + "expanded_url": "http://trendsmap.com/au/sydney", + "display_url": "trendsmap.com/au/sydney" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.207, + -33.8671 + ] + }, + "source": "<a href=\"http://trendsmap.com/\" rel=\"nofollow\">Trendsmap Alerting</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345190932430848", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/821109491/tm.icon.large_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 123791748, + "profile_text_color": "333333", + "followers_count": 1856, + "profile_sidebar_border_color": "C0DEED", + "id_str": "123791748", + "profile_background_color": "C0DEED", + "listed_count": 58, + "utc_offset": 36000, + "statuses_count": 8864, + "description": "Real-Time Local Twitter Trends for Sydney.", + "friends_count": 669, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/821109491/tm.icon.large_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/91912987/TrendsSydney.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/91912987/TrendsSydney.png", + "name": "Trendsmap Sydney", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "TrendsSydney", + "notifications": null, + "url": "http://trendsmap.com/local/au/sydney", + "created_at": "Wed Mar 17 06:52:47 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8671, + 151.207 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:35:27 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0958fd", + "_rev": "1-b44f86b10795b82ae6d265d2fae75d29", + "oldid": "4eb387203de67c5117000122", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Well that plan goes out the window #fuckinghateunreliablepeople", + "created_at": "Fri Nov 04 06:35:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.7665088, + -31.7474289 + ] + }, + "id": 132345209076989950, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 35, + 63 + ], + "text": "fuckinghateunreliablepeople" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345209076989952", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.7474289, + 115.7665088 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1611810787/yB0g7sE3_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 223393602, + "profile_text_color": "333333", + "followers_count": 29, + "profile_sidebar_border_color": "C0DEED", + "id_str": "223393602", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 88, + "description": "There's no such thing as an ugly woman, only an lazy one, any woman can achieve glamour.", + "friends_count": 225, + "location": "Perth WA", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1611810787/yB0g7sE3_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/356950275/432821252.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/356950275/432821252.jpg", + "name": "Rachel Butler", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "rachelceara1", + "notifications": null, + "url": null, + "created_at": "Mon Dec 06 07:56:28 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e096667", + "_rev": "1-b1c8e3255dfef9e23f7805f7c4a2ec65", + "oldid": "4eb387243de67c5117000123", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://ubersocial.com\" rel=\"nofollow\">UberSocial for Android</a>", + "text": "Now the agonising wait till Monday to find out whether I've got a job (casual). Just as well I have an exam to study for to keep me occupied", + "created_at": "Fri Nov 04 06:35:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95775307, + -37.8234831 + ] + }, + "id": 132345225661259780, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345225661259776", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8234831, + 144.95775307 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "profile_sidebar_fill_color": "91baf7", + "id": 22474528, + "profile_text_color": "0a0a0a", + "followers_count": 151, + "profile_sidebar_border_color": "52bef0", + "id_str": "22474528", + "profile_background_color": "acded6", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 10239, + "description": "My imagination tells me: Be amazing! \r\nIn the distance, time is calling out: Just get on with it, already!", + "friends_count": 118, + "location": "Melbourne, Australia", + "profile_link_color": "a80d8e", + "profile_image_url": "http://a2.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "name": "K", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "Belmoroe", + "notifications": null, + "url": null, + "created_at": "Mon Mar 02 11:06:31 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e09755d", + "_rev": "1-3fa2b557cf20075779a37c66fcb9b217", + "oldid": "4eb387243de67c5117000124", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Mapping! ", + "created_at": "Fri Nov 04 06:35:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.86542731, + -32.03889584 + ] + }, + "id": 132345225636089860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345225636089856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.03889584, + 115.86542731 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616962706/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 312546016, + "profile_text_color": "0a050a", + "followers_count": 237, + "profile_sidebar_border_color": "120612", + "id_str": "312546016", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 18077, + "description": "an optimistic person who never stopped loving her family, manchester united, Chicharito,HIMYM, her best mates, Tangled & ice cream☺.", + "friends_count": 329, + "location": "in the freezer", + "profile_link_color": "090a0a", + "profile_image_url": "http://a2.twimg.com/profile_images/1616962706/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "name": "❥C.Christine", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 94, + "screen_name": "chynietoto", + "notifications": null, + "url": null, + "created_at": "Tue Jun 07 09:00:06 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e097edd", + "_rev": "1-3a87c132dc10470f12751664bfb8afb4", + "oldid": "4eb387283de67c5117000125", + "contributors": null, + "truncated": false, + "text": "Snack Bars (less fat) yumyummm @ Woolworths http://t.co/wc5oXmeM", + "in_reply_to_status_id": null, + "id": 132345242740465660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 48, + 68 + ], + "url": "http://t.co/wc5oXmeM", + "expanded_url": "http://instagr.am/p/SqQ6_/", + "display_url": "instagr.am/p/SqQ6_/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.092557, + -33.85901 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345242740465665", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616902636/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 103275316, + "profile_text_color": "009973", + "followers_count": 50, + "profile_sidebar_border_color": "009973", + "id_str": "103275316", + "profile_background_color": "009973", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 69, + "description": "you say the best ,when you say nothing at all", + "friends_count": 90, + "location": "sydney", + "profile_link_color": "009973", + "profile_image_url": "http://a2.twimg.com/profile_images/1616902636/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/65359431/n42628340419_1908360_450.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/65359431/n42628340419_1908360_450.jpg", + "name": "filmiie bieber", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "filmiie", + "notifications": null, + "url": null, + "created_at": "Sat Jan 09 13:52:39 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.85901, + 151.092557 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:35:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0980a1", + "_rev": "1-69ff68e3e473a8dbb383cbcfacbd2b69", + "oldid": "4eb387293de67c5117000126", + "favorited": false, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "tengo una hambre... que parecen dos...", + "created_at": "Fri Nov 04 06:35:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20231207, + -33.88328473 + ] + }, + "in_reply_to_user_id_str": null, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "id_str": "132345247916228610", + "place": null, + "in_reply_to_user_id": null, + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88328473, + 151.20231207 + ] + }, + "id": 132345247916228600, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "id": 45077294, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1276456999/Picture_8_normal.png", + "profile_sidebar_fill_color": "2e1505", + "geo_enabled": true, + "profile_text_color": "ad3b0a", + "followers_count": 129, + "protected": false, + "location": "", + "profile_background_color": "050400", + "listed_count": 1, + "utc_offset": -25200, + "statuses_count": 7105, + "description": "i keep my feet on the ground and my head in the clouds", + "friends_count": 223, + "profile_link_color": "8c5f05", + "profile_image_url": "http://a2.twimg.com/profile_images/1276456999/Picture_8_normal.png", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/142851365/7029_259488950643_544090643_9027065_8248483_n.jpg", + "id_str": "45077294", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/142851365/7029_259488950643_544090643_9027065_8248483_n.jpg", + "name": "Maricarmen Villarrea", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 61, + "screen_name": "maricarmen_v", + "notifications": null, + "url": null, + "created_at": "Sat Jun 06 05:40:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Mountain Time (US & Canada)", + "profile_sidebar_border_color": "080103", + "default_profile": false, + "is_translator": false + } + }, + { + "_id": "51f39676462cca21859bd92d8e098af0", + "_rev": "1-96132cbf61dc736ef0a0326b3f49ccdb", + "oldid": "4eb3872b3de67c5117000127", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Moto42Rogerh\n\nHey you are not following me I can't chat on Dm till you do ???", + "created_at": "Fri Nov 04 06:35:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132345253234606080, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345253234606080", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 910, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9569, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1708, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e099027", + "_rev": "1-2e590d2426a85e3d3c6f24b12c88d948", + "oldid": "4eb3872d3de67c5117000128", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Off house hunting because I am over assignment work for the moment", + "created_at": "Fri Nov 04 06:35:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.03672535, + -27.31221006 + ] + }, + "id": 132345264148193280, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345264148193280", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.31221006, + 153.03672535 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610403645/image_normal.jpg", + "profile_sidebar_fill_color": "f5ea18", + "id": 228596665, + "profile_text_color": "0ead25", + "followers_count": 17, + "profile_sidebar_border_color": "fa610f", + "id_str": "228596665", + "profile_background_color": "eb0523", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 232, + "description": "writer, designer, and huge music lover, but mostly oz music :)", + "friends_count": 144, + "location": "Australia QLD", + "profile_link_color": "0f0f03", + "profile_image_url": "http://a2.twimg.com/profile_images/1610403645/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243999099/tumblr_lbxxk6tvgf1qcuj4to1_400.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/243999099/tumblr_lbxxk6tvgf1qcuj4to1_400.jpg", + "name": "Andy Free", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "Andy_free_", + "notifications": null, + "url": null, + "created_at": "Mon Dec 20 04:59:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e099dfc", + "_rev": "1-d3ff4e54f05836769d4bbcdc06201ae2", + "oldid": "4eb3873e3de67c5117000129", + "favorited": false, + "in_reply_to_user_id": 20968539, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@Doctortriplej consider it done.. That would make my millennium!!!!", + "created_at": "Fri Nov 04 06:36:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344476873129984", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96073126, + -37.81026008 + ] + }, + "id": 132345333656195070, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 20968539, + "id_str": "20968539", + "screen_name": "Doctortriplej", + "name": "Lindsay McDougall" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344476873129980, + "in_reply_to_screen_name": "Doctortriplej", + "id_str": "132345333656195072", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81026008, + 144.96073126 + ] + }, + "in_reply_to_user_id_str": "20968539", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1525689810/2F8DD3A2-4F61-42AE-8270-47B551F6FF02_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 211120102, + "profile_text_color": "333333", + "followers_count": 34, + "profile_sidebar_border_color": "C0DEED", + "id_str": "211120102", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 202, + "description": "25 year old network dude living in Melbourne, Australia, cannot wait for summer!!", + "friends_count": 267, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1525689810/2F8DD3A2-4F61-42AE-8270-47B551F6FF02_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Michael Doreian", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 34, + "screen_name": "mickeydoz", + "notifications": null, + "url": "http://www.facebook.com/mdoreian", + "created_at": "Tue Nov 02 11:24:38 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e09a867", + "_rev": "1-c71bfc2c03bb7914635d2a7b4be38077", + "oldid": "4eb3874a3de67c511700012a", + "favorited": false, + "in_reply_to_user_id": 24356836, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@panja47 @aj_howes I'm getting one. \"get money, fuck bitches\" not sure if mum would approve", + "created_at": "Fri Nov 04 06:36:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132338817037381632", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.603311, + -34.88922429 + ] + }, + "id": 132345382893133820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 24356836, + "id_str": "24356836", + "screen_name": "panja47", + "name": "James" + }, + { + "indices": [ + 9, + 18 + ], + "id": 290976761, + "id_str": "290976761", + "screen_name": "aj_howes", + "name": "Alex Howes" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132338817037381630, + "in_reply_to_screen_name": "panja47", + "id_str": "132345382893133826", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.88922429, + 138.603311 + ] + }, + "in_reply_to_user_id_str": "24356836", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618238520/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 229787624, + "profile_text_color": "d1d1d1", + "followers_count": 57, + "profile_sidebar_border_color": "ffffff", + "id_str": "229787624", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 1720, + "description": "3rd year uni student studying design and majoring in architecture. PRE ORDER #BlueSlidePark http://tinyurl.com/3javs39", + "friends_count": 148, + "location": "Adelaide", + "profile_link_color": "bdbdbd", + "profile_image_url": "http://a2.twimg.com/profile_images/1618238520/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/290854103/Undefeated_Wallpaper_desktop_background_logo_quality2.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/290854103/Undefeated_Wallpaper_desktop_background_logo_quality2.jpg", + "name": "Ben Ramsey", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "BenRamsey3", + "notifications": null, + "url": null, + "created_at": "Thu Dec 23 09:48:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e09b2ce", + "_rev": "1-1ceee8f0325b1a549d9a3b1b2781a73e", + "oldid": "4eb3874f3de67c511700012b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "Belgian Beer Cafe? I think so", + "created_at": "Fri Nov 04 06:36:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96727838, + -37.81769725 + ] + }, + "id": 132345406100209660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345406100209664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81769725, + 144.96727838 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504411463/bok_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15420301, + "profile_text_color": "333333", + "followers_count": 323, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15420301", + "profile_background_color": "C0DEED", + "listed_count": 30, + "utc_offset": 36000, + "statuses_count": 10412, + "description": "Author of iTransit, tramTRACKER for iPhone and other stuff. Developer in Melbourne. All opinions my own.", + "friends_count": 133, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1504411463/bok_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robert Amos", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 36, + "screen_name": "bok_", + "notifications": null, + "url": null, + "created_at": "Sun Jul 13 23:59:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e09b5cb", + "_rev": "1-98f46a9738c18767b273c7c48c56f9ee", + "oldid": "4eb387513de67c511700012c", + "contributors": null, + "truncated": false, + "text": "Stephen Fry, @stephenfry is now trending in #Canberra http://t.co/U7Ho6bRT", + "in_reply_to_status_id": null, + "id": 132345412685275140, + "entities": { + "user_mentions": [ + { + "indices": [ + 13, + 24 + ], + "id": 15439395, + "id_str": "15439395", + "screen_name": "stephenfry", + "name": "Stephen Fry" + } + ], + "hashtags": [ + { + "indices": [ + 44, + 53 + ], + "text": "Canberra" + } + ], + "urls": [ + { + "indices": [ + 54, + 74 + ], + "url": "http://t.co/U7Ho6bRT", + "expanded_url": "http://trendsmap.com/au/canberra", + "display_url": "trendsmap.com/au/canberra" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.129, + -35.282 + ] + }, + "source": "<a href=\"http://trendsmap.com/\" rel=\"nofollow\">Trendsmap Alerting</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345412685275136", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1078806615/TrendsMap-Logo-_Dark___1__normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 132388089, + "profile_text_color": "333333", + "followers_count": 627, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "132388089", + "profile_background_color": "022330", + "listed_count": 27, + "utc_offset": 36000, + "statuses_count": 1157, + "description": "Real-time Canberra Twitter Trends", + "friends_count": 140, + "location": "Canberra, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1078806615/TrendsMap-Logo-_Dark___1__normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/149521869/TrendsCanberra.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/149521869/TrendsCanberra.png", + "name": "Trendsmap Canberra", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "TrendsCanberra", + "notifications": null, + "url": "http://trendsmap.com/local/au/canberra", + "created_at": "Tue Apr 13 03:07:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.282, + 149.129 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:36:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e09c4af", + "_rev": "1-94b32164b11d945683aee25c6a570aff", + "oldid": "4eb387593de67c511700012d", + "contributors": null, + "truncated": false, + "text": "Cheers for Friday. http://t.co/N3jAu0Br", + "in_reply_to_status_id": null, + "id": 132345445308563460, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYvezeCAAAyieG.jpg", + "expanded_url": "http://twitter.com/grechj/status/132345445308563456/photo/1", + "display_url": "pic.twitter.com/N3jAu0Br", + "url": "http://t.co/N3jAu0Br", + "sizes": { + "large": { + "h": 1024, + "w": 768, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132345445312757760", + "indices": [ + 19, + 39 + ], + "type": "photo", + "id": 132345445312757760, + "media_url": "http://p.twimg.com/AdYvezeCAAAyieG.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.14084221, + -35.31655743 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345445308563456", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/877398491/Screen_shot_2010-05-06_at_3.02.26_PM_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 17772400, + "profile_text_color": "333333", + "followers_count": 253, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "17772400", + "profile_background_color": "022330", + "listed_count": 11, + "utc_offset": -36000, + "statuses_count": 1005, + "description": "Loyalist for hire. Made the journey from News Ltd to DBCDE. Views are my own ", + "friends_count": 355, + "location": "Canberra", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/877398491/Screen_shot_2010-05-06_at_3.02.26_PM_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Joshua Grech", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "grechj", + "notifications": null, + "url": null, + "created_at": "Mon Dec 01 05:31:13 +0000 2008", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.31655743, + 149.14084221 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:36:28 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e09d0e2", + "_rev": "1-c4d22b72a5d57758a59420022ce7497c", + "oldid": "4eb3875b3de67c511700012e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Today was amazing my crush laid next I me and spoke to me and now I might be seeing him tonight", + "created_at": "Fri Nov 04 06:36:30 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.3080285, + -27.86380996 + ] + }, + "id": 132345457459470340, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345457459470336", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.86380996, + 153.3080285 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609113222/Picture0013_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 341995597, + "profile_text_color": "333333", + "followers_count": 100, + "profile_sidebar_border_color": "C0DEED", + "id_str": "341995597", + "profile_background_color": "C0DEED", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 944, + "description": "i am being followed by cody simpson (: i am over being bullied i will be the one laughing when i am singing and doing what i love on stage", + "friends_count": 254, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1609113222/Picture0013_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/353747142/IMG_0245.JPG", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/353747142/IMG_0245.JPG", + "name": "Alexandra Jane'e", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "AlexDeZilva", + "notifications": null, + "url": null, + "created_at": "Mon Jul 25 09:10:43 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e09e036", + "_rev": "1-953180b7339a8dac21d57ca4d2799c8d", + "oldid": "4eb387613de67c511700012f", + "favorited": false, + "in_reply_to_user_id": 381357127, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Victoria_Pubs a Friday night! \nAnd Sunday arvo- for a cheeky Sunday sesh!", + "created_at": "Fri Nov 04 06:36:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132320416193720320", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96349179, + -37.82956081 + ] + }, + "id": 132345481740304380, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 381357127, + "id_str": "381357127", + "screen_name": "Victoria_Pubs", + "name": "Victorian_Pubs" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132320416193720320, + "in_reply_to_screen_name": "Victoria_Pubs", + "id_str": "132345481740304384", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82956081, + 144.96349179 + ] + }, + "in_reply_to_user_id_str": "381357127", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609659417/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 193941626, + "profile_text_color": "3D1957", + "followers_count": 112, + "profile_sidebar_border_color": "65B0DA", + "id_str": "193941626", + "profile_background_color": "642D8B", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1727, + "description": "I'm a legend.. No biggie! Lover of; @AidenKingAudio, @Smado8 & @Jessiceeerrrr, Zali&Bear, waterpolo, dad jokes, sangria, sarcasm, summer, my mates & burritos.x", + "friends_count": 203, + "location": "williamstown", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1609659417/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/152529574/phhoto.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/152529574/phhoto.JPG", + "name": "Hayley Morrison", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 419, + "screen_name": "hazzarimo", + "notifications": null, + "url": null, + "created_at": "Thu Sep 23 01:24:35 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e09e2f6", + "_rev": "1-8020ba4d55b78b7757baf854cd11c36e", + "oldid": "4eb387623de67c5117000130", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "In central station this morning I seen a body on the tracks police everywhere. The man stabbed himself then got tasered by cops. #Australia", + "created_at": "Fri Nov 04 06:36:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19100444, + -33.86895728 + ] + }, + "id": 132345484726632450, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 129, + 139 + ], + "text": "Australia" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345484726632448", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86895728, + 151.19100444 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620121257/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 282107001, + "profile_text_color": "333333", + "followers_count": 66, + "profile_sidebar_border_color": "C0DEED", + "id_str": "282107001", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 0, + "statuses_count": 345, + "description": "", + "friends_count": 233, + "location": "Dublin/ Ireland ", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1620121257/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/256880203/IMG_0075.PNG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/256880203/IMG_0075.PNG", + "name": "Paul fetherston", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "TheFeth", + "notifications": null, + "url": null, + "created_at": "Thu Apr 14 15:19:47 +0000 2011", + "contributors_enabled": false, + "time_zone": "London", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e09f132", + "_rev": "1-92b8e3c9ab7cbf1e63df0411eedf7535", + "oldid": "4eb3876a3de67c5117000131", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker Use your imagination, I did and it turned out pretty good.", + "created_at": "Fri Nov 04 06:36:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345173500895232", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132345515852562430, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345173500895230, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132345515852562432", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20035, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a0016", + "_rev": "1-3a666957d2086dd8b4fd1784c35b5573", + "oldid": "4eb3876e3de67c5117000132", + "favorited": false, + "in_reply_to_user_id": 355391740, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@VatsalBieber Hey I followed u please follow back :)", + "created_at": "Fri Nov 04 06:36:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.167723, + -38.22172647 + ] + }, + "id": 132345531786735620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 355391740, + "id_str": "355391740", + "screen_name": "VatsalBieber", + "name": "Vatsal Bieber" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "VatsalBieber", + "id_str": "132345531786735616", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.22172647, + 145.167723 + ] + }, + "in_reply_to_user_id_str": "355391740", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1545269417/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 372166524, + "profile_text_color": "333333", + "followers_count": 38, + "profile_sidebar_border_color": "C0DEED", + "id_str": "372166524", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 23, + "description": "", + "friends_count": 147, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1545269417/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Tracey Lehmann", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "TraceyBieber21", + "notifications": null, + "url": null, + "created_at": "Mon Sep 12 08:14:46 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a03ad", + "_rev": "1-30bfba31609777bb83f8997b2240c0df", + "oldid": "4eb3876f3de67c5117000133", + "contributors": null, + "truncated": false, + "text": "I'm at La Bodeguita Del Medio (125 York St., Sydney) http://t.co/zv6S7Eqg", + "in_reply_to_status_id": null, + "id": 132345538824777730, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 53, + 73 + ], + "url": "http://t.co/zv6S7Eqg", + "expanded_url": "http://4sq.com/tP0Iw5", + "display_url": "4sq.com/tP0Iw5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.206607, + -33.871758 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345538824777728", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1089693626/scole01_normal.jpg", + "profile_sidebar_fill_color": "c1e5f1", + "id": 14220556, + "profile_text_color": "000000", + "followers_count": 409, + "profile_sidebar_border_color": "659ee7", + "id_str": "14220556", + "profile_background_color": "ffffff", + "listed_count": 9, + "utc_offset": 36000, + "statuses_count": 1723, + "description": "SEO & web developer based in Sydney, Australia. Photography, travel, F1 & cricket fan and a craft beer enthusiast.", + "friends_count": 818, + "location": "Sydney, Australia", + "profile_link_color": "289de6", + "profile_image_url": "http://a2.twimg.com/profile_images/1089693626/scole01_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/197487461/sydney.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/197487461/sydney.jpg", + "name": "Simon Cole", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 18, + "screen_name": "scole01", + "notifications": null, + "url": "http://www.simoncole.com.au/", + "created_at": "Tue Mar 25 22:55:59 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.871758, + 151.206607 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:36:49 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a06c0", + "_rev": "1-2a9cdd48a4a800381dfb7547b670069e", + "oldid": "4eb387723de67c5117000134", + "contributors": null, + "truncated": false, + "text": "I'm at Cairns Airport (CNS) Gate 19 (Aeroglen) http://t.co/mpKbiftS", + "in_reply_to_status_id": null, + "id": 132345548861747200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/mpKbiftS", + "expanded_url": "http://4sq.com/tSZPle", + "display_url": "4sq.com/tSZPle" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.753797, + -16.876559 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345548861747200", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602141822/image_normal.jpg", + "profile_sidebar_fill_color": "A0C5C7", + "id": 16388574, + "profile_text_color": "333333", + "followers_count": 52, + "profile_sidebar_border_color": "86A4A6", + "id_str": "16388574", + "profile_background_color": "709397", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 473, + "description": "", + "friends_count": 66, + "location": "Sydney, Australia", + "profile_link_color": "FF3300", + "profile_image_url": "http://a2.twimg.com/profile_images/1602141822/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme6/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme6/bg.gif", + "name": "Aaron Stel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "aaronstel", + "notifications": null, + "url": null, + "created_at": "Sun Sep 21 07:31:57 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -16.876559, + 145.753797 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:36:52 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a0710", + "_rev": "1-461529e6da7e1769881313af6e8e18cc", + "oldid": "4eb387773de67c5117000135", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "web", + "text": "trip to Sentani.", + "created_at": "Fri Nov 04 06:36:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": null, + "id": 132345573520048130, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345573520048128", + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + }, + "retweet_count": 0, + "geo": null, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1543900699/Picture0173_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 76866313, + "profile_text_color": "333333", + "followers_count": 340, + "profile_sidebar_border_color": "eeeeee", + "id_str": "76866313", + "profile_background_color": "B2DFDA", + "listed_count": 2, + "utc_offset": 25200, + "statuses_count": 2017, + "description": "be a Giver, not a Taker.\r\nListen more, Talk less.\r\nCompliment more, Criticize less.\r\nand Forgive more, Judge less.\r\n\r\nввм™ pin: 25DEDC9A | plurk : vin_219", + "friends_count": 289, + "location": "Jayapura, Papua", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1543900699/Picture0173_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/141118061/219-vert.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/141118061/219-vert.jpg", + "name": "Vina Van Suhartawan", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "vinvania", + "notifications": null, + "url": "http://vanfan219.tumblr.com/", + "created_at": "Thu Sep 24 05:38:13 +0000 2009", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a1102", + "_rev": "1-e7ccbff637fad10131356be019cdb31f", + "oldid": "4eb3877e3de67c5117000136", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "My day get shit n shitter. took me an hour to get to apple store n find out their apple system was down n they cant replace my iPhone. #fail", + "created_at": "Fri Nov 04 06:37:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12629798, + -37.78459844 + ] + }, + "id": 132345600673988600, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 135, + 140 + ], + "text": "fail" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345600673988608", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.78459844, + 145.12629798 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1386431940/photo_normal.PNG", + "profile_sidebar_fill_color": "efefef", + "id": 33678406, + "profile_text_color": "333333", + "followers_count": 126, + "profile_sidebar_border_color": "eeeeee", + "id_str": "33678406", + "profile_background_color": "131516", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 5387, + "description": "Good at complaining, slacking and procrastinating.", + "friends_count": 518, + "location": "melbourne, penang and corio", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1386431940/photo_normal.PNG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Eng Meng Chuah", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "engmeng", + "notifications": null, + "url": "http://www.facebook.com/engmeng", + "created_at": "Mon Apr 20 21:50:33 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a13be", + "_rev": "1-5f6fad32460543f01f2e80bcc599a16d", + "oldid": "4eb387813de67c5117000137", + "contributors": null, + "truncated": false, + "text": "Relaxing in the massage chair at hairdresser, getting re-blonded. (@ Australia On Collins) http://t.co/IjaoAHTO", + "in_reply_to_status_id": null, + "id": 132345614615851000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 91, + 111 + ], + "url": "http://t.co/IjaoAHTO", + "expanded_url": "http://4sq.com/siz9zj", + "display_url": "4sq.com/siz9zj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.964966, + -37.81556742 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345614615851008", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1571546306/69cc1fbe-f759-4b65-9255-03530d1b5da1_normal.png", + "profile_sidebar_fill_color": "252429", + "id": 239114908, + "profile_text_color": "666666", + "followers_count": 87, + "profile_sidebar_border_color": "181A1E", + "id_str": "239114908", + "profile_background_color": "1A1B1F", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1150, + "description": "Loving Carlton FC, coffee, chocolate, boys with tattoos. Not necessarily in that order. F1's & V8SC keeping me sane in AFL off-season.", + "friends_count": 375, + "location": "Brunswick, Vic, AUS", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1571546306/69cc1fbe-f759-4b65-9255-03530d1b5da1_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Tara M", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "tazdogga", + "notifications": null, + "url": null, + "created_at": "Sun Jan 16 21:17:41 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81556742, + 144.964966 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:37:08 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a214c", + "_rev": "1-dd5aecc8ae427a88d60390fcb2126297", + "oldid": "4eb387813de67c5117000138", + "contributors": null, + "truncated": false, + "text": "On the way to lorne @ Somewhere along the highway http://t.co/AFpki02n", + "in_reply_to_status_id": null, + "id": 132345616507486200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 51, + 71 + ], + "url": "http://t.co/AFpki02n", + "expanded_url": "http://instagr.am/p/SqRMF/", + "display_url": "instagr.am/p/SqRMF/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.8163, + -37.82867 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345616507486208", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1404517536/6_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 251037444, + "profile_text_color": "fafafa", + "followers_count": 17, + "profile_sidebar_border_color": "000000", + "id_str": "251037444", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 329, + "description": "cherish every moment everyday! :)", + "friends_count": 77, + "location": "Melbourne, Australia", + "profile_link_color": "d40707", + "profile_image_url": "http://a1.twimg.com/profile_images/1404517536/6_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/279569084/1.1.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/279569084/1.1.jpg", + "name": "Khai L Chan", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "chankhailing", + "notifications": null, + "url": "http://chankhailing.blogspot.com/", + "created_at": "Sat Feb 12 09:22:12 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82867, + 144.8163 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:37:08 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a2b3d", + "_rev": "1-bdd2717251437cb36ec269b3ea28df0d", + "oldid": "4eb387853de67c5117000139", + "contributors": null, + "truncated": false, + "text": "ABL - Game 1 - Sydney Blue Sox v Melbourne Aces (@ Blue Sox Stadium) [pic]: http://t.co/qY58VxvP", + "in_reply_to_status_id": null, + "id": 132345633431502850, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 76, + 96 + ], + "url": "http://t.co/qY58VxvP", + "expanded_url": "http://4sq.com/s6B3x7", + "display_url": "4sq.com/s6B3x7" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.8549881, + -33.7702292 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345633431502850", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1545457410/DSC_0768_-_Copy_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 102666368, + "profile_text_color": "333333", + "followers_count": 167, + "profile_sidebar_border_color": "eeeeee", + "id_str": "102666368", + "profile_background_color": "131516", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 281, + "description": "Sports nut....", + "friends_count": 732, + "location": "Peakhurst", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1545457410/DSC_0768_-_Copy_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/158760024/440207-dragons.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/158760024/440207-dragons.jpg", + "name": "Chris Blackwell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "aussieblackwell", + "notifications": null, + "url": null, + "created_at": "Thu Jan 07 12:40:02 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.7702292, + 150.8549881 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:37:12 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a33b0", + "_rev": "1-6f8ab7a1563940d52d82acfe8bb442a7", + "oldid": "4eb387873de67c511700013a", + "contributors": null, + "truncated": false, + "text": "I'm at Fitness First (Chadstone Shopping Centre, 1341 Dandenong Rd, Chadstone) http://t.co/vKZzqvhu", + "in_reply_to_status_id": null, + "id": 132345638338830340, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 79, + 99 + ], + "url": "http://t.co/vKZzqvhu", + "expanded_url": "http://4sq.com/vutehJ", + "display_url": "4sq.com/vutehJ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0827892, + -37.8873944 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345638338830336", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1309745661/image_normal.jpg", + "profile_sidebar_fill_color": "08daff", + "id": 36275498, + "profile_text_color": "0389ff", + "followers_count": 85, + "profile_sidebar_border_color": "ffd505", + "id_str": "36275498", + "profile_background_color": "6cff0a", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1409, + "description": "", + "friends_count": 169, + "location": "Australia,Melbourne", + "profile_link_color": "26872c", + "profile_image_url": "http://a2.twimg.com/profile_images/1309745661/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/104805261/clayton-1.jpeg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/104805261/clayton-1.jpeg", + "name": "zheng li", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 88, + "screen_name": "leoleakey", + "notifications": null, + "url": null, + "created_at": "Wed Apr 29 03:33:02 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8873944, + 145.0827892 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:37:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a39a7", + "_rev": "1-abae47a27dde5ded561d5dac60b028a1", + "oldid": "4eb387873de67c511700013b", + "favorited": false, + "in_reply_to_user_id": 8830542, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Xfm one day like this by elbow!", + "created_at": "Fri Nov 04 06:37:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18472456, + -33.88427042 + ] + }, + "id": 132345638464663550, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 4 + ], + "id": 8830542, + "id_str": "8830542", + "screen_name": "Xfm", + "name": "Xfm" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "Xfm", + "id_str": "132345638464663552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88427042, + 151.18472456 + ] + }, + "in_reply_to_user_id_str": "8830542", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1324471918/224688_10150166650001284_627176283_6936196_8088801_n_normal.jpg", + "profile_sidebar_fill_color": "eb99b4", + "id": 29683217, + "profile_text_color": "333333", + "followers_count": 20, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "29683217", + "profile_background_color": "9AE4E8", + "listed_count": 0, + "utc_offset": 0, + "statuses_count": 631, + "description": "i live in london...but also at college in sydney. i'm studying vet science. i use twitter to offload whatever random thoughts i may have. enjoy it. or not.", + "friends_count": 58, + "location": "London", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1324471918/224688_10150166650001284_627176283_6936196_8088801_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/284149406/twitter_3.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/284149406/twitter_3.jpg", + "name": "Emily Williams", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "EmilyAustralia", + "notifications": null, + "url": "http://www.facebook.com/emilyaustralia", + "created_at": "Wed Apr 08 09:44:54 +0000 2009", + "contributors_enabled": false, + "time_zone": "London", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a4390", + "_rev": "1-e06613c9f4f68a4629d7cf2dbaf58337", + "oldid": "4eb387883de67c511700013c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Moved from the Bollinger rose to the very nice 2008 Henschke that's sitting behind the bar in a decanter in the @QantasAirways First lounge!", + "created_at": "Fri Nov 04 06:37:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1685588, + -33.93587788 + ] + }, + "id": 132345644596731900, + "entities": { + "user_mentions": [ + { + "indices": [ + 112, + 126 + ], + "id": 218730857, + "id_str": "218730857", + "screen_name": "QantasAirways", + "name": "Qantas Airways" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345644596731904", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93587788, + 151.1685588 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1549905798/shaunledge-500x500_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14439876, + "profile_text_color": "333333", + "followers_count": 250, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14439876", + "profile_background_color": "022330", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 2101, + "description": "Professional in the hosted services industry. Love travel, reading, good food and wine, and more :-)", + "friends_count": 214, + "location": "SYD and CBR", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1549905798/shaunledge-500x500_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Shaun Ewing", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "swewing", + "notifications": null, + "url": "http://shaun.net", + "created_at": "Sat Apr 19 02:26:04 +0000 2008", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a524c", + "_rev": "1-09bcdb23e0748ecd721a531a497eb6c1", + "oldid": "4eb3878c3de67c511700013d", + "favorited": false, + "in_reply_to_user_id": 14558504, + "contributors": null, + "source": "<a href=\"http://levelupstudio.com\" rel=\"nofollow\">Plume </a>", + "text": "@jrgibson1 if you click on the fare type it'll tell you exactly the conditions of that fare.", + "created_at": "Fri Nov 04 06:37:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132319479362355200", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20679262, + -33.88412383 + ] + }, + "id": 132345659331313660, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 14558504, + "id_str": "14558504", + "screen_name": "jrgibson1", + "name": "Jayar" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132319479362355200, + "in_reply_to_screen_name": "jrgibson1", + "id_str": "132345659331313664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88412383, + 151.20679262 + ] + }, + "in_reply_to_user_id_str": "14558504", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1573603482/IMG_20110909_204256_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16185812, + "profile_text_color": "333333", + "followers_count": 247, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16185812", + "profile_background_color": "C0DEED", + "listed_count": 41, + "utc_offset": 36000, + "statuses_count": 23780, + "description": "25, M, Woodcroft, Sydney. Train Controller and Amateur Astronomer. Enjoy Hiking, Cycling, Singing, Musicals and staring out to space for those faint fuzzies. ", + "friends_count": 284, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1573603482/IMG_20110909_204256_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "AstroDamo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "AstroDamo", + "notifications": null, + "url": "http://www.facebook.com/AstroDamo", + "created_at": "Mon Sep 08 15:25:41 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a5c71", + "_rev": "1-0f2122b301ef08428659d6d1c0ddbda8", + "oldid": "4eb3878c3de67c511700013e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "who wants to join @AndyRoflz @ahankey and me at the Belgian?", + "created_at": "Fri Nov 04 06:37:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98122198, + -37.84759348 + ] + }, + "id": 132345661680123900, + "entities": { + "user_mentions": [ + { + "indices": [ + 18, + 28 + ], + "id": 16806737, + "id_str": "16806737", + "screen_name": "AndyRoflz", + "name": "Andrew Wrathall" + }, + { + "indices": [ + 29, + 37 + ], + "id": 125180195, + "id_str": "125180195", + "screen_name": "ahankey", + "name": "Andrea Hanke" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345661680123904", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84759348, + 144.98122198 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570225831/no_beardy_me_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 19267585, + "profile_text_color": "333333", + "followers_count": 1284, + "profile_sidebar_border_color": "C0DEED", + "id_str": "19267585", + "profile_background_color": "C0DEED", + "listed_count": 96, + "utc_offset": 36000, + "statuses_count": 13552, + "description": "bookish sort; enthusiast of old cars; collector of watches, etc. 'A droll bugger', apparently. Grumpy, frequently. Insomniac, often. Dipsomaniac, always.", + "friends_count": 1132, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1570225831/no_beardy_me_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Tim Coronel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "Tim_Coronel", + "notifications": null, + "url": "http://twitter.com/#!/Tim_Coronel/media/grid", + "created_at": "Wed Jan 21 00:40:32 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a66a1", + "_rev": "1-25275950afeb55d2e1b31484894925c7", + "oldid": "4eb387933de67c511700013f", + "favorited": false, + "in_reply_to_user_id": 234246043, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mermaidfagg0t nope", + "created_at": "Fri Nov 04 06:37:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345475545309184", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.097132, + -37.64047916 + ] + }, + "id": 132345689605812220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 234246043, + "id_str": "234246043", + "screen_name": "mermaidfagg0t", + "name": "人魚束♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345475545309180, + "in_reply_to_screen_name": "mermaidfagg0t", + "id_str": "132345689605812225", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.64047916, + 145.097132 + ] + }, + "in_reply_to_user_id_str": "234246043", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1402823130/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 22450813, + "profile_text_color": "333333", + "followers_count": 138, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22450813", + "profile_background_color": "131516", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 5384, + "description": "Hi im rhys and i hate brokencyde with a passion. @LauraLoveless_ is everything to me :)", + "friends_count": 250, + "location": "Melbourne", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1402823130/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Rhys Montgomery", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "rhys1508", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=703417461", + "created_at": "Mon Mar 02 04:30:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a722e", + "_rev": "1-218f11638ac62347016a11d913585841", + "oldid": "4eb387953de67c5117000140", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>", + "text": "Seeing my 2 fav girls :D yaaay!!", + "created_at": "Fri Nov 04 06:37:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.15651, + -27.438027 + ] + }, + "id": 132345697818251260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345697818251264", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.438027, + 153.15651 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621521421/FacebookHomescreenImage_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 393140741, + "profile_text_color": "333333", + "followers_count": 13, + "profile_sidebar_border_color": "C0DEED", + "id_str": "393140741", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 199, + "description": null, + "friends_count": 27, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1621521421/FacebookHomescreenImage_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "mana", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "emayenay", + "notifications": null, + "url": null, + "created_at": "Tue Oct 18 02:40:50 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a73ee", + "_rev": "1-ba5a3030ec2b19591867846a393bc218", + "oldid": "4eb387983de67c5117000141", + "contributors": null, + "truncated": false, + "text": "I'm at Warner Home Video (116 Military Road, Neutral Bay) http://t.co/tW7bNSo6", + "in_reply_to_status_id": null, + "id": 132345710094991360, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 58, + 78 + ], + "url": "http://t.co/tW7bNSo6", + "expanded_url": "http://4sq.com/v4b9ig", + "display_url": "4sq.com/v4b9ig" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.218053, + -33.829573 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345710094991360", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1477372672/Profile_pic_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 28748641, + "profile_text_color": "333333", + "followers_count": 2642, + "profile_sidebar_border_color": "C0DEED", + "id_str": "28748641", + "profile_background_color": "70B0CF", + "listed_count": 84, + "utc_offset": 36000, + "statuses_count": 4473, + "description": "Head of branded content @onesmallplanet your social media outsource resource centre lousy at golf, not bad at fitness\r\n ", + "friends_count": 2885, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1477372672/Profile_pic_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/173028918/twilk_background_4ce5a3eace5b2.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/173028918/twilk_background_4ce5a3eace5b2.jpg", + "name": "graham lang", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "grahamlang", + "notifications": null, + "url": "http://bit.ly/cpYHkK", + "created_at": "Sat Apr 04 05:41:00 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.829573, + 151.218053 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:37:30 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a74e2", + "_rev": "1-9009edb5e324b7f051862a53bca156ae", + "oldid": "4eb3879e3de67c5117000142", + "favorited": false, + "in_reply_to_user_id": 172634213, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@robbiefarah what a ripper round 1 Tigers vs Sharks look out Gibbs, Fifita & carney", + "created_at": "Fri Nov 04 06:37:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132137189546008576", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.3416684, + -35.1250397 + ] + }, + "id": 132345736590409730, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 172634213, + "id_str": "172634213", + "screen_name": "robbiefarah", + "name": "robbie farah" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132137189546008580, + "in_reply_to_screen_name": "robbiefarah", + "id_str": "132345736590409728", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.1250397, + 147.3416684 + ] + }, + "in_reply_to_user_id_str": "172634213", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 370986383, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "370986383", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 126, + "description": "Balmain Fan 1st now a mad Wests Tigers Fan 4 ever", + "friends_count": 41, + "location": "Wagga Wagga N.S.W Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lionel C Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Storkman1", + "notifications": null, + "url": null, + "created_at": "Sat Sep 10 00:29:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a76a3", + "_rev": "1-612adcb907c6d7fa3dba976db76814bf", + "oldid": "4eb387a03de67c5117000143", + "contributors": null, + "truncated": false, + "text": "@suze_hurst \n\n“@Essendon_FC: Seems like this @AngusMonfries pic had our fans all a-flutter today. http://t.co/f9JgsG7t”", + "in_reply_to_status_id": null, + "id": 132345744609914880, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 200312378, + "id_str": "200312378", + "screen_name": "suze_hurst", + "name": "Suzanne Hurst" + }, + { + "indices": [ + 16, + 28 + ], + "id": 25903941, + "id_str": "25903941", + "screen_name": "Essendon_FC", + "name": "Essendon FC" + }, + { + "indices": [ + 46, + 60 + ], + "id": 56299332, + "id_str": "56299332", + "screen_name": "AngusMonfries", + "name": "Angus Monfries" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 99, + 119 + ], + "url": "http://t.co/f9JgsG7t", + "expanded_url": "http://twitpic.com/7an4sb", + "display_url": "twitpic.com/7an4sb" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96349179, + -37.82956081 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "suze_hurst", + "in_reply_to_user_id": 200312378, + "retweet_count": 0, + "id_str": "132345744609914880", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609659417/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 193941626, + "profile_text_color": "3D1957", + "followers_count": 112, + "profile_sidebar_border_color": "65B0DA", + "id_str": "193941626", + "profile_background_color": "642D8B", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1729, + "description": "I'm a legend.. No biggie! Lover of; @AidenKingAudio, @Smado8 & @Jessiceeerrrr, Zali&Bear, waterpolo, dad jokes, sangria, sarcasm, summer, my mates & burritos.x", + "friends_count": 203, + "location": "williamstown", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1609659417/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/152529574/phhoto.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/152529574/phhoto.JPG", + "name": "Hayley Morrison", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 419, + "screen_name": "hazzarimo", + "notifications": null, + "url": null, + "created_at": "Thu Sep 23 01:24:35 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82956081, + 144.96349179 + ] + }, + "in_reply_to_user_id_str": "200312378", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:37:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a7d74", + "_rev": "1-9266863e4d23fbe09466284ef8fd15f2", + "oldid": "4eb387a13de67c5117000144", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#tokyo #nyc or #la ?", + "created_at": "Fri Nov 04 06:37:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.13178063, + -33.71599374 + ] + }, + "id": 132345747847921660, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 6 + ], + "text": "tokyo" + }, + { + "indices": [ + 7, + 11 + ], + "text": "nyc" + }, + { + "indices": [ + 15, + 18 + ], + "text": "la" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345747847921664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.71599374, + 151.13178063 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594111834/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 201904637, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "201904637", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 7200, + "statuses_count": 20, + "description": "be good or be good at it", + "friends_count": 22, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1594111834/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Saku Sajakoski", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "sKUIJKE", + "notifications": null, + "url": null, + "created_at": "Tue Oct 12 21:59:44 +0000 2010", + "contributors_enabled": false, + "time_zone": "Helsinki", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a87d8", + "_rev": "1-3fa6cad5616e8061f1556436322735b6", + "oldid": "4eb387a13de67c5117000145", + "favorited": false, + "in_reply_to_user_id": 208421565, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Tricia_SamSam ooo haha. Okay. I'll try n buy the novel. How many books are there?", + "created_at": "Fri Nov 04 06:37:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132326602423021568", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92914744, + -32.07649875 + ] + }, + "id": 132345749391425540, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 208421565, + "id_str": "208421565", + "screen_name": "Tricia_SamSam", + "name": "Tricia Yeo" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132326602423021570, + "in_reply_to_screen_name": "Tricia_SamSam", + "id_str": "132345749391425536", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07649875, + 115.92914744 + ] + }, + "in_reply_to_user_id_str": "208421565", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1569230797/image_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 83559315, + "profile_text_color": "634047", + "followers_count": 43, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "83559315", + "profile_background_color": "EDECE9", + "listed_count": 1, + "utc_offset": -32400, + "statuses_count": 2544, + "description": "Love yourself No man can guarantee your future more than you can.", + "friends_count": 149, + "location": "Australia", + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1569230797/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "MichelleYee", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 64, + "screen_name": "fishy0707", + "notifications": null, + "url": "https://www.twitter.com/fishy0707", + "created_at": "Mon Oct 19 09:12:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a96e3", + "_rev": "1-9ba37edcebb652e17125cef83efa191e", + "oldid": "4eb387a43de67c5117000146", + "contributors": null, + "truncated": false, + "text": "#cheers at #saltbarandbistro http://t.co/hWjxjnXK", + "in_reply_to_status_id": null, + "id": 132345761718480900, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 7 + ], + "text": "cheers" + }, + { + "indices": [ + 11, + 28 + ], + "text": "saltbarandbistro" + } + ], + "urls": [ + { + "indices": [ + 30, + 50 + ], + "url": "http://t.co/hWjxjnXK", + "expanded_url": "http://lockerz.com/s/153088029", + "display_url": "lockerz.com/s/153088029" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.5765821, + -28.2656774 + ] + }, + "source": "<a href=\"http://www.tweetcaster.com\" rel=\"nofollow\">TweetCaster for Android</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345761718480896", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1392332909/IMAG0309_normal.jpg", + "profile_sidebar_fill_color": "cde9fa", + "id": 51852547, + "profile_text_color": "3D1957", + "followers_count": 28, + "profile_sidebar_border_color": "65B0DA", + "id_str": "51852547", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 173, + "description": "Leadership & Cross Cultural Facilitator - News junkie, love travelling, sourcing jewelry from around the world, and sharing a 'good red' with Husband & friends", + "friends_count": 126, + "location": "Sydney, Australia", + "profile_link_color": "0b1fd4", + "profile_image_url": "http://a1.twimg.com/profile_images/1392332909/IMAG0309_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Joan Ballantine", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "JoanBallantine", + "notifications": null, + "url": "http://www.jewelryzoo.com.au", + "created_at": "Sun Jun 28 21:38:44 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.2656774, + 153.5765821 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:37:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0a9e2e", + "_rev": "1-f31c21d54a3b47f91a6942d6aad2f9f6", + "oldid": "4eb387a53de67c5117000147", + "favorited": false, + "in_reply_to_user_id": 47905782, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tarabxx not too bad. Bio I thought was alright if not good. Further I dunno. Hopefully I didn't make too many mistakes but whatever..", + "created_at": "Fri Nov 04 06:37:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345524945829889", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33349505, + -38.03064078 + ] + }, + "id": 132345765501730820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 47905782, + "id_str": "47905782", + "screen_name": "tarabxx", + "name": "Tara Bell" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345524945829890, + "in_reply_to_screen_name": "tarabxx", + "id_str": "132345765501730816", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03064078, + 145.33349505 + ] + }, + "in_reply_to_user_id_str": "47905782", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2633, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0a9e7a", + "_rev": "1-b19077948e1823d4ac76305a56615fa0", + "oldid": "4eb387a93de67c5117000148", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Corduroy pillows are making headlines...", + "created_at": "Fri Nov 04 06:37:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.60201679, + -34.92211445 + ] + }, + "id": 132345783835049980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345783835049984", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.92211445, + 138.60201679 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/353764370/atheism_and_Darwin_fish_and_Jesus_fish_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 30836502, + "profile_text_color": "333333", + "followers_count": 26, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "30836502", + "profile_background_color": "9AE4E8", + "listed_count": 3, + "utc_offset": 34200, + "statuses_count": 251, + "description": "A lover of small animals and people who like the bounce.", + "friends_count": 48, + "location": "Adelaide, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/353764370/atheism_and_Darwin_fish_and_Jesus_fish_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/310532962/107_0766.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/310532962/107_0766.JPG", + "name": "TiggerTalk", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "TiggerTalk", + "notifications": null, + "url": null, + "created_at": "Mon Apr 13 09:20:25 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0aa322", + "_rev": "1-dadb1b8be015fa5daf32b36ee380801a", + "oldid": "4eb387ae3de67c5117000149", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.handmark.com\" rel=\"nofollow\">TweetCaster for iOS</a>", + "text": "There is only one person who can solve this Bieber Baby Drama and his name is Maury.", + "created_at": "Fri Nov 04 06:37:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19658, + -33.891199 + ] + }, + "id": 132345802097041400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345802097041409", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.891199, + 151.19658 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616524820/twitterpic_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 214858616, + "profile_text_color": "666666", + "followers_count": 73, + "profile_sidebar_border_color": "181A1E", + "id_str": "214858616", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 334, + "description": "Fashion, shopping, pop culture and new music are like crack to me.\r\nAlways looking for new stuff x\r\n\r\n", + "friends_count": 422, + "location": "Sydney, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1616524820/twitterpic_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/317721278/splatters.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/317721278/splatters.jpg", + "name": "cait sinclair", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "caitsinclair", + "notifications": null, + "url": "http://caitheartsstuff.tumblr.com", + "created_at": "Fri Nov 12 12:06:34 +0000 2010", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0aaf0d", + "_rev": "1-4e52f1574a9b89da403c211ae9c36f51", + "oldid": "4eb387b03de67c511700014a", + "favorited": false, + "in_reply_to_user_id": 28148927, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Shurimpu <3", + "created_at": "Fri Nov 04 06:37:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344384942374912", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132345813060943870, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 28148927, + "id_str": "28148927", + "screen_name": "Shurimpu", + "name": "Amamiya Shurimpu" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344384942374910, + "in_reply_to_screen_name": "Shurimpu", + "id_str": "132345813060943872", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "28148927", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20036, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0aafc7", + "_rev": "1-cdee68f4c0b37773c6530c4a09c21847", + "oldid": "4eb387b23de67c511700014b", + "favorited": false, + "in_reply_to_user_id": 248645874, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@CTrigger11 looking forward to the patty mills / Luke cooper show.", + "created_at": "Fri Nov 04 06:37:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343673504538624", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.09002091, + -33.9756226 + ] + }, + "id": 132345820682002430, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 248645874, + "id_str": "248645874", + "screen_name": "CTrigger11", + "name": "Cam Tragardh" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343673504538620, + "in_reply_to_screen_name": "CTrigger11", + "id_str": "132345820682002434", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9756226, + 151.09002091 + ] + }, + "in_reply_to_user_id_str": "248645874", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1336395782/slamUntitled-1_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 22714628, + "profile_text_color": "333333", + "followers_count": 437, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22714628", + "profile_background_color": "131516", + "listed_count": 14, + "utc_offset": 36000, + "statuses_count": 1497, + "description": "Web Design/Architect, Hawks Photo & Video creator. Sneaker head, Basketball fanatic. GoPro Surf cam proponent.", + "friends_count": 523, + "location": "Wollongong", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1336395782/slamUntitled-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/244184349/fade-joel.armstrong_1303197172_19.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/244184349/fade-joel.armstrong_1303197172_19.jpg", + "name": "Joel Armstrong", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 110, + "screen_name": "JoelArmstrong47", + "notifications": null, + "url": "http://www.mrfooji.com", + "created_at": "Wed Mar 04 01:37:37 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ab12b", + "_rev": "1-01d39d825ea7ff1619f4b0feb870e4cb", + "oldid": "4eb387b63de67c511700014c", + "contributors": null, + "truncated": false, + "text": "I just ousted @mise_en_bean as the mayor of Plantation on @foursquare! http://t.co/w1SmkOiT", + "in_reply_to_status_id": null, + "id": 132345835718582270, + "entities": { + "user_mentions": [ + { + "indices": [ + 14, + 27 + ], + "id": 206560111, + "id_str": "206560111", + "screen_name": "Mise_en_bean", + "name": "Mise en bèan" + }, + { + "indices": [ + 58, + 69 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/w1SmkOiT", + "expanded_url": "http://4sq.com/ooojZG", + "display_url": "4sq.com/ooojZG" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.963169, + -37.810433 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345835718582272", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "profile_sidebar_fill_color": "FFFFFF", + "id": 14111299, + "profile_text_color": "000000", + "followers_count": 998, + "profile_sidebar_border_color": "7B7B7B", + "id_str": "14111299", + "profile_background_color": "FFFBF0", + "listed_count": 55, + "utc_offset": 36000, + "statuses_count": 24832, + "description": "mid-twenties designer+musician http://soundcloud.com/helveticade", + "friends_count": 763, + "location": "Melbourne", + "profile_link_color": "942828", + "profile_image_url": "http://a3.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "name": "HELVETIC★DE", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 368, + "screen_name": "helveticade", + "notifications": null, + "url": "http://cade.com.au", + "created_at": "Mon Mar 10 03:53:46 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.810433, + 144.963169 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:38:00 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0abb14", + "_rev": "1-bbb30a7eb4efe6453955e2fd85badd77", + "oldid": "4eb387c03de67c511700014d", + "contributors": null, + "truncated": false, + "text": "Mister Eleven http://t.co/bNr9wlc5", + "in_reply_to_status_id": null, + "id": 132345878580170750, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 14, + 34 + ], + "url": "http://t.co/bNr9wlc5", + "expanded_url": "http://flic.kr/p/aBFPfv", + "display_url": "flic.kr/p/aBFPfv" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 130.862666, + -12.389167 + ] + }, + "source": "<a href=\"http://flickr.com/services/twitter/\" rel=\"nofollow\">Flickr</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345878580170752", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1180773579/5225109085_e5bef7e81c_b_normal.jpg", + "profile_sidebar_fill_color": "9ea198", + "id": 6456112, + "profile_text_color": "13123d", + "followers_count": 178, + "profile_sidebar_border_color": "202617", + "id_str": "6456112", + "profile_background_color": "ff6600", + "listed_count": 29, + "utc_offset": 34200, + "statuses_count": 5946, + "description": "τhε вεṡτ сαṃεɾαṡ αɾε τhε øṉεṡ ÿøυ hαṿε ώïτh ÿøυ ", + "friends_count": 271, + "location": "iPhone: -12.355657,130.881042", + "profile_link_color": "434387", + "profile_image_url": "http://a3.twimg.com/profile_images/1180773579/5225109085_e5bef7e81c_b_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/269181561/qr_everything.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/269181561/qr_everything.jpg", + "name": "Charles Strebor", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 24, + "screen_name": "Rantz", + "notifications": null, + "url": "http://rantz.phreacs.com.au/", + "created_at": "Wed May 30 22:57:50 +0000 2007", + "contributors_enabled": false, + "time_zone": "Darwin", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -12.389167, + 130.862666 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:38:10 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0ac411", + "_rev": "1-7803401654138933b3c1f9f7bba88019", + "oldid": "4eb387c43de67c511700014e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "\"@Tweet_Truths: Dear Pringles, when are you going to understand that I cannot fit my hand inside your tube of deliciousness.\"", + "created_at": "Fri Nov 04 06:38:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6946852, + -34.6390709 + ] + }, + "id": 132345897630703620, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 14 + ], + "id": 21385198, + "id_str": "21385198", + "screen_name": "Tweet_Truths", + "name": "Tweet_truth!" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345897630703617", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.6390709, + 138.6946852 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570717877/Xy37VOSD_normal", + "profile_sidebar_fill_color": "ffebfe", + "id": 248039464, + "profile_text_color": "666666", + "followers_count": 41, + "profile_sidebar_border_color": "181A1E", + "id_str": "248039464", + "profile_background_color": "fa9be7", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 585, + "description": "A Locket, Part of the Harry Potter Generation, Just an Average Girl, Totally Relatable, Her Obsessions are way out of hand. Does She Care? No ;)", + "friends_count": 186, + "location": "Australia :)", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1570717877/Xy37VOSD_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/340449687/funny.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/340449687/funny.jpg", + "name": "Thoa Turtle", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "thoax3", + "notifications": null, + "url": "http://aloha-key.tumblr.com/", + "created_at": "Sun Feb 06 03:43:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ad011", + "_rev": "1-803432b1fe4c4e7377e0dfdfec85b1d1", + "oldid": "4eb387c63de67c511700014f", + "contributors": null, + "truncated": false, + "text": "I just ousted @adam_blowers as the mayor of ViaMedia on @foursquare! http://t.co/Sk7kZxss", + "in_reply_to_status_id": null, + "id": 132345902575792130, + "entities": { + "user_mentions": [ + { + "indices": [ + 14, + 27 + ], + "id": 177144777, + "id_str": "177144777", + "screen_name": "Adam_Blowers", + "name": "Adam Blowers" + }, + { + "indices": [ + 56, + 67 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 69, + 89 + ], + "url": "http://t.co/Sk7kZxss", + "expanded_url": "http://4sq.com/d6dq7F", + "display_url": "4sq.com/d6dq7F" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.593745, + -34.9064 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132345902575792128", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1012147313/Mal_June10_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 17617784, + "profile_text_color": "666666", + "followers_count": 1492, + "profile_sidebar_border_color": "181A1E", + "id_str": "17617784", + "profile_background_color": "1A1B1F", + "listed_count": 92, + "utc_offset": 34200, + "statuses_count": 8852, + "description": "Dad, DJ, Digital Marketer. Bit of music, movies, TV, sci-fi, basketball, football and gaming. Loves the San Antonio Spurs and Manchester United.", + "friends_count": 996, + "location": "Adelaide, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1012147313/Mal_June10_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Mal Chia", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "malchia", + "notifications": null, + "url": "http://www.malchia.com/", + "created_at": "Tue Nov 25 11:56:22 +0000 2008", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.9064, + 138.593745 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:38:16 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0ad2bc", + "_rev": "1-952dcbcb5a2890c782fa5022eec73c19", + "oldid": "4eb387d23de67c5117000150", + "favorited": false, + "in_reply_to_user_id": 29648055, + "contributors": null, + "source": "<a href=\"http://www.handmark.com\" rel=\"nofollow\">TweetCaster for iOS</a>", + "text": "Well done girl. You wore that crown with dignity and grace. @Miss_KellyLou", + "created_at": "Fri Nov 04 06:38:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132292275207282689", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.161194, + -33.888042 + ] + }, + "id": 132345952664158200, + "entities": { + "user_mentions": [ + { + "indices": [ + 60, + 74 + ], + "id": 29648055, + "id_str": "29648055", + "screen_name": "Miss_KellyLou", + "name": "Kelly Louise Maguire" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132292275207282690, + "in_reply_to_screen_name": "Miss_KellyLou", + "id_str": "132345952664158208", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.888042, + 151.161194 + ] + }, + "in_reply_to_user_id_str": "29648055", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1203728653/profile_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 38606846, + "profile_text_color": "3E4415", + "followers_count": 132, + "profile_sidebar_border_color": "829D5E", + "id_str": "38606846", + "profile_background_color": "352726", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1409, + "description": "Mentor, coach, regular man about town, full time observer. Creator of Dear Pageant Girl www.facebook.com/DearPageantGirl", + "friends_count": 94, + "location": "Sydney", + "profile_link_color": "D02B55", + "profile_image_url": "http://a0.twimg.com/profile_images/1203728653/profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Peter Sereno", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 43, + "screen_name": "petersereno", + "notifications": null, + "url": "http://www.facebook.com/group.php?gid=113840891971080&ref=mf", + "created_at": "Fri May 08 04:36:05 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ae230", + "_rev": "1-18d034d1d0f2a48a564b991b52f9dd29", + "oldid": "4eb387d23de67c5117000151", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Number of carparks at Footscray station: 50. Number of cars parked at Footscray station: 100. #footscrazy", + "created_at": "Fri Nov 04 06:38:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.89102504, + -37.79185612 + ] + }, + "id": 132345954618716160, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 94, + 105 + ], + "text": "footscrazy" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345954618716160", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79185612, + 144.89102504 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1224010925/Evil_Calvin_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 197292517, + "profile_text_color": "333333", + "followers_count": 9, + "profile_sidebar_border_color": "C0DEED", + "id_str": "197292517", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 51, + "description": "", + "friends_count": 22, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1224010925/Evil_Calvin_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Marcus Denny", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Fuzzwegians", + "notifications": null, + "url": null, + "created_at": "Fri Oct 01 03:20:23 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ae92e", + "_rev": "1-2e4e927ffa4bcdb57247d465e0c00a0f", + "oldid": "4eb387d33de67c5117000152", + "contributors": null, + "truncated": false, + "text": "@suze_hurst \n“@Essendon_FC: Seems like this @AngusMonfries pic had our fans all a-flutter today. http://t.co/f9JgsG7t”", + "in_reply_to_status_id": null, + "id": 132345957013659650, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 200312378, + "id_str": "200312378", + "screen_name": "suze_hurst", + "name": "Suzanne Hurst" + }, + { + "indices": [ + 15, + 27 + ], + "id": 25903941, + "id_str": "25903941", + "screen_name": "Essendon_FC", + "name": "Essendon FC" + }, + { + "indices": [ + 45, + 59 + ], + "id": 56299332, + "id_str": "56299332", + "screen_name": "AngusMonfries", + "name": "Angus Monfries" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 98, + 118 + ], + "url": "http://t.co/f9JgsG7t", + "expanded_url": "http://twitpic.com/7an4sb", + "display_url": "twitpic.com/7an4sb" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95979194, + -37.82835984 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "suze_hurst", + "in_reply_to_user_id": 200312378, + "retweet_count": 0, + "id_str": "132345957013659648", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609659417/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 193941626, + "profile_text_color": "3D1957", + "followers_count": 112, + "profile_sidebar_border_color": "65B0DA", + "id_str": "193941626", + "profile_background_color": "642D8B", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1730, + "description": "I'm a legend.. No biggie! Lover of; @AidenKingAudio, @Smado8 & @Jessiceeerrrr, Zali&Bear, waterpolo, dad jokes, sangria, sarcasm, summer, my mates & burritos.x", + "friends_count": 203, + "location": "williamstown", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1609659417/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/152529574/phhoto.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/152529574/phhoto.JPG", + "name": "Hayley Morrison", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 419, + "screen_name": "hazzarimo", + "notifications": null, + "url": null, + "created_at": "Thu Sep 23 01:24:35 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82835984, + 144.95979194 + ] + }, + "in_reply_to_user_id_str": "200312378", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:38:29 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0aeaa6", + "_rev": "1-821698645aff7b7a9a3b878a85a2687e", + "oldid": "4eb387d63de67c5117000153", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Friday afternoon Rush Hour.....not.fucking.fun.", + "created_at": "Fri Nov 04 06:38:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98529067, + -37.8442802 + ] + }, + "id": 132345973740544000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345973740544000", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8442802, + 144.98529067 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1584236450/317891_10150393312786757_530516756_9937143_1335652124_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 22447627, + "profile_text_color": "666666", + "followers_count": 237, + "profile_sidebar_border_color": "181A1E", + "id_str": "22447627", + "profile_background_color": "1A1B1F", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 4851, + "description": "owner of SHOT/CUT Productions, drummer from NACIONAL....FILMMAKER, PHOTOGRAPHER, EDITOR & POKER PLAYER....I have a craving for excess, I am the R-rated movie...", + "friends_count": 113, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1584236450/317891_10150393312786757_530516756_9937143_1335652124_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Nathan Bobik", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 22, + "screen_name": "nathan_bobik", + "notifications": null, + "url": "http://www.shotcut.net", + "created_at": "Mon Mar 02 03:54:00 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0aec51", + "_rev": "1-6f45ac63a54dd5b6b87b2b6275b02328", + "oldid": "4eb387db3de67c5117000154", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Just heard a guy saw I finished all my Xmas shopping today. What do you mean! #getalife #Hoon", + "created_at": "Fri Nov 04 06:38:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21143854, + -33.87664093 + ] + }, + "id": 132345991708950530, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 78, + 87 + ], + "text": "getalife" + }, + { + "indices": [ + 88, + 93 + ], + "text": "Hoon" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132345991708950528", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87664093, + 151.21143854 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1452411823/225843_10150183072645829_530465828_7398119_2849057_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 229676634, + "profile_text_color": "333333", + "followers_count": 117, + "profile_sidebar_border_color": "eeeeee", + "id_str": "229676634", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 610, + "description": "Fashion Designer/Dj/Graphic Designer/Blogger/Skier/Surfer/Life Lover. \r\n\r\nIn Sydney Involved in projects with: Trash-Disko and Dead Castle Project", + "friends_count": 416, + "location": "Sydney", + "profile_link_color": "585c5c", + "profile_image_url": "http://a0.twimg.com/profile_images/1452411823/225843_10150183072645829_530465828_7398119_2849057_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/306490961/Picture_13.png", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/306490961/Picture_13.png", + "name": "Sam Moore", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "samjamesmoore", + "notifications": null, + "url": "http://deadcastleproject.com/", + "created_at": "Thu Dec 23 01:30:31 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0aede2", + "_rev": "1-ebd1a25a9b95df07d6a49f5a4ba4bfe4", + "oldid": "4eb387de3de67c5117000155", + "favorited": false, + "in_reply_to_user_id": 16572521, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@VoidMonk @KateKendall Exactly:72% people bored w. daily deals 'cause they're generic not niched, & emailed not served in places of interest", + "created_at": "Fri Nov 04 06:38:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.25874483, + -36.79081022 + ] + }, + "id": 132346003348135940, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 16572521, + "id_str": "16572521", + "screen_name": "VoidMonk", + "name": "Ashutosh Nilkanth" + }, + { + "indices": [ + 10, + 22 + ], + "id": 15125371, + "id_str": "15125371", + "screen_name": "KateKendall", + "name": "Kate Kendall" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "VoidMonk", + "id_str": "132346003348135936", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.79081022, + 144.25874483 + ] + }, + "in_reply_to_user_id_str": "16572521", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607512495/IMG_0598_normal.JPG", + "profile_sidebar_fill_color": "ffffff", + "id": 211828270, + "profile_text_color": "333333", + "followers_count": 19, + "profile_sidebar_border_color": "eeeeee", + "id_str": "211828270", + "profile_background_color": "b4cade", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 133, + "description": "Starting up a social movie network", + "friends_count": 42, + "location": "Melbourne, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/1607512495/IMG_0598_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Joss Wyss", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "josswyss", + "notifications": null, + "url": "http://www.movr.com", + "created_at": "Thu Nov 04 11:23:37 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0aef7d", + "_rev": "1-9639bc0ef76d837304d51f5ea02e5c42", + "oldid": "4eb387f13de67c5117000156", + "contributors": null, + "truncated": false, + "text": "Spa Insulation and Efficiency http://t.co/ztgmfWwQ", + "in_reply_to_status_id": null, + "id": 132346082872147970, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 30, + 50 + ], + "url": "http://t.co/ztgmfWwQ", + "expanded_url": "http://bit.ly/tvlkj2", + "display_url": "bit.ly/tvlkj2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.6688892, + -32.9811733 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346082872147970", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1488888436/Large_Logo__Transparent__normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 342693821, + "profile_text_color": "333333", + "followers_count": 177, + "profile_sidebar_border_color": "C0DEED", + "id_str": "342693821", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 41, + "description": "Spa World is Australia's leading supplier of Spas, Swim Spas, Saunas and Gazebos. Reach Us At: (02) 8999 8484", + "friends_count": 161, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1488888436/Large_Logo__Transparent__normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/306856272/background_tile.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/306856272/background_tile.png", + "name": "Spa World", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "SpaWorldAUS", + "notifications": null, + "url": "http://www.spaworldspas.com.au", + "created_at": "Tue Jul 26 12:45:57 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.9811733, + 151.6688892 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:38:59 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0af401", + "_rev": "1-e82f8db59044e6818032274d9cd34138", + "oldid": "4eb388033de67c5117000157", + "favorited": false, + "in_reply_to_user_id": 12997062, + "contributors": null, + "source": "<a href=\"http://mobileways.de/gravity\" rel=\"nofollow\">Gravity!</a>", + "text": "@rchanter asking anyway", + "created_at": "Fri Nov 04 06:39:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132328696815173632", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96260405, + -37.81029582 + ] + }, + "id": 132346161439850500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 12997062, + "id_str": "12997062", + "screen_name": "rchanter", + "name": "Rob Chanter" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132328696815173630, + "in_reply_to_screen_name": "rchanter", + "id_str": "132346161439850496", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81029582, + 144.96260405 + ] + }, + "in_reply_to_user_id_str": "12997062", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1545137271/f882bf6e-0fd0-40e8-90ba-47c0468bebfc_normal.png", + "profile_sidebar_fill_color": "DAECF4", + "id": 70925083, + "profile_text_color": "663B12", + "followers_count": 90, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "70925083", + "profile_background_color": "C6E2EE", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 623, + "description": "Trying hard not to see the stupid side all the time.", + "friends_count": 250, + "location": "St Kilda West", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a3.twimg.com/profile_images/1545137271/f882bf6e-0fd0-40e8-90ba-47c0468bebfc_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Bernard Sheppard", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "BernardSheppard", + "notifications": null, + "url": "http://www.linkedin.com/in/bernardsheppard", + "created_at": "Wed Sep 02 09:34:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0af9a1", + "_rev": "1-819523bfb29fcd391a731405a65f3ac8", + "oldid": "4eb388033de67c5117000158", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Im craving for some japanese food", + "created_at": "Fri Nov 04 06:39:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.51901096, + -33.25087136 + ] + }, + "id": 132346161032986620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346161032986625", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.25087136, + 151.51901096 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1574609882/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 347136352, + "profile_text_color": "333333", + "followers_count": 18, + "profile_sidebar_border_color": "eeeeee", + "id_str": "347136352", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 185, + "description": "YO the name is vanessa, im 18 and loving life, so keen for what life has to offer. i love poetry, long walks in the beach and poking dead things with a stick. ", + "friends_count": 48, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1574609882/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/303238106/vintage-4.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/303238106/vintage-4.jpg", + "name": "Vanessa Dublin", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 11, + "screen_name": "veefaye862", + "notifications": null, + "url": null, + "created_at": "Tue Aug 02 10:04:02 +0000 2011", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b0450", + "_rev": "1-cfb812d2ae8631cb94835d4bb48e0cfd", + "oldid": "4eb3880e3de67c5117000159", + "contributors": null, + "truncated": false, + "text": "I'm at 3/35 Albion St (Surry Hills, New South Wales) http://t.co/dZcpiCPl", + "in_reply_to_status_id": null, + "id": 132346205526171650, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 53, + 73 + ], + "url": "http://t.co/dZcpiCPl", + "expanded_url": "http://4sq.com/vfFQoH", + "display_url": "4sq.com/vfFQoH" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.210027, + -33.882598 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346205526171648", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602350356/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 216320372, + "profile_text_color": "333333", + "followers_count": 111, + "profile_sidebar_border_color": "C0DEED", + "id_str": "216320372", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 6430, + "description": "Nobodys perfect as it seems,so be yourself tht actually make u seen perfect", + "friends_count": 124, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1602350356/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sylvia cang", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 118, + "screen_name": "sylviacang", + "notifications": null, + "url": null, + "created_at": "Tue Nov 16 11:30:18 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.882598, + 151.210027 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:39:28 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0b06fa", + "_rev": "1-53f3f68411d5c30854c1f688f97da079", + "oldid": "4eb3880e3de67c511700015a", + "favorited": false, + "in_reply_to_user_id": 264122950, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MorganTucker14 maa bruthha from anothaa muthhaa!! Doin bro??", + "created_at": "Fri Nov 04 06:39:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.57756653, + -33.43374082 + ] + }, + "id": 132346206545379330, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 264122950, + "id_str": "264122950", + "screen_name": "MorganTucker14", + "name": "Morgan" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "MorganTucker14", + "id_str": "132346206545379328", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.43374082, + 149.57756653 + ] + }, + "in_reply_to_user_id_str": "264122950", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615120995/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 345304950, + "profile_text_color": "333333", + "followers_count": 27, + "profile_sidebar_border_color": "C0DEED", + "id_str": "345304950", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 41, + "description": "", + "friends_count": 243, + "location": "someplace, somewhere", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1615120995/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Emma Siejka", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "emmasiejka1997", + "notifications": null, + "url": null, + "created_at": "Sat Jul 30 11:08:09 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b09b9", + "_rev": "1-ba41ceeb43c6b4f9ff85f32afc005790", + "oldid": "4eb3880f3de67c511700015b", + "contributors": null, + "truncated": false, + "text": "#7/6EducationalTour - HOME!!! http://t.co/cBK7W0Z1", + "in_reply_to_status_id": null, + "id": 132346207740764160, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYwLLwCIAA8bRM.jpg", + "expanded_url": "http://twitter.com/bountyblvdss/status/132346207740764160/photo/1", + "display_url": "pic.twitter.com/cBK7W0Z1", + "url": "http://t.co/cBK7W0Z1", + "sizes": { + "large": { + "h": 629, + "w": 928, + "resize": "fit" + }, + "small": { + "h": 231, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 407, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132346207744958464", + "indices": [ + 30, + 50 + ], + "type": "photo", + "id": 132346207744958460, + "media_url": "http://p.twimg.com/AdYwLLwCIAA8bRM.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.120467, + -27.384823 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Camera on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346207740764160", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/299923881/logo_transparent_normal.png", + "profile_sidebar_fill_color": "a1cc6d", + "id": 50995064, + "profile_text_color": "333333", + "followers_count": 175, + "profile_sidebar_border_color": "6eaf52", + "id_str": "50995064", + "profile_background_color": "144378", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 464, + "description": "An innovative, technology-focused Prep-7 school in North Lakes, Queensland, Australia", + "friends_count": 0, + "location": "North Lakes QLD Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/299923881/logo_transparent_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/24980874/bbss_twitter_bg.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/24980874/bbss_twitter_bg.jpg", + "name": "Bounty Blvd School", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "bountyblvdss", + "notifications": null, + "url": "http://www.bountyboulevardss.eq.edu.au/", + "created_at": "Fri Jun 26 09:43:14 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.384823, + 153.120467 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:39:30 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0b0b59", + "_rev": "1-a2d727927fdb5677239b14f78211454c", + "oldid": "4eb388113de67c511700015c", + "contributors": null, + "truncated": false, + "text": "Summers here dad!! Whoop whoop! http://t.co/d6TBih9T", + "in_reply_to_status_id": null, + "id": 132346215210815490, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYwLnlCEAAjQoT.jpg", + "expanded_url": "http://twitter.com/2uChina/status/132346215210815488/photo/1", + "display_url": "pic.twitter.com/d6TBih9T", + "url": "http://t.co/d6TBih9T", + "sizes": { + "large": { + "h": 1024, + "w": 765, + "resize": "fit" + }, + "small": { + "h": 455, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 803, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132346215215009792", + "indices": [ + 32, + 52 + ], + "type": "photo", + "id": 132346215215009800, + "media_url": "http://p.twimg.com/AdYwLnlCEAAjQoT.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.90703601, + -36.06184822 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346215210815488", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1156995887/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 208350310, + "profile_text_color": "333333", + "followers_count": 36, + "profile_sidebar_border_color": "C0DEED", + "id_str": "208350310", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 573, + "description": "A particle of the atom we like to call the universe!\r\nBut a Happy one!!!\r\n", + "friends_count": 24, + "location": "Albury", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1156995887/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/326330674/boc_cars_2.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/326330674/boc_cars_2.jpg", + "name": "China Clarkey", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "2uChina", + "notifications": null, + "url": null, + "created_at": "Wed Oct 27 03:26:26 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -36.06184822, + 146.90703601 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:39:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0b1738", + "_rev": "1-b93709c6307717ef23f53f24a6728cc0", + "oldid": "4eb388183de67c511700015d", + "favorited": false, + "in_reply_to_user_id": 234246043, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mermaidfagg0t haha damn you had me going there.", + "created_at": "Fri Nov 04 06:39:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346017369686016", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.09707941, + -37.64045942 + ] + }, + "id": 132346244415750140, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 234246043, + "id_str": "234246043", + "screen_name": "mermaidfagg0t", + "name": "人魚束♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132346017369686020, + "in_reply_to_screen_name": "mermaidfagg0t", + "id_str": "132346244415750145", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.64045942, + 145.09707941 + ] + }, + "in_reply_to_user_id_str": "234246043", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1402823130/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 22450813, + "profile_text_color": "333333", + "followers_count": 138, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22450813", + "profile_background_color": "131516", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 5385, + "description": "Hi im rhys and i hate brokencyde with a passion. @LauraLoveless_ is everything to me :)", + "friends_count": 250, + "location": "Melbourne", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1402823130/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Rhys Montgomery", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "rhys1508", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=703417461", + "created_at": "Mon Mar 02 04:30:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b17d9", + "_rev": "1-bd7cf1b251a0844c078645cbfef9e859", + "oldid": "4eb388183de67c511700015e", + "favorited": false, + "in_reply_to_user_id": 250920020, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@yuizzle its a national park called Wilson's promontory. Lots of wildlife!", + "created_at": "Fri Nov 04 06:39:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344300695588864", + "coordinates": { + "type": "Point", + "coordinates": [ + 146.31867859, + -39.03243614 + ] + }, + "id": 132346249113370620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 250920020, + "id_str": "250920020", + "screen_name": "yuizzle", + "name": "yuiym " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344300695588860, + "in_reply_to_screen_name": "yuizzle", + "id_str": "132346249113370624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -39.03243614, + 146.31867859 + ] + }, + "in_reply_to_user_id_str": "250920020", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1568234245/267630_10150225537227032_571472031_7733755_3071464_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 27776492, + "profile_text_color": "333333", + "followers_count": 261, + "profile_sidebar_border_color": "c0deed", + "id_str": "27776492", + "profile_background_color": "9E7C5A", + "listed_count": 17, + "utc_offset": 3600, + "statuses_count": 2332, + "description": "I love building things, especially with HTML5, JavaScript, NodeJS, PHP and the Facebook platform. Working with @TheseDaysBE. Moving to Melbourne in October.", + "friends_count": 234, + "location": "Antwerp, Belgium", + "profile_link_color": "2276BB", + "profile_image_url": "http://a3.twimg.com/profile_images/1568234245/267630_10150225537227032_571472031_7733755_3071464_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/69957364/x7318cb855f0d00445a36956dde061f9.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/69957364/x7318cb855f0d00445a36956dde061f9.png", + "name": "Keegan Street", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "kstre", + "notifications": null, + "url": "http://kstre.com", + "created_at": "Tue Mar 31 01:02:59 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brussels", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b2429", + "_rev": "1-59e47893ac7c14976697524f02b8695d", + "oldid": "4eb3881a3de67c511700015f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Comfort food time", + "created_at": "Fri Nov 04 06:39:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12635405, + -37.78659718 + ] + }, + "id": 132346255018967040, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346255018967041", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.78659718, + 145.12635405 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1386431940/photo_normal.PNG", + "profile_sidebar_fill_color": "efefef", + "id": 33678406, + "profile_text_color": "333333", + "followers_count": 126, + "profile_sidebar_border_color": "eeeeee", + "id_str": "33678406", + "profile_background_color": "131516", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 5388, + "description": "Good at complaining, slacking and procrastinating.", + "friends_count": 518, + "location": "melbourne, penang and corio", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1386431940/photo_normal.PNG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Eng Meng Chuah", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "engmeng", + "notifications": null, + "url": "http://www.facebook.com/engmeng", + "created_at": "Mon Apr 20 21:50:33 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b2fa2", + "_rev": "1-4ab508fe8f1c97b5df7f503c5ac2248a", + "oldid": "4eb3881c3de67c5117000160", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "DONE!!!!!!!!!!!!!!!!!!!", + "created_at": "Fri Nov 04 06:39:42 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82629934, + -33.75777894 + ] + }, + "id": 132346263696969730, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346263696969728", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75777894, + 150.82629934 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9257, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b3018", + "_rev": "1-1312a805884fb28ffb86bd5a5ddd0da7", + "oldid": "4eb3881f3de67c5117000161", + "favorited": false, + "in_reply_to_user_id": 295564879, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Hussie_Hero coz your gay?", + "created_at": "Fri Nov 04 06:39:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342421030830080", + "coordinates": { + "type": "Point", + "coordinates": [ + 152.0487805, + -25.51317307 + ] + }, + "id": 132346279467548670, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 295564879, + "id_str": "295564879", + "screen_name": "Hussie_Hero", + "name": "Renee Ruby Hussie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342421030830080, + "in_reply_to_screen_name": "Hussie_Hero", + "id_str": "132346279467548672", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -25.51317307, + 152.0487805 + ] + }, + "in_reply_to_user_id_str": "295564879", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1139008409/mount_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 170351247, + "profile_text_color": "333333", + "followers_count": 100, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "170351247", + "profile_background_color": "EBEBEB", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 10719, + "description": "im a massive sea eagle,chelsea,nsw blues,brumbies,sydney fc, adelaide crows fan!", + "friends_count": 132, + "location": "middlemount", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1139008409/mount_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "name": "block", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "block__star", + "notifications": null, + "url": null, + "created_at": "Sat Jul 24 16:03:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b3cdb", + "_rev": "1-e10e672869067ed71cd7b88ccc6b387b", + "oldid": "4eb388213de67c5117000162", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", + "text": "DJ347 MEL BNE", + "created_at": "Fri Nov 04 06:39:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.8461, + -37.672 + ] + }, + "id": 132346287533207550, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346287533207552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.672, + 144.8461 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/107098667/phoenix_normal.JPG", + "profile_sidebar_fill_color": "08031c", + "id": 25979290, + "profile_text_color": "666666", + "followers_count": 285, + "profile_sidebar_border_color": "08031c", + "id_str": "25979290", + "profile_background_color": "1A1B1F", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 8718, + "description": "attempting gregarious zen", + "friends_count": 286, + "location": "Melbourne, VIC, Australia", + "profile_link_color": "0d84a8", + "profile_image_url": "http://a2.twimg.com/profile_images/107098667/phoenix_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Michael Carew", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "michaelcarew", + "notifications": null, + "url": null, + "created_at": "Mon Mar 23 10:13:14 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b4404", + "_rev": "1-262464aff04217624ebb02cd56057c52", + "oldid": "4eb388253de67c5117000163", + "favorited": false, + "in_reply_to_user_id": 399254757, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@petersanderson3 @joshstarkey yeah 6 till 10", + "created_at": "Fri Nov 04 06:39:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132322970029920257", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.43427181, + -33.32586497 + ] + }, + "id": 132346303471566850, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 399254757, + "id_str": "399254757", + "screen_name": "petersanderson3", + "name": "Peter Sanderson" + }, + { + "indices": [ + 17, + 29 + ], + "id": 36912422, + "id_str": "36912422", + "screen_name": "joshstarkey", + "name": "Joshua" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132322970029920260, + "in_reply_to_screen_name": "petersanderson3", + "id_str": "132346303471566848", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.32586497, + 151.43427181 + ] + }, + "in_reply_to_user_id_str": "399254757", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1510766875/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 34631166, + "profile_text_color": "666666", + "followers_count": 226, + "profile_sidebar_border_color": "181A1E", + "id_str": "34631166", + "profile_background_color": "1A1B1F", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 9551, + "description": "hey im nick i play bass in hold your own ", + "friends_count": 110, + "location": "Central coast ", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1510766875/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/157604599/dallas_green_by_SJDFGTK3.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/157604599/dallas_green_by_SJDFGTK3.jpg", + "name": "nick kelly", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "Nick_HYO", + "notifications": null, + "url": "http://www.facebook.com/pages/Hold-Your-Own/123304977712170", + "created_at": "Thu Apr 23 14:51:10 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b46cb", + "_rev": "1-93d6cc19f0d3235bd5c70f6d75a45c0f", + "oldid": "4eb3882c3de67c5117000164", + "contributors": null, + "truncated": false, + "text": "Meatlovers (@ Eagles Boys Pizza @Airport) http://t.co/ZYPbcIpf", + "in_reply_to_status_id": null, + "id": 132346330549989380, + "entities": { + "user_mentions": [ + { + "indices": [ + 32, + 40 + ], + "id": 1707421, + "id_str": "1707421", + "screen_name": "airport", + "name": "airport" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 42, + 62 + ], + "url": "http://t.co/ZYPbcIpf", + "expanded_url": "http://picplz.com/HBtF", + "display_url": "picplz.com/HBtF" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.165759, + -33.939094 + ] + }, + "source": "<a href=\"http://picplz.com/\" rel=\"nofollow\">picplz</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346330549989376", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1461644257/Kenpachi_Zaraki_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 35187666, + "profile_text_color": "333333", + "followers_count": 143, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "35187666", + "profile_background_color": "9AE4E8", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 4454, + "description": "dry as a dead dingos donger in the desert", + "friends_count": 253, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1461644257/Kenpachi_Zaraki_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/298301631/Soul_Society.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/298301631/Soul_Society.jpg", + "name": "Mark T", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "dryasadingo", + "notifications": null, + "url": "http://www.flickr.com/photos/dryasadingo/", + "created_at": "Sat Apr 25 10:27:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.939094, + 151.165759 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:39:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0b49f9", + "_rev": "1-b39875cf0bcf80e0cd5441e83f2369e3", + "oldid": "4eb3882f3de67c5117000165", + "favorited": false, + "in_reply_to_user_id": 162446345, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@z_sim u went? Haha", + "created_at": "Fri Nov 04 06:40:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132328757359947776", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12163913, + -37.88379776 + ] + }, + "id": 132346341681676290, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 162446345, + "id_str": "162446345", + "screen_name": "z_sim", + "name": "Zach" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132328757359947780, + "in_reply_to_screen_name": "z_sim", + "id_str": "132346341681676288", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.88379776, + 145.12163913 + ] + }, + "in_reply_to_user_id_str": "162446345", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1271044501/kean2_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 235628661, + "profile_text_color": "663B12", + "followers_count": 77, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "235628661", + "profile_background_color": "C6E2EE", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 833, + "description": "", + "friends_count": 96, + "location": "BM", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a0.twimg.com/profile_images/1271044501/kean2_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Kean", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "xKeanNx", + "notifications": null, + "url": "http://facebook.com/keansin92", + "created_at": "Sat Jan 08 17:56:32 +0000 2011", + "contributors_enabled": false, + "time_zone": "Kuala Lumpur", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b50fc", + "_rev": "1-9cb79e4e776615b652808e068a1dfcfd", + "oldid": "4eb388383de67c5117000166", + "contributors": null, + "truncated": false, + "text": "Sons of Korah http://t.co/TOt1xWCn", + "in_reply_to_status_id": null, + "id": 132346381858902020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 14, + 34 + ], + "url": "http://t.co/TOt1xWCn", + "expanded_url": "http://www.youtube.com/watch?v=btk3LbwgtBA&feature=youtube_gdata_player", + "display_url": "youtube.com/watch?v=btk3Lb…" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.253451, + -33.892763 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">YouTube on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346381858902016", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1606011675/Captura_de_tela_2011-10-26__s_00.26.04_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 41828458, + "profile_text_color": "333333", + "followers_count": 649, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "41828458", + "profile_background_color": "022330", + "listed_count": 39, + "utc_offset": -10800, + "statuses_count": 14357, + "description": "Um frasista, polidor de moedas que afugenta pombos nas horas vagas.", + "friends_count": 416, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1606011675/Captura_de_tela_2011-10-26__s_00.26.04_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Richard Valença", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "richardvalenca", + "notifications": null, + "url": null, + "created_at": "Fri May 22 15:04:19 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brasilia", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.892763, + 151.253451 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:40:10 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0b5359", + "_rev": "1-30aedea97d96a6af20fc9dd913725718", + "oldid": "4eb388383de67c5117000167", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Aseeeek! RT @IndhiraAgung: Jangan pasrah gtu kak,, walaupun tua, wajah masih kayak umur 5thn,, :') RT agungsemarajaya: Oh iya udah tua.", + "created_at": "Fri Nov 04 06:40:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20290625, + -33.88049721 + ] + }, + "id": 132346382555168770, + "entities": { + "user_mentions": [ + { + "indices": [ + 12, + 25 + ], + "id": 101955558, + "id_str": "101955558", + "screen_name": "IndhiraAgung", + "name": "Arya Putri Agung .I." + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346382555168768", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88049721, + 151.20290625 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 77386228, + "profile_text_color": "333333", + "followers_count": 229, + "profile_sidebar_border_color": "C0DEED", + "id_str": "77386228", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 14197, + "description": "Football is my life; Internetworking is my world; I am a big fan of @Kaka & Steve Jobs!", + "friends_count": 204, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/128619184/Sydney.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/128619184/Sydney.jpg", + "name": "Agung Semarajaya", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 30, + "screen_name": "agungsemarajaya", + "notifications": null, + "url": "http://www.facebook.com/agungsemarajaya", + "created_at": "Sat Sep 26 03:30:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b61f7", + "_rev": "1-93c8fd10b09d0e56607a2d878d899e82", + "oldid": "4eb388403de67c5117000168", + "favorited": false, + "in_reply_to_user_id": 169318838, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tassie_gal What kind of self respecting city venue doesn't do tables for one?! Come on... Nothing like a \"pirlo\" to take the pain away...", + "created_at": "Fri Nov 04 06:40:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344362876145664", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20937377, + -33.87031604 + ] + }, + "id": 132346415006498820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 169318838, + "id_str": "169318838", + "screen_name": "tassie_gal", + "name": "Zelda" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344362876145660, + "in_reply_to_screen_name": "tassie_gal", + "id_str": "132346415006498816", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87031604, + 151.20937377 + ] + }, + "in_reply_to_user_id_str": "169318838", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 272274507, + "profile_text_color": "333333", + "followers_count": 423, + "profile_sidebar_border_color": "C0DEED", + "id_str": "272274507", + "profile_background_color": "C0DEED", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 362, + "description": "Spiedo Restaurant & Bar, Alessandro Pavoni's latest offering. Informal Lombardian food. Level 6, Westfield Sydney. Now open! (P.S. It's pronounced spi-eh-do.)", + "friends_count": 160, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "SpiedoSydneyCBD", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "SpiedoSydneyCBD", + "notifications": null, + "url": "http://www.spiedo.com.au", + "created_at": "Sat Mar 26 05:19:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b6a30", + "_rev": "1-29ecfb03bc87f001b90197d23d2dead4", + "oldid": "4eb3884d3de67c5117000169", + "favorited": false, + "in_reply_to_user_id": 38308112, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Tommy__M is entry more tonight at GH cause of Ricki?", + "created_at": "Fri Nov 04 06:40:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99744621, + -37.91412423 + ] + }, + "id": 132346468857159680, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 38308112, + "id_str": "38308112", + "screen_name": "Tommy__M", + "name": "Tom Thomas ♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "Tommy__M", + "id_str": "132346468857159680", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.91412423, + 144.99744621 + ] + }, + "in_reply_to_user_id_str": "38308112", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1297, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26036, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b6e28", + "_rev": "1-3782b82cd393fe3c5bba4255f52eed7e", + "oldid": "4eb3884e3de67c511700016a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Is there middleware that makes myob and salesforce work together?", + "created_at": "Fri Nov 04 06:40:32 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.14069904, + -35.31650971 + ] + }, + "id": 132346473105981440, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346473105981440", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.31650971, + 149.14069904 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/877398491/Screen_shot_2010-05-06_at_3.02.26_PM_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 17772400, + "profile_text_color": "333333", + "followers_count": 253, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "17772400", + "profile_background_color": "022330", + "listed_count": 11, + "utc_offset": -36000, + "statuses_count": 1006, + "description": "Loyalist for hire. Made the journey from News Ltd to DBCDE. Views are my own ", + "friends_count": 355, + "location": "Canberra", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/877398491/Screen_shot_2010-05-06_at_3.02.26_PM_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Joshua Grech", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "grechj", + "notifications": null, + "url": null, + "created_at": "Mon Dec 01 05:31:13 +0000 2008", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b722d", + "_rev": "1-7999f7dc0835f87c41da3ca252a88a94", + "oldid": "4eb388503de67c511700016b", + "favorited": false, + "in_reply_to_user_id": 32959253, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@KhloeKardashian @KimKardashian why did you guys bail? #disappointed", + "created_at": "Fri Nov 04 06:40:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.17634069, + -21.17287129 + ] + }, + "id": 132346482836766720, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 32959253, + "id_str": "32959253", + "screen_name": "KhloeKardashian", + "name": "KhloéKardashianOdom" + }, + { + "indices": [ + 17, + 31 + ], + "id": 25365536, + "id_str": "25365536", + "screen_name": "KimKardashian", + "name": "Kim Kardashian" + } + ], + "hashtags": [ + { + "indices": [ + 55, + 68 + ], + "text": "disappointed" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "KhloeKardashian", + "id_str": "132346482836766720", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -21.17287129, + 149.17634069 + ] + }, + "in_reply_to_user_id_str": "32959253", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618392507/smith_and_me_normal.jpg", + "profile_sidebar_fill_color": "184A35", + "id": 190626826, + "profile_text_color": "6BBF11", + "followers_count": 100, + "profile_sidebar_border_color": "391354", + "id_str": "190626826", + "profile_background_color": "B0FC21", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 344, + "description": "Journalist, occasional blogger and sporadic tweeter", + "friends_count": 157, + "location": "Townsville", + "profile_link_color": "198528", + "profile_image_url": "http://a3.twimg.com/profile_images/1618392507/smith_and_me_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/222403049/races_and_kj_party_028.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/222403049/races_and_kj_party_028.JPG", + "name": "Natalie Wynne", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Natalie_Wynne7", + "notifications": null, + "url": null, + "created_at": "Tue Sep 14 12:52:49 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b7ed4", + "_rev": "1-a0282a0be191785297b68fed6dd717f1", + "oldid": "4eb388513de67c511700016c", + "contributors": null, + "truncated": false, + "text": "Just posted a photo @ Federation Square http://t.co/kmZ7symc", + "in_reply_to_status_id": null, + "id": 132346489304391680, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 41, + 61 + ], + "url": "http://t.co/kmZ7symc", + "expanded_url": "http://instagr.am/p/SqSGx/", + "display_url": "instagr.am/p/SqSGx/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96829033, + -37.81785297 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346489304391680", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "profile_sidebar_fill_color": "adebff", + "id": 53871425, + "profile_text_color": "011e36", + "followers_count": 171, + "profile_sidebar_border_color": "07c4d9", + "id_str": "53871425", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": 28800, + "statuses_count": 14586, + "description": "this is a private space of mumbling thought. nothing much.", + "friends_count": 186, + "location": "Kuala Lumpur, Malaysia", + "profile_link_color": "1524ed", + "profile_image_url": "http://a0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/21848671/bgb.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/21848671/bgb.jpg", + "name": "Fauzi Yusoff", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 17, + "screen_name": "fauziyusoff", + "notifications": null, + "url": "http://www.fauziyusoff.com", + "created_at": "Sun Jul 05 08:46:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Kuala Lumpur", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81785297, + 144.96829033 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:40:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0b84b2", + "_rev": "1-872f22518fd9e590b83c01571d896aea", + "oldid": "4eb388553de67c511700016d", + "contributors": null, + "truncated": false, + "text": "Please Note: @ Caltex Star Mart http://t.co/KAqK8yPP", + "in_reply_to_status_id": null, + "id": 132346502508068860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 33, + 53 + ], + "url": "http://t.co/KAqK8yPP", + "expanded_url": "http://instagr.am/p/SqSEM/", + "display_url": "instagr.am/p/SqSEM/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.893498, + -33.9562 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346502508068864", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616149726/image_normal.jpg", + "profile_sidebar_fill_color": "3F1516", + "id": 23724456, + "profile_text_color": "C33A2E", + "followers_count": 139, + "profile_sidebar_border_color": "CC8BAF", + "id_str": "23724456", + "profile_background_color": "5F555F", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 2488, + "description": "Everyone is a friend of his own pathology.", + "friends_count": 172, + "location": "Sydney", + "profile_link_color": "AB2D22", + "profile_image_url": "http://a2.twimg.com/profile_images/1616149726/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/210252462/egypt.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/210252462/egypt.jpg", + "name": "Sean Michael Wright", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 77, + "screen_name": "seanmwright", + "notifications": null, + "url": null, + "created_at": "Wed Mar 11 04:50:48 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.9562, + 150.893498 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:40:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0b889a", + "_rev": "1-6f199cecc038d419e2b1d79728223f12", + "oldid": "4eb388593de67c511700016e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Я хочу в кино!", + "created_at": "Fri Nov 04 06:40:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.76943004, + -37.72021421 + ] + }, + "id": 132346520212209660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346520212209664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.72021421, + 144.76943004 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1578305158/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 189088002, + "profile_text_color": "000000", + "followers_count": 58, + "profile_sidebar_border_color": "eeeeee", + "id_str": "189088002", + "profile_background_color": "ffffff", + "listed_count": 3, + "utc_offset": -18000, + "statuses_count": 3158, + "description": "Watch me", + "friends_count": 195, + "location": "Melbourne,VIC,AU", + "profile_link_color": "f00e0e", + "profile_image_url": "http://a2.twimg.com/profile_images/1578305158/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/340919854/tumblr_lpogv3iTQD1qb6f1po1_500.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/340919854/tumblr_lpogv3iTQD1qb6f1po1_500.jpg", + "name": "Sonia Noir", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 131, + "screen_name": "s_noir", + "notifications": null, + "url": null, + "created_at": "Fri Sep 10 10:41:42 +0000 2010", + "contributors_enabled": false, + "time_zone": "Quito", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b9207", + "_rev": "1-a61f6fdb10f2099f764f3671bd336fb5", + "oldid": "4eb3885b3de67c511700016f", + "favorited": false, + "in_reply_to_user_id": 157140968, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@KendallJenner happy birthday Kendall!", + "created_at": "Fri Nov 04 06:40:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 142.39227366, + -36.2565115 + ] + }, + "id": 132346528093315070, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 157140968, + "id_str": "157140968", + "screen_name": "KendallJenner", + "name": "Kendall Jenner" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "KendallJenner", + "id_str": "132346528093315073", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.2565115, + 142.39227366 + ] + }, + "in_reply_to_user_id_str": "157140968", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615418318/image_normal.jpg", + "profile_sidebar_fill_color": "c9c9c9", + "id": 24092721, + "profile_text_color": "1c1f23", + "followers_count": 113, + "profile_sidebar_border_color": "bfbfbf", + "id_str": "24092721", + "profile_background_color": "07090b", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 6043, + "description": "Mummy of Hannah-Lea Kate :) \nLove The Veronicas & Michael Paynter", + "friends_count": 790, + "location": "Australia", + "profile_link_color": "c34242", + "profile_image_url": "http://a2.twimg.com/profile_images/1615418318/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/295282748/IMG_0503.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/295282748/IMG_0503.JPG", + "name": "Kirsty&Hannah ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 10, + "screen_name": "versumlove", + "notifications": null, + "url": null, + "created_at": "Fri Mar 13 01:13:44 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0b983c", + "_rev": "1-535b28a3a6a91a59b2d8932f58323b75", + "oldid": "4eb3885c3de67c5117000170", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Friday afternoon beers in the sun.", + "created_at": "Fri Nov 04 06:40:47 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.11875849, + -35.28371074 + ] + }, + "id": 132346535408181250, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346535408181248", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.28371074, + 149.11875849 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/80511651/me_coffee_normal.jpg", + "profile_sidebar_fill_color": "e0ff92", + "id": 14053240, + "profile_text_color": "000000", + "followers_count": 1179, + "profile_sidebar_border_color": "87bc44", + "id_str": "14053240", + "profile_background_color": "000000", + "listed_count": 103, + "utc_offset": 36000, + "statuses_count": 5919, + "description": "Machine learning researcher at ANU/NICTA, father, husband, guitarist, snowboarder, programmer, list-maker.", + "friends_count": 331, + "location": "Canberra, ACT, Australia", + "profile_link_color": "0000ff", + "profile_image_url": "http://a0.twimg.com/profile_images/80511651/me_coffee_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/2583339/blue_stripes.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/2583339/blue_stripes.png", + "name": "Mark Reid", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1452, + "screen_name": "mdreid", + "notifications": null, + "url": "http://mark.reid.name", + "created_at": "Thu Feb 28 05:26:26 +0000 2008", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ba177", + "_rev": "1-b3aeec57d41908f40ec75a2531551dc3", + "oldid": "4eb388663de67c5117000171", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "RT please!! I needda reach my goal ! Yeh noice!!", + "created_at": "Fri Nov 04 06:40:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95921586, + -37.72060769 + ] + }, + "id": 132346576776609800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346576776609792", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.72060769, + 144.95921586 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619372586/snapshot__6__normal.jpg", + "profile_sidebar_fill_color": "12c0ff", + "id": 358652134, + "profile_text_color": "ff0091", + "followers_count": 155, + "profile_sidebar_border_color": "080106", + "id_str": "358652134", + "profile_background_color": "00d9ff", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 118, + "description": "I LOVE CODY SIMPSON, DAN CARTER AND ZAC GUILDFORD !\r\ntumblr - www.immaasianchick.tumblr.com", + "friends_count": 825, + "location": "Melbourne, Australia", + "profile_link_color": "4f00fa", + "profile_image_url": "http://a2.twimg.com/profile_images/1619372586/snapshot__6__normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/356907336/D.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/356907336/D.jpg", + "name": "Mykah Kristine Lopez", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 56, + "screen_name": "Mykah_Lopez", + "notifications": null, + "url": "http://facebook.com/MykahLopez", + "created_at": "Sat Aug 20 08:03:49 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0badc5", + "_rev": "1-0b016cb57d9e683114b02cf8fec7d093", + "oldid": "4eb388683de67c5117000172", + "favorited": false, + "in_reply_to_user_id": 61556829, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@3angels4sure Happy Friday, sunshine! :)", + "created_at": "Fri Nov 04 06:40:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346216150351872", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.01778572, + -32.1367197 + ] + }, + "id": 132346582157889540, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 61556829, + "id_str": "61556829", + "screen_name": "3angels4sure", + "name": "3angels4sure" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132346216150351870, + "in_reply_to_screen_name": "3angels4sure", + "id_str": "132346582157889536", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.1367197, + 116.01778572 + ] + }, + "in_reply_to_user_id_str": "61556829", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1256175986/Project1_normal.png", + "profile_sidebar_fill_color": "DAECF4", + "id": 163776602, + "profile_text_color": "663B12", + "followers_count": 1634, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "163776602", + "profile_background_color": "C6E2EE", + "listed_count": 65, + "utc_offset": 28800, + "statuses_count": 9566, + "description": "Old fart; young heart", + "friends_count": 1915, + "location": "Perth, Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a3.twimg.com/profile_images/1256175986/Project1_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/150399293/twitterbackground1.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/150399293/twitterbackground1.jpg", + "name": "Lee Harris", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 53, + "screen_name": "leemah123", + "notifications": null, + "url": "http://leebob123.com", + "created_at": "Wed Jul 07 07:13:36 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0bbd68", + "_rev": "1-9b31734b648d13dd22b8c62adb3dc925", + "oldid": "4eb388683de67c5117000173", + "contributors": null, + "truncated": false, + "text": "I'm at The Asian Gourmet (Central Market, Adelaide) http://t.co/Du9wq2Bi", + "in_reply_to_status_id": null, + "id": 132346584573816830, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 52, + 72 + ], + "url": "http://t.co/Du9wq2Bi", + "expanded_url": "http://4sq.com/uygLSp", + "display_url": "4sq.com/uygLSp" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.597064, + -34.92954 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346584573816833", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527902839/lc3SrXTX_normal", + "profile_sidebar_fill_color": "C0DFEC", + "id": 78023815, + "profile_text_color": "333333", + "followers_count": 24, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "78023815", + "profile_background_color": "022330", + "listed_count": 3, + "utc_offset": 34200, + "statuses_count": 393, + "description": "Environmental Scientist", + "friends_count": 29, + "location": "Adelaide, South Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1527902839/lc3SrXTX_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/56233669/bodyBg.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/56233669/bodyBg.jpg", + "name": "Jacques Klop", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "JacquesKlop", + "notifications": null, + "url": null, + "created_at": "Mon Sep 28 14:14:22 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.92954, + 138.597064 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:40:59 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0bc54c", + "_rev": "1-57d7de6b27b955db82898d807caef47f", + "oldid": "4eb3886d3de67c5117000174", + "favorited": false, + "in_reply_to_user_id": 397793050, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ameliabadass dont think so. I'll check when I get home from work.", + "created_at": "Fri Nov 04 06:41:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132302456691490816", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02564341, + -27.46885922 + ] + }, + "id": 132346602785484800, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 397793050, + "id_str": "397793050", + "screen_name": "ameliabadass", + "name": "catherine" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132302456691490820, + "in_reply_to_screen_name": "ameliabadass", + "id_str": "132346602785484800", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.46885922, + 153.02564341 + ] + }, + "in_reply_to_user_id_str": "397793050", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609139016/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 326040493, + "profile_text_color": "333333", + "followers_count": 22, + "profile_sidebar_border_color": "eeeeee", + "id_str": "326040493", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 76, + "description": "bit of bikes, bit of jeans, bit of music. get stoked!", + "friends_count": 65, + "location": "The Spein district, Brisbane", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1609139016/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Cameron Carlile", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "camoaye17", + "notifications": null, + "url": null, + "created_at": "Wed Jun 29 08:24:52 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0bcc9e", + "_rev": "1-386e2c86c701a69a7e1d7232ad38f515", + "oldid": "4eb388773de67c5117000175", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Two weeks break before summer school", + "created_at": "Fri Nov 04 06:41:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82623297, + -33.75787784 + ] + }, + "id": 132346647614210050, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346647614210048", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75787784, + 150.82623297 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9259, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0bd265", + "_rev": "1-17d96a97bf2115a7a1c2ef169fd7a6b0", + "oldid": "4eb388793de67c5117000176", + "contributors": null, + "truncated": false, + "text": "@hexsteph @bajopants Drawing class for today done, group of us now Brawling it up, still on campus. Good times! :D http://t.co/DPIDSVoU", + "in_reply_to_status_id": null, + "id": 132346649824600060, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 21176417, + "id_str": "21176417", + "screen_name": "hexsteph", + "name": "Stephanie Bendixsen" + }, + { + "indices": [ + 10, + 20 + ], + "id": 34886889, + "id_str": "34886889", + "screen_name": "bajopants", + "name": "Steven Bajo ODonnell" + } + ], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYwk6qCIAAZ3U-.jpg", + "expanded_url": "http://twitter.com/MattAndre/status/132346649824600065/photo/1", + "display_url": "pic.twitter.com/DPIDSVoU", + "url": "http://t.co/DPIDSVoU", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132346649832988672", + "indices": [ + 115, + 135 + ], + "type": "photo", + "id": 132346649832988670, + "media_url": "http://p.twimg.com/AdYwk6qCIAAZ3U-.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.87070616, + -31.96091536 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "hexsteph", + "in_reply_to_user_id": 21176417, + "retweet_count": 0, + "id_str": "132346649824600065", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1464157592/IMG_0314_normal.JPG", + "profile_sidebar_fill_color": "000000", + "id": 21479393, + "profile_text_color": "757070", + "followers_count": 161, + "profile_sidebar_border_color": "253566", + "id_str": "21479393", + "profile_background_color": "000000", + "listed_count": 14, + "utc_offset": 28800, + "statuses_count": 23946, + "description": "What's there to say? I'm 23, an Australian gamer planning to write & design games..\r\nXbox: MattAn24 / Steam: [LRR] Maethorn", + "friends_count": 1225, + "location": "Perth, Australia", + "profile_link_color": "941f1f", + "profile_image_url": "http://a3.twimg.com/profile_images/1464157592/IMG_0314_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131254883/moon-ocean-space-background.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/131254883/moon-ocean-space-background.jpg", + "name": "Matthew Andre", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 76, + "screen_name": "MattAndre", + "notifications": null, + "url": null, + "created_at": "Sat Feb 21 12:16:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.96091536, + 115.87070616 + ] + }, + "in_reply_to_user_id_str": "21176417", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:41:15 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0be05d", + "_rev": "1-eafbca6ef5e43757557f227f8ef53bbc", + "oldid": "4eb388803de67c5117000177", + "favorited": false, + "in_reply_to_user_id": 159104243, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@The_Man_Mundine @corypaterson12 what a cute couple", + "created_at": "Fri Nov 04 06:41:22 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341836068028416", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.12868855, + -33.93144608 + ] + }, + "id": 132346682590507000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 159104243, + "id_str": "159104243", + "screen_name": "The_Man_Mundine", + "name": "Anthony Mundine " + }, + { + "indices": [ + 17, + 32 + ], + "id": 231727094, + "id_str": "231727094", + "screen_name": "CoryPaterson12", + "name": "Cory Paterson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341836068028420, + "in_reply_to_screen_name": "The_Man_Mundine", + "id_str": "132346682590507008", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93144608, + 151.12868855 + ] + }, + "in_reply_to_user_id_str": "159104243", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1614752806/profile_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 306083938, + "profile_text_color": "333333", + "followers_count": 150, + "profile_sidebar_border_color": "C0DEED", + "id_str": "306083938", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 2783, + "description": "Canterbury-Bankstown Bulldogs Fan, Manchester United Fan, Computer Geek, Cantona is my God.", + "friends_count": 258, + "location": "With Carmen Sandiago", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1614752806/profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "En Soz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "nsoz7", + "notifications": null, + "url": null, + "created_at": "Fri May 27 07:53:27 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0be6c1", + "_rev": "1-d995e395807865d37baaff78b8e64534", + "oldid": "4eb388843de67c5117000178", + "favorited": false, + "in_reply_to_user_id": 162962004, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@TenSportMelb true but our man is better!", + "created_at": "Fri Nov 04 06:41:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342217833594880", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.04690209, + -37.85765253 + ] + }, + "id": 132346699850059780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 162962004, + "id_str": "162962004", + "screen_name": "TenSportMelb", + "name": "Channel Ten Sport" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342217833594880, + "in_reply_to_screen_name": "TenSportMelb", + "id_str": "132346699850059776", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85765253, + 145.04690209 + ] + }, + "in_reply_to_user_id_str": "162962004", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1258302311/413601-fs-image-fs-news-julian-de-stoop_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 159789574, + "profile_text_color": "333333", + "followers_count": 2752, + "profile_sidebar_border_color": "C0DEED", + "id_str": "159789574", + "profile_background_color": "C0DEED", + "listed_count": 38, + "utc_offset": null, + "statuses_count": 1027, + "description": "AFL Reporter at Fox Sports News", + "friends_count": 780, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1258302311/413601-fs-image-fs-news-julian-de-stoop_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Julian de Stoop", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "JDESTOOP80", + "notifications": null, + "url": null, + "created_at": "Sat Jun 26 10:11:45 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0be92a", + "_rev": "1-8d480a4fa6c965502795df933d2c2552", + "oldid": "4eb3888e3de67c5117000179", + "contributors": null, + "truncated": false, + "text": "Free wifi :D (@ Bundoora RSL Bowling Centre) http://t.co/yySHFRh8", + "in_reply_to_status_id": null, + "id": 132346742850072580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 45, + 65 + ], + "url": "http://t.co/yySHFRh8", + "expanded_url": "http://4sq.com/uNsSJu", + "display_url": "4sq.com/uNsSJu" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.06287575, + -37.6981853 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346742850072576", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1308622011/SANY0633_normal.JPG", + "profile_sidebar_fill_color": "252429", + "id": 115264371, + "profile_text_color": "666666", + "followers_count": 92, + "profile_sidebar_border_color": "181A1E", + "id_str": "115264371", + "profile_background_color": "1A1B1F", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 8931, + "description": "Make Metal Bleed...", + "friends_count": 235, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1308622011/SANY0633_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Nathan Mills", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 101, + "screen_name": "Miillzoi", + "notifications": null, + "url": null, + "created_at": "Thu Feb 18 03:53:49 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.6981853, + 145.06287575 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:41:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0beacc", + "_rev": "1-5cf42c641c6251c4bb471ae2a302d9f5", + "oldid": "4eb3888f3de67c511700017a", + "favorited": false, + "in_reply_to_user_id": 14249489, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@jasonetheridge Earth on a tortoise' back?", + "created_at": "Fri Nov 04 06:41:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343198445080577", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12277513, + -37.85297892 + ] + }, + "id": 132346748713697280, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 14249489, + "id_str": "14249489", + "screen_name": "jasonetheridge", + "name": "Jason Etheridge" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343198445080580, + "in_reply_to_screen_name": "jasonetheridge", + "id_str": "132346748713697280", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85297892, + 145.12277513 + ] + }, + "in_reply_to_user_id_str": "14249489", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12620, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0bf3b6", + "_rev": "1-b948f886f4b8fc7077af5c3567e893f0", + "oldid": "4eb388933de67c511700017b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Lots of new dresses on the racks come and pick 3 for $90", + "created_at": "Fri Nov 04 06:41:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98295837, + -37.79877793 + ] + }, + "id": 132346763091771400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346763091771392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79877793, + 144.98295837 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1306333626/frieprie_avatar_girl_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 86003446, + "profile_text_color": "333333", + "followers_count": 61, + "profile_sidebar_border_color": "faf5fa", + "id_str": "86003446", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 241, + "description": "Friperie Vintage - a little bit bonjour and a little bit konnichiwa \r\n337 Smith Street Fitzroy Melbourne ", + "friends_count": 66, + "location": "Fitzroy Melbourne Australia", + "profile_link_color": "f08c5d", + "profile_image_url": "http://a0.twimg.com/profile_images/1306333626/frieprie_avatar_girl_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/230786125/twitter_background_spots_small_copy.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/230786125/twitter_background_spots_small_copy.jpg", + "name": "Friperie ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "FriperieFitzroy", + "notifications": null, + "url": "http://www.friperiefitzroy.blogspot.com", + "created_at": "Thu Oct 29 05:51:38 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0bfb54", + "_rev": "1-84f53424cbbed35d6208d6590e4d99c9", + "oldid": "4eb388963de67c511700017c", + "contributors": null, + "truncated": false, + "text": "I'm at IBM Centre (60 City Rd, Southbank) http://t.co/O6OW9FWP", + "in_reply_to_status_id": null, + "id": 132346778874949630, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 42, + 62 + ], + "url": "http://t.co/O6OW9FWP", + "expanded_url": "http://4sq.com/vljTGw", + "display_url": "4sq.com/vljTGw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96615092, + -37.821152 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346778874949632", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1590916773/317504_10150422213971554_663546553_10331432_904569368_n_normal.jpg", + "profile_sidebar_fill_color": "A0C5C7", + "id": 15116567, + "profile_text_color": "333333", + "followers_count": 143, + "profile_sidebar_border_color": "86A4A6", + "id_str": "15116567", + "profile_background_color": "709397", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 4220, + "description": "Most of my tweets are news and IT related news. I work for a major corporate IT company but my love is consumer IT and console gaming.", + "friends_count": 160, + "location": "Geelong, Australia", + "profile_link_color": "FF3300", + "profile_image_url": "http://a2.twimg.com/profile_images/1590916773/317504_10150422213971554_663546553_10331432_904569368_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/314919933/Assassins_Creed_2.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/314919933/Assassins_Creed_2.jpg", + "name": "Andrew Caple", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "captaincaple", + "notifications": null, + "url": null, + "created_at": "Sat Jun 14 13:16:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.821152, + 144.96615092 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:41:45 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0c064d", + "_rev": "1-6b291ab509ba616adec937dfdb530106", + "oldid": "4eb3889a3de67c511700017d", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Always great to be told to shut up and stop being stupid :-(", + "created_at": "Fri Nov 04 06:41:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.8616944, + -31.95416859 + ] + }, + "id": 132346793768919040, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346793768919040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.95416859, + 115.8616944 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1587472719/image_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 28313944, + "profile_text_color": "634047", + "followers_count": 561, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "28313944", + "profile_background_color": "EDECE9", + "listed_count": 47, + "utc_offset": 28800, + "statuses_count": 26438, + "description": "Love her son, iPhone, Doctor Who, Chuck, the sun, the rain, laying in bed and @simonpanossian", + "friends_count": 463, + "location": "Perth, Western Australia", + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1587472719/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "Sandra", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 21, + "screen_name": "SandraHeartsU", + "notifications": null, + "url": null, + "created_at": "Thu Apr 02 10:23:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c0c75", + "_rev": "1-5f2a97e4c4f5131278eb483c6a79a6b0", + "oldid": "4eb3889c3de67c511700017e", + "favorited": false, + "in_reply_to_user_id": 141182455, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@dannirockstarr lol", + "created_at": "Fri Nov 04 06:41:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341566181355520", + "coordinates": { + "type": "Point", + "coordinates": [ + 146.9072291, + -36.06178531 + ] + }, + "id": 132346799804530690, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 141182455, + "id_str": "141182455", + "screen_name": "dannirockstarr", + "name": "Danni Suriano" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341566181355520, + "in_reply_to_screen_name": "dannirockstarr", + "id_str": "132346799804530689", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.06178531, + 146.9072291 + ] + }, + "in_reply_to_user_id_str": "141182455", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1156995887/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 208350310, + "profile_text_color": "333333", + "followers_count": 36, + "profile_sidebar_border_color": "C0DEED", + "id_str": "208350310", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 576, + "description": "A particle of the atom we like to call the universe!\r\nBut a Happy one!!!\r\n", + "friends_count": 24, + "location": "Albury", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1156995887/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/326330674/boc_cars_2.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/326330674/boc_cars_2.jpg", + "name": "China Clarkey", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "2uChina", + "notifications": null, + "url": null, + "created_at": "Wed Oct 27 03:26:26 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c1298", + "_rev": "1-a37932043314b0d94b6c67b7ce67584c", + "oldid": "4eb3889c3de67c511700017f", + "favorited": false, + "in_reply_to_user_id": 319455141, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@WoodyJ64 @rockband @clunk83 @pheeyonah woooooo! Can I rock out in my pj's? #onlyhalfjoking", + "created_at": "Fri Nov 04 06:41:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335281490771968", + "coordinates": { + "type": "Point", + "coordinates": [ + 146.52924901, + -38.20468783 + ] + }, + "id": 132346802258198530, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 319455141, + "id_str": "319455141", + "screen_name": "WoodyJ64", + "name": "Justin Woodroffe" + }, + { + "indices": [ + 10, + 19 + ], + "id": 34378922, + "id_str": "34378922", + "screen_name": "RockBand", + "name": "Rock Band" + }, + { + "indices": [ + 20, + 28 + ], + "id": 39192771, + "id_str": "39192771", + "screen_name": "clunk83", + "name": "Clinton Savage" + }, + { + "indices": [ + 29, + 39 + ], + "id": 41299535, + "id_str": "41299535", + "screen_name": "pheeyonah", + "name": "Fiona Aust" + } + ], + "hashtags": [ + { + "indices": [ + 76, + 91 + ], + "text": "onlyhalfjoking" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132335281490771970, + "in_reply_to_screen_name": "WoodyJ64", + "id_str": "132346802258198529", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.20468783, + 146.52924901 + ] + }, + "in_reply_to_user_id_str": "319455141", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1260330347/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 23052272, + "profile_text_color": "3E4415", + "followers_count": 60, + "profile_sidebar_border_color": "829D5E", + "id_str": "23052272", + "profile_background_color": "352726", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1177, + "description": "I enjoy sticking it to the man. But purely only in the privcy of my own home ", + "friends_count": 255, + "location": "Gippsland, Victoria, Australia", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1260330347/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Stacey Savage", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 21, + "screen_name": "LovelyMsPumpkin", + "notifications": null, + "url": null, + "created_at": "Fri Mar 06 10:52:05 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c1ab2", + "_rev": "1-854ca32e3dbe73cbdd8b733faf5557aa", + "oldid": "4eb388a43de67c5117000180", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": ":'( deppressed mood again :(", + "created_at": "Fri Nov 04 06:41:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132346834634014720, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346834634014720", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546812564/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3301, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1546812564/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c2123", + "_rev": "1-d98af4c580c7478d12a72ccdb7f93a5c", + "oldid": "4eb388a73de67c5117000181", + "contributors": null, + "truncated": false, + "text": "I just ousted Linge O. as the mayor of Hudsons Coffee on @foursquare! http://t.co/4VdWA8Lo", + "in_reply_to_status_id": null, + "id": 132346847804141570, + "entities": { + "user_mentions": [ + { + "indices": [ + 57, + 68 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/4VdWA8Lo", + "expanded_url": "http://4sq.com/96jW4g", + "display_url": "4sq.com/96jW4g" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.972406, + -37.8099264 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346847804141568", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1241951017/CRW_8977_normal.PNG", + "profile_sidebar_fill_color": "bf1ce8", + "id": 138392330, + "profile_text_color": "002bff", + "followers_count": 160, + "profile_sidebar_border_color": "002bff", + "id_str": "138392330", + "profile_background_color": "FF6699", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 4632, + "description": "Volunteer at 3INR in Heidelberg Victoria, never without my digital compact. Also my interest vary hence the lists.", + "friends_count": 284, + "location": "Melbourne Vic Australia", + "profile_link_color": "360436", + "profile_image_url": "http://a1.twimg.com/profile_images/1241951017/CRW_8977_normal.PNG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/202138578/IMG_8668.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/202138578/IMG_8668.JPG", + "name": "Struan McGregor", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 110, + "screen_name": "StruanMcGregor", + "notifications": null, + "url": null, + "created_at": "Thu Apr 29 12:27:23 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8099264, + 144.972406 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:02 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0c2c14", + "_rev": "1-ab57cf7fd7a15549f7a3be07ce8a432d", + "oldid": "4eb388a93de67c5117000182", + "contributors": null, + "truncated": false, + "text": "I'm at Precious Cargo St Peters http://t.co/8M0Izxaa", + "in_reply_to_status_id": null, + "id": 132346855702007800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 32, + 52 + ], + "url": "http://t.co/8M0Izxaa", + "expanded_url": "http://4sq.com/rKGu8N", + "display_url": "4sq.com/rKGu8N" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.619804, + -34.901079 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346855702007808", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1132894384/SH_Space_RGB_small_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 24132468, + "profile_text_color": "634047", + "followers_count": 251, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "24132468", + "profile_background_color": "EDECE9", + "listed_count": 16, + "utc_offset": 34200, + "statuses_count": 2051, + "description": "MD of Deadline. Like tech, golf, skiing and hoops. Wine and food nerd also. Into politics and stuff. Member of #EO and love that too.", + "friends_count": 181, + "location": "Adelaide", + "profile_link_color": "088253", + "profile_image_url": "http://a3.twimg.com/profile_images/1132894384/SH_Space_RGB_small_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/154785490/Corporate_Space_RGB_XL_Flat.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/154785490/Corporate_Space_RGB_XL_Flat.jpg", + "name": "Sean Heylen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "sdothot", + "notifications": null, + "url": "http://www.deadline.net.au", + "created_at": "Fri Mar 13 05:15:22 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.901079, + 138.619804 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0c39f0", + "_rev": "1-9b3cd408ff38a546ed003218d1ae4ee0", + "oldid": "4eb388aa3de67c5117000183", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#2011musictaughtme that we like big booty bitches", + "created_at": "Fri Nov 04 06:42:05 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33342868, + -38.03079324 + ] + }, + "id": 132346861880225800, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 18 + ], + "text": "2011musictaughtme" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346861880225792", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03079324, + 145.33342868 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2634, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c43a8", + "_rev": "1-27dfc7d57fec128f53e6d60d1347e4fb", + "oldid": "4eb388ac3de67c5117000184", + "contributors": null, + "truncated": false, + "text": "It looks amazing... It's platinum blonde at the back http://t.co/ysExmfnL", + "in_reply_to_status_id": null, + "id": 132346867651579900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 53, + 73 + ], + "url": "http://t.co/ysExmfnL", + "expanded_url": "http://yfrog.com/oduhnvfj", + "display_url": "yfrog.com/oduhnvfj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0011384, + -33.8171692 + ] + }, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346867651579904", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1604886949/Tealwolf_normal.png", + "profile_sidebar_fill_color": "00ffaa", + "id": 233788183, + "profile_text_color": "1a181a", + "followers_count": 188, + "profile_sidebar_border_color": "000000", + "id_str": "233788183", + "profile_background_color": "ffffff", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 3857, + "description": "Hi, My name is Teal, I'm a wolf *barks* :3 im always looking to meet new people so if you want to be my friend just send me a request :)\r\n", + "friends_count": 172, + "location": "Sydney, Australia", + "profile_link_color": "8f068f", + "profile_image_url": "http://a1.twimg.com/profile_images/1604886949/Tealwolf_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/352277028/background.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/352277028/background.png", + "name": "Teal wolfington ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 25, + "screen_name": "Tealwolfy", + "notifications": null, + "url": null, + "created_at": "Tue Jan 04 03:18:54 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8171692, + 151.0011384 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0c4ddb", + "_rev": "1-f4ae24b09e0b934a3106d69168297c3d", + "oldid": "4eb388b03de67c5117000185", + "contributors": null, + "truncated": false, + "text": "This is a check in? (@ Train #fail) http://t.co/sB75SPUa", + "in_reply_to_status_id": null, + "id": 132346885942939650, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 29, + 34 + ], + "text": "fail" + } + ], + "urls": [ + { + "indices": [ + 36, + 56 + ], + "url": "http://t.co/sB75SPUa", + "expanded_url": "http://4sq.com/vW3r6I", + "display_url": "4sq.com/vW3r6I" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.976509, + -37.817863 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346885942939648", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1474181487/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 23735686, + "profile_text_color": "3E4415", + "followers_count": 76, + "profile_sidebar_border_color": "829D5E", + "id_str": "23735686", + "profile_background_color": "352726", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 4197, + "description": "Insane cunt", + "friends_count": 129, + "location": "iPhone: -33.845242,151.042247", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1474181487/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Ian Rewy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "Rewcub", + "notifications": null, + "url": null, + "created_at": "Wed Mar 11 07:39:29 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.817863, + 144.976509 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0c5a62", + "_rev": "1-d129261898a192846a7ddac0228cfe68", + "oldid": "4eb388b13de67c5117000186", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "RT #2011musictaughtme that friday goes after thursday. LOL", + "created_at": "Fri Nov 04 06:42:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6946852, + -34.6390709 + ] + }, + "id": 132346889822670850, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 3, + 21 + ], + "text": "2011musictaughtme" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346889822670848", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.6390709, + 138.6946852 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570717877/Xy37VOSD_normal", + "profile_sidebar_fill_color": "ffebfe", + "id": 248039464, + "profile_text_color": "666666", + "followers_count": 41, + "profile_sidebar_border_color": "181A1E", + "id_str": "248039464", + "profile_background_color": "fa9be7", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 586, + "description": "A Locket, Part of the Harry Potter Generation, Just an Average Girl, Totally Relatable, Her Obsessions are way out of hand. Does She Care? No ;)", + "friends_count": 186, + "location": "Australia :)", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1570717877/Xy37VOSD_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/340449687/funny.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/340449687/funny.jpg", + "name": "Thoa Turtle", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "thoax3", + "notifications": null, + "url": "http://aloha-key.tumblr.com/", + "created_at": "Sun Feb 06 03:43:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c68ab", + "_rev": "1-5fc6462ef2714e2892431a74cab24aa9", + "oldid": "4eb388b23de67c5117000187", + "contributors": null, + "truncated": false, + "text": "Club night (@ Sans Souci Leisure Centre) http://t.co/yPEWTobw", + "in_reply_to_status_id": null, + "id": 132346896021852160, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 41, + 61 + ], + "url": "http://t.co/yPEWTobw", + "expanded_url": "http://4sq.com/vShwuJ", + "display_url": "4sq.com/vShwuJ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.12699, + -34.002907 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346896021852160", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/369208376/Photo_36_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 16007167, + "profile_text_color": "333333", + "followers_count": 71, + "profile_sidebar_border_color": "eeeeee", + "id_str": "16007167", + "profile_background_color": "B2DFDA", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2549, + "description": "Living one day at a time", + "friends_count": 285, + "location": "Sydney, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/369208376/Photo_36_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Pagona", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 28, + "screen_name": "Pagona", + "notifications": null, + "url": "http://respectguild.wordpress.com", + "created_at": "Wed Aug 27 03:17:31 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.002907, + 151.12699 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0c77c2", + "_rev": "1-eaf2c4766f0017ffd3b834de6ddb384e", + "oldid": "4eb388b43de67c5117000188", + "contributors": null, + "truncated": false, + "text": "Just did 266k's on 13 litres sitting on 110. That's 4.89lts to the 100 or 20.5k's to the litre. Not bad baby! [pic]: http://t.co/ZbVTPooO", + "in_reply_to_status_id": null, + "id": 132346902296530940, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 117, + 137 + ], + "url": "http://t.co/ZbVTPooO", + "expanded_url": "http://4sq.com/uB1x51", + "display_url": "4sq.com/uB1x51" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 142.2024853, + -36.7117484 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132346902296530945", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1523352484/qrroll_normal.JPG", + "profile_sidebar_fill_color": "252429", + "id": 25495640, + "profile_text_color": "666666", + "followers_count": 293, + "profile_sidebar_border_color": "181A1E", + "id_str": "25495640", + "profile_background_color": "1A1B1F", + "listed_count": 6, + "utc_offset": 34200, + "statuses_count": 1092, + "description": "Although I follow and tend to comment on political policy. I will NEVER vote for the coalition, labor or the greens. Party politics is a cancer on democracy,", + "friends_count": 1251, + "location": "Adelaide", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1523352484/qrroll_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Julian Dunmurphy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "jdunmurphy", + "notifications": null, + "url": null, + "created_at": "Fri Mar 20 12:31:06 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -36.7117484, + 142.2024853 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:15 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0c873a", + "_rev": "1-170696834876f44f36f54a62af8103bc", + "oldid": "4eb388b73de67c5117000189", + "favorited": false, + "in_reply_to_user_id": 25784133, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@arron_james yes and thanks for mine", + "created_at": "Fri Nov 04 06:42:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345233143898112", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99148218, + -37.91768664 + ] + }, + "id": 132346915735089150, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 25784133, + "id_str": "25784133", + "screen_name": "arron_james", + "name": "Arron James" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345233143898110, + "in_reply_to_screen_name": "arron_james", + "id_str": "132346915735089152", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.91768664, + 144.99148218 + ] + }, + "in_reply_to_user_id_str": "25784133", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1297, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26037, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c8ea2", + "_rev": "1-05df1becc6820661be9fc442bdc0cc8d", + "oldid": "4eb388c33de67c511700018a", + "favorited": false, + "in_reply_to_user_id": 374373337, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@IamElijah13 \n\nHello Elijah I'm 14 yo gay boy for you to play want you bad follow me back your so cute", + "created_at": "Fri Nov 04 06:42:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132346963923435520, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 374373337, + "id_str": "374373337", + "screen_name": "IamElijah13", + "name": "Elijah" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "IamElijah13", + "id_str": "132346963923435521", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": "374373337", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 910, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9570, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1708, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0c96b7", + "_rev": "1-bd95a4fcf463d0faa948a2992ddb9319", + "oldid": "4eb388c63de67c511700018b", + "favorited": false, + "in_reply_to_user_id": 34821865, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@_jabr just cause you look like a tough criminal now doesn't mean you don't enjoy dropping the soap ;D", + "created_at": "Fri Nov 04 06:42:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343806900187136", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99176752, + -37.92235593 + ] + }, + "id": 132346977605267460, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 34821865, + "id_str": "34821865", + "screen_name": "_jabr", + "name": "Jake Brewer" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343806900187140, + "in_reply_to_screen_name": "_jabr", + "id_str": "132346977605267456", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.92235593, + 144.99176752 + ] + }, + "in_reply_to_user_id_str": "34821865", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1297, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26038, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ca49f", + "_rev": "1-b8e79e430f09c9c0ef2ada800ff95af2", + "oldid": "4eb388c73de67c511700018c", + "favorited": false, + "in_reply_to_user_id": 248645874, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@CTrigger11 @wollongonghawks mate, if I didn't have other commitments I would have come to support my fellow Mo Bro #andyeswehatesydney", + "created_at": "Fri Nov 04 06:42:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343673504538624", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1984008, + -33.8921702 + ] + }, + "id": 132346979073269760, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 248645874, + "id_str": "248645874", + "screen_name": "CTrigger11", + "name": "Cam Tragardh" + }, + { + "indices": [ + 12, + 28 + ], + "id": 23160828, + "id_str": "23160828", + "screen_name": "wollongonghawks", + "name": "Wollongong NRE Hawks" + } + ], + "hashtags": [ + { + "indices": [ + 116, + 135 + ], + "text": "andyeswehatesydney" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132343673504538620, + "in_reply_to_screen_name": "CTrigger11", + "id_str": "132346979073269760", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8921702, + 151.1984008 + ] + }, + "in_reply_to_user_id_str": "248645874", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616939880/26412_10150172128795397_712020396_11920190_1205854_n_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 113332294, + "profile_text_color": "333333", + "followers_count": 75, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "113332294", + "profile_background_color": "022330", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 3038, + "description": "Sydney based photographer, sports aficionado, Moustache grower, idiot", + "friends_count": 205, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1616939880/26412_10150172128795397_712020396_11920190_1205854_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/91455657/jhp6.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/91455657/jhp6.jpg", + "name": "Jarrod Hunt", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "jarrodhuntphoto", + "notifications": null, + "url": "http://www.jarrodhuntphotography.com", + "created_at": "Thu Feb 11 12:25:12 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0cad24", + "_rev": "1-be8c827e7c42537861dae56bca107ef3", + "oldid": "4eb388c73de67c511700018d", + "favorited": false, + "in_reply_to_user_id": 240652887, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LaYdI_SwHaRgg sup sake...ow u dey?", + "created_at": "Fri Nov 04 06:42:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346597282545664", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82608313, + -33.75786048 + ] + }, + "id": 132346980608393220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 240652887, + "id_str": "240652887", + "screen_name": "LaYdI_SwHaRgg", + "name": "Horlaryhermie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132346597282545660, + "in_reply_to_screen_name": "LaYdI_SwHaRgg", + "id_str": "132346980608393217", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75786048, + 150.82608313 + ] + }, + "in_reply_to_user_id_str": "240652887", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9260, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0cb8c7", + "_rev": "1-7841621ee0cd45d687d905174fedc32c", + "oldid": "4eb388c73de67c511700018e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Were having fun in the psychology class today,oh", + "created_at": "Fri Nov 04 06:42:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.76942066, + -37.72008595 + ] + }, + "id": 132346980516106240, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132346980516106240", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.72008595, + 144.76942066 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1578305158/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 189088002, + "profile_text_color": "000000", + "followers_count": 58, + "profile_sidebar_border_color": "eeeeee", + "id_str": "189088002", + "profile_background_color": "ffffff", + "listed_count": 3, + "utc_offset": -18000, + "statuses_count": 3159, + "description": "Watch me", + "friends_count": 195, + "location": "Melbourne,VIC,AU", + "profile_link_color": "f00e0e", + "profile_image_url": "http://a2.twimg.com/profile_images/1578305158/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/340919854/tumblr_lpogv3iTQD1qb6f1po1_500.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/340919854/tumblr_lpogv3iTQD1qb6f1po1_500.jpg", + "name": "Sonia Noir", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 131, + "screen_name": "s_noir", + "notifications": null, + "url": null, + "created_at": "Fri Sep 10 10:41:42 +0000 2010", + "contributors_enabled": false, + "time_zone": "Quito", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0cc341", + "_rev": "1-55d75de90ca2b2c071b734a2249cf053", + "oldid": "4eb388c93de67c511700018f", + "favorited": false, + "in_reply_to_user_id": 60221156, + "contributors": null, + "source": "<a href=\"http://levelupstudio.com\" rel=\"nofollow\">Plume </a>", + "text": "@schmuttt @aclvanzr With nothing better to do but act like a smartass on the internet? Puhleaseee.", + "created_at": "Fri Nov 04 06:42:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132333994510524416", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.13534215, + -37.0246427 + ] + }, + "id": 132346991513575420, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 60221156, + "id_str": "60221156", + "screen_name": "schmuttt", + "name": "Hugh Titchener" + }, + { + "indices": [ + 10, + 19 + ], + "id": 246253124, + "id_str": "246253124", + "screen_name": "ACLVaNzR", + "name": "ACL VaNzR" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132333994510524420, + "in_reply_to_screen_name": "schmuttt", + "id_str": "132346991513575424", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.0246427, + 145.13534215 + ] + }, + "in_reply_to_user_id_str": "60221156", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1599263339/TwitterEdit_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 60493472, + "profile_text_color": "333333", + "followers_count": 554, + "profile_sidebar_border_color": "C0DEED", + "id_str": "60493472", + "profile_background_color": "12bcff", + "listed_count": 32, + "utc_offset": -28800, + "statuses_count": 11987, + "description": "Bryce is a passionate Australian video game and technology reviewer. Opinions are my own and do not represent my employers. Follow my fiancee; @matronedea.", + "friends_count": 206, + "location": "Melbourne - Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1599263339/TwitterEdit_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/239357036/twitter.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/239357036/twitter.jpg", + "name": "Bryce Wilson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 23, + "screen_name": "DrjftGaming", + "notifications": null, + "url": "http://www.drjft.com", + "created_at": "Mon Jul 27 04:53:00 +0000 2009", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0cc7be", + "_rev": "1-3e7ccd26266134928c0af2d50a8f64b7", + "oldid": "4eb388ca3de67c5117000190", + "favorited": false, + "in_reply_to_user_id": 25979290, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@michaelcarew I scanned them and I printed them via Bond.", + "created_at": "Fri Nov 04 06:42:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343668517511168", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.03833217, + -37.80782655 + ] + }, + "id": 132346995443646460, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 25979290, + "id_str": "25979290", + "screen_name": "michaelcarew", + "name": "Michael Carew" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343668517511170, + "in_reply_to_screen_name": "michaelcarew", + "id_str": "132346995443646464", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80782655, + 145.03833217 + ] + }, + "in_reply_to_user_id_str": "25979290", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/85494258/61108991_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 22432747, + "profile_text_color": "666666", + "followers_count": 277, + "profile_sidebar_border_color": "181A1E", + "id_str": "22432747", + "profile_background_color": "1A1B1F", + "listed_count": 17, + "utc_offset": 36000, + "statuses_count": 3006, + "description": "Hi. I like to take photos. I like film. I like to swear. I like it wide. I use Hasselblad's Xpan and Voigtlander rangefinders. I #believeinfilm.", + "friends_count": 290, + "location": "Hawthorn, VIC, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/85494258/61108991_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/75640312/StaticTV.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/75640312/StaticTV.jpg", + "name": "Matthew Joseph", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 23, + "screen_name": "fotodudenz", + "notifications": null, + "url": "http://www.fototheque.com", + "created_at": "Mon Mar 02 01:17:42 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0cc99a", + "_rev": "1-5226694d451542aa2d1f605981da9645", + "oldid": "4eb388cb3de67c5117000191", + "contributors": null, + "truncated": false, + "text": "I'm at Tram Stop 13 - Federation Square (St Kilda Rd., at Flinders St., Melbourne) http://t.co/AjJ2TCRG", + "in_reply_to_status_id": null, + "id": 132347000879448060, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 83, + 103 + ], + "url": "http://t.co/AjJ2TCRG", + "expanded_url": "http://4sq.com/uTvSS7", + "display_url": "4sq.com/uTvSS7" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96789336, + -37.8183848 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347000879448064", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1157977116/Kamakura_Daibutsu_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 19653477, + "profile_text_color": "333333", + "followers_count": 299, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "19653477", + "profile_background_color": "9AE4E8", + "listed_count": 30, + "utc_offset": 36000, + "statuses_count": 2486, + "description": "Professional amateur- changing the world 140 characters at a time", + "friends_count": 867, + "location": "iPhone: -37.885811,145.014923", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1157977116/Kamakura_Daibutsu_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/89937371/Kamakura_Daibutsu.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/89937371/Kamakura_Daibutsu.jpg", + "name": "Tim Patience", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Kyogaman", + "notifications": null, + "url": "http://wefollow.com/Kyogaman", + "created_at": "Wed Jan 28 14:23:06 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8183848, + 144.96789336 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:38 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0cd85c", + "_rev": "1-45fc79f259efb4edfe80ab92f9b3c0cd", + "oldid": "4eb388d33de67c5117000192", + "contributors": null, + "truncated": false, + "text": "I'm at Harvey Norman (Chadstone Homemaker Hub, 699 Warrigal Rd, At Waverley Rd, Chadstone) http://t.co/Oyy42glR", + "in_reply_to_status_id": null, + "id": 132347031720181760, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 91, + 111 + ], + "url": "http://t.co/Oyy42glR", + "expanded_url": "http://4sq.com/vqGuM1", + "display_url": "4sq.com/vqGuM1" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.09186023, + -37.87859 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347031720181760", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1501567415/18_normal.JPG", + "profile_sidebar_fill_color": "cae8e8", + "id": 44029823, + "profile_text_color": "000000", + "followers_count": 242, + "profile_sidebar_border_color": "000000", + "id_str": "44029823", + "profile_background_color": "000000", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 13377, + "description": "deprived of sleep, time and a social life - reality is a bitch. and the ib is too.", + "friends_count": 224, + "location": "melbourne | australia.", + "profile_link_color": "ff0059", + "profile_image_url": "http://a0.twimg.com/profile_images/1501567415/18_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237451797/tumblr_ljx3x71ROV1qe89wko1_500_large.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/237451797/tumblr_ljx3x71ROV1qe89wko1_500_large.jpg", + "name": "Anastasia Young", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 52, + "screen_name": "anastasiayoung_", + "notifications": null, + "url": "http://unspokenrealities.tumblr.com/", + "created_at": "Tue Jun 02 01:45:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.87859, + 145.09186023 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:42:45 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0ce414", + "_rev": "1-d802a168c085d4c048f920697800fc26", + "oldid": "4eb388d63de67c5117000193", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "It was truly a great three-month experience. Now, I really understand how IT systems are implemented in hotels. #ThankYouSheraton", + "created_at": "Fri Nov 04 06:42:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2068054, + -33.86558085 + ] + }, + "id": 132347046895161340, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 112, + 129 + ], + "text": "ThankYouSheraton" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347046895161345", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86558085, + 151.2068054 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 77386228, + "profile_text_color": "333333", + "followers_count": 229, + "profile_sidebar_border_color": "C0DEED", + "id_str": "77386228", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 14198, + "description": "Football is my life; Internetworking is my world; I am a big fan of @Kaka & Steve Jobs!", + "friends_count": 204, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/128619184/Sydney.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/128619184/Sydney.jpg", + "name": "Agung Semarajaya", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 30, + "screen_name": "agungsemarajaya", + "notifications": null, + "url": "http://www.facebook.com/agungsemarajaya", + "created_at": "Sat Sep 26 03:30:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0cef03", + "_rev": "1-5e8d96f5a605cbb4e6eb814c0ec75f97", + "oldid": "4eb388e23de67c5117000194", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "protected": false, + "location": "Australia", + "default_profile_image": false, + "id_str": "20977411", + "utc_offset": 36000, + "statuses_count": 12621, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "following": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "screen_name": "Indigored_hot", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "name": "Indigored", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "profile_sidebar_border_color": "C0DEED", + "default_profile": true, + "is_translator": false, + "listed_count": 26 + }, + "favorited": false, + "in_reply_to_user_id": 15906982, + "contributors": null, + "truncated": false, + "text": "@addison @Ohdoctah BF3 on pc hasn't crashed once for me. Damn slow loading up tho.", + "created_at": "Fri Nov 04 06:43:00 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": "132319767758503936", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12277513, + -37.85297892 + ] + }, + "id": 132347094768959490, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 15906982, + "screen_name": "addison", + "id_str": "15906982", + "name": "Addison" + }, + { + "indices": [ + 9, + 18 + ], + "id": 14521617, + "screen_name": "Ohdoctah", + "id_str": "14521617", + "name": "Owen JJ Stone" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132319767758503940, + "place": null, + "id_str": "132347094768959488", + "in_reply_to_screen_name": "addison", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85297892, + 145.12277513 + ] + }, + "in_reply_to_user_id_str": "15906982", + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>" + }, + { + "_id": "51f39676462cca21859bd92d8e0cefb7", + "_rev": "1-ec58780167c76ef557b42daf4e144413", + "oldid": "4eb388ed3de67c5117000195", + "contributors": null, + "truncated": false, + "text": "I'm at Swarovski Westfield Sydney (91 Market St, Elizabeth St, Sydney) http://t.co/Mh06Jheb", + "in_reply_to_status_id": null, + "id": 132347142101680130, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/Mh06Jheb", + "expanded_url": "http://4sq.com/s3tQ3f", + "display_url": "4sq.com/s3tQ3f" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.209103, + -33.870824 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "id_str": "132347142101680128", + "retweet_count": 0, + "in_reply_to_user_id": null, + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610394488/hb78_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 18383003, + "profile_text_color": "0f0f0e", + "followers_count": 239, + "protected": false, + "location": "Sydney ", + "default_profile_image": false, + "id_str": "18383003", + "utc_offset": 36000, + "statuses_count": 15082, + "description": "Made in New Zealand Then Exported to Australia via Los Angeles & Bangkok\r\n \r\n ☠My thoughts are my own and dont represent my employers ☠\r\n ", + "friends_count": 97, + "profile_link_color": "05a199", + "profile_image_url": "http://a0.twimg.com/profile_images/1610394488/hb78_normal.jpg", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/346563875/music-doodles.jpg", + "profile_background_color": "D8C47D", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/346563875/music-doodles.jpg", + "screen_name": "hugobrown", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 68, + "name": "Hugo Brown ฮิวโก้ ", + "notifications": null, + "url": "http://www.gplus.to/hugobrown", + "created_at": "Fri Dec 26 02:37:33 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "profile_sidebar_border_color": "0bd1d1", + "default_profile": false, + "is_translator": false, + "listed_count": 22 + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.870824, + 151.209103 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:43:12 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0cfe39", + "_rev": "1-292ccb603e8945ded8be95c50a8bd975", + "oldid": "4eb388f13de67c5117000196", + "favorited": false, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@timmyniez graduation lols? How good was it?", + "created_at": "Fri Nov 04 06:43:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "124439297997807617", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02958451, + -27.40440075 + ] + }, + "in_reply_to_user_id_str": "291544769", + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 291544769, + "id_str": "291544769", + "screen_name": "timmyniez", + "name": "Tim Niezen" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 124439297997807620, + "id_str": "132347158690136064", + "place": null, + "in_reply_to_user_id": 291544769, + "in_reply_to_screen_name": "timmyniez", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.40440075, + 153.02958451 + ] + }, + "id": 132347158690136060, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "id": 22302196, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1324431111/twit_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "geo_enabled": true, + "profile_text_color": "333333", + "followers_count": 31, + "protected": false, + "location": "Brisbane", + "profile_background_color": "8B542B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 97, + "description": "Franciscan Friar and school teacher in Brisbane, Queensland.", + "friends_count": 90, + "profile_link_color": "9D582E", + "profile_image_url": "http://a3.twimg.com/profile_images/1324431111/twit_normal.jpg", + "following": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "id_str": "22302196", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Matt Hufer", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "bro_matt75", + "notifications": null, + "url": null, + "created_at": "Sat Feb 28 22:21:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "profile_sidebar_border_color": "D9B17E", + "default_profile": false, + "is_translator": false + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d07f3", + "_rev": "1-3fa579b580a8487e49da88da46359c91", + "oldid": "4eb388f33de67c5117000197", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Lalalalalalalalaal", + "created_at": "Fri Nov 04 06:43:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82629865, + -33.75762416 + ] + }, + "id": 132347165686239230, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347165686239232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75762416, + 150.82629865 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9261, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d1493", + "_rev": "1-77bc4509045b98bb350bd5cb270a3c5d", + "oldid": "4eb388f33de67c5117000198", + "contributors": null, + "truncated": false, + "text": "I'm at Gate 4, Launceston Airport (201 Evandale Rd, Western Junction) http://t.co/HHJgEhx5", + "in_reply_to_status_id": null, + "id": 132347166999052290, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/HHJgEhx5", + "expanded_url": "http://4sq.com/trxON6", + "display_url": "4sq.com/trxON6" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 147.15872705, + -41.48929417 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347166999052288", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/848976185/GB_Logo_Small_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 136600757, + "profile_text_color": "333333", + "followers_count": 73, + "profile_sidebar_border_color": "C0DEED", + "id_str": "136600757", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 411, + "description": "We stock a variety of supplements at the best prices including the latest and greatest from the USA. Never pay those inflated retail prices again!!", + "friends_count": 274, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/848976185/GB_Logo_Small_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/95403762/GB_Logo_Lrg.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/95403762/GB_Logo_Lrg.jpg", + "name": "Great Buy Supplement", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "GreatBuySupplem", + "notifications": null, + "url": "http://www.greatbuysupplements.com", + "created_at": "Sat Apr 24 11:26:02 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -41.48929417, + 147.15872705 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:43:18 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0d1fc0", + "_rev": "1-b7d227d49edb175e1e76b0b7b847f8b6", + "oldid": "4eb388f53de67c5117000199", + "favorited": false, + "in_reply_to_user_id": 140756470, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@antoinetruchet Folllow MEEEEEEEEEEEEE preeeeetty Pleaseeeee xo", + "created_at": "Fri Nov 04 06:43:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132347173298909180, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 140756470, + "id_str": "140756470", + "screen_name": "antoinetruchet", + "name": "Antoine Truchet" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "antoinetruchet", + "id_str": "132347173298909185", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "140756470", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546812564/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3302, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1785, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1546812564/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d2de3", + "_rev": "1-3524f31fcd1413d3d7256c50098de108", + "oldid": "4eb388fa3de67c511700019a", + "favorited": false, + "in_reply_to_user_id": 2276201, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@sevitz @destructor @aideno @benjyforrest and what an awesome weekend you picked...sunny and hot all weekend :D enjoy!", + "created_at": "Fri Nov 04 06:43:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132333412727001088", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99213685, + -37.84408073 + ] + }, + "id": 132347196346609660, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 2276201, + "id_str": "2276201", + "screen_name": "sevitz", + "name": "The Sev" + }, + { + "indices": [ + 8, + 19 + ], + "id": 5755072, + "id_str": "5755072", + "screen_name": "Destructor", + "name": "Dan" + }, + { + "indices": [ + 20, + 27 + ], + "id": 60445318, + "id_str": "60445318", + "screen_name": "AidenO", + "name": "Aiden" + }, + { + "indices": [ + 28, + 41 + ], + "id": 15338006, + "id_str": "15338006", + "screen_name": "benjyforrest", + "name": "benjyforrest" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132333412727001090, + "in_reply_to_screen_name": "sevitz", + "id_str": "132347196346609664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84408073, + 144.99213685 + ] + }, + "in_reply_to_user_id_str": "2276201", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621303622/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 43304321, + "profile_text_color": "333333", + "followers_count": 28, + "profile_sidebar_border_color": "C0DEED", + "id_str": "43304321", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 164, + "description": "", + "friends_count": 42, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1621303622/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Anna Wren", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "The_Wrenster", + "notifications": null, + "url": null, + "created_at": "Fri May 29 09:50:37 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d3cbd", + "_rev": "1-0189e40a4ac39031453a3366bc735e3c", + "oldid": "4eb389003de67c511700019b", + "favorited": false, + "in_reply_to_user_id": 56033540, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@anorombaba Happee Friday to you, too! :)", + "created_at": "Fri Nov 04 06:43:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337409177288706", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.02048158, + -32.10878375 + ] + }, + "id": 132347221973798910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 56033540, + "id_str": "56033540", + "screen_name": "anorombaba", + "name": "Angela Norombaba" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337409177288700, + "in_reply_to_screen_name": "anorombaba", + "id_str": "132347221973798912", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.10878375, + 116.02048158 + ] + }, + "in_reply_to_user_id_str": "56033540", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1256175986/Project1_normal.png", + "profile_sidebar_fill_color": "DAECF4", + "id": 163776602, + "profile_text_color": "663B12", + "followers_count": 1634, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "163776602", + "profile_background_color": "C6E2EE", + "listed_count": 65, + "utc_offset": 28800, + "statuses_count": 9569, + "description": "Old fart; young heart", + "friends_count": 1915, + "location": "Perth, Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a3.twimg.com/profile_images/1256175986/Project1_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/150399293/twitterbackground1.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/150399293/twitterbackground1.jpg", + "name": "Lee Harris", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 53, + "screen_name": "leemah123", + "notifications": null, + "url": "http://leebob123.com", + "created_at": "Wed Jul 07 07:13:36 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d482c", + "_rev": "1-31b2914a928d53f12b8901a28f26a1ce", + "oldid": "4eb389003de67c511700019c", + "favorited": false, + "in_reply_to_user_id": 17680012, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@noelove So you say...", + "created_at": "Fri Nov 04 06:43:30 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343872356483072", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12277513, + -37.85297888 + ] + }, + "id": 132347220681949180, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 17680012, + "id_str": "17680012", + "screen_name": "noelove", + "name": "noelove" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343872356483070, + "in_reply_to_screen_name": "noelove", + "id_str": "132347220681949184", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85297888, + 145.12277513 + ] + }, + "in_reply_to_user_id_str": "17680012", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12622, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d5055", + "_rev": "1-b78236b8c677c514e131c3a913fe1a41", + "oldid": "4eb389033de67c511700019d", + "contributors": null, + "truncated": false, + "text": "Last day of 'holiday week' is over, now it's just regular Friday and Weekend. Back to work on Monday :) http://t.co/kvOzXk8g", + "in_reply_to_status_id": null, + "id": 132347232698638340, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 104, + 124 + ], + "url": "http://t.co/kvOzXk8g", + "expanded_url": "http://4sq.com/tEfZPk", + "display_url": "4sq.com/tEfZPk" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.13404012, + -37.6883118 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347232698638336", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1196730231/753cbd99-87ef-42d5-b915-1808c7e70d9f_normal.png", + "profile_sidebar_fill_color": "efefef", + "id": 1608751, + "profile_text_color": "333333", + "followers_count": 887, + "profile_sidebar_border_color": "eeeeee", + "id_str": "1608751", + "profile_background_color": "131516", + "listed_count": 87, + "utc_offset": 36000, + "statuses_count": 19452, + "description": "Tech Lead, Microsoft Technologies at Uni of Melbourne. Geek, Dad, Husband, Cub Scout leader, and more. Posts are my own opinion, not indicative of my employer.", + "friends_count": 1000, + "location": "St Helena, Victoria, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1196730231/753cbd99-87ef-42d5-b915-1808c7e70d9f_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Robin Frousheger", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 236, + "screen_name": "Froosh", + "notifications": null, + "url": "http://froosh.net/", + "created_at": "Tue Mar 20 10:04:04 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.6883118, + 145.13404012 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:43:33 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0d59fb", + "_rev": "1-5f940381b945301e6fd8c62447b2ca7f", + "oldid": "4eb389083de67c511700019e", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker you must have quite the imagination for a reaction like that.", + "created_at": "Fri Nov 04 06:43:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345966190788608", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132347256450990080, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345966190788600, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132347256450990080", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20035, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d6646", + "_rev": "1-b3dfca9d94c615dfd9cdad898e932e76", + "oldid": "4eb3890a3de67c511700019f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Result on my mind now", + "created_at": "Fri Nov 04 06:43:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82629865, + -33.75762416 + ] + }, + "id": 132347263635820540, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347263635820545", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75762416, + 150.82629865 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9262, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d6fc2", + "_rev": "1-93df46d963dd74ad75d96ee7b04569cb", + "oldid": "4eb3890b3de67c51170001a0", + "favorited": false, + "in_reply_to_user_id": 38407271, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@NRLNEWS Yeah i no do u know when the draw will be released", + "created_at": "Fri Nov 04 06:43:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344667575558144", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.3416684, + -35.1250397 + ] + }, + "id": 132347265707810820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 38407271, + "id_str": "38407271", + "screen_name": "NRLNEWS", + "name": "NRL News" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344667575558140, + "in_reply_to_screen_name": "NRLNEWS", + "id_str": "132347265707810816", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.1250397, + 147.3416684 + ] + }, + "in_reply_to_user_id_str": "38407271", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 370986383, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "370986383", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 127, + "description": "Balmain Fan 1st now a mad Wests Tigers Fan 4 ever", + "friends_count": 41, + "location": "Wagga Wagga N.S.W Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lionel C Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Storkman1", + "notifications": null, + "url": null, + "created_at": "Sat Sep 10 00:29:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d70ae", + "_rev": "1-79b10a5f7f8784f17783cd5dbaf518cc", + "oldid": "4eb389103de67c51170001a1", + "contributors": null, + "truncated": false, + "text": "I'm at Indooroopilly Shopping Centre (322 Moggill Rd., Indooroopilly) w/ 2 others http://t.co/0JMu10fF", + "in_reply_to_status_id": null, + "id": 132347290353532930, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 82, + 102 + ], + "url": "http://t.co/0JMu10fF", + "expanded_url": "http://4sq.com/uniPnJ", + "display_url": "4sq.com/uniPnJ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.9727548, + -27.4999858 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347290353532928", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600940702/image_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 21178111, + "profile_text_color": "333333", + "followers_count": 267, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "21178111", + "profile_background_color": "EBEBEB", + "listed_count": 13, + "utc_offset": 43200, + "statuses_count": 4208, + "description": "voice/acting coach, actor, director, jewelry maker, writing thesis on theory of voice in performance of Shakespeare", + "friends_count": 142, + "location": "ÜT: -27.47467,153.01996", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1600940702/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/6577443/IMG_0332.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/6577443/IMG_0332.JPG", + "name": "Flloyd Kennedy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "flloydpk", + "notifications": null, + "url": "http://www.being-in-voice.com", + "created_at": "Wed Feb 18 07:56:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Auckland", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.4999858, + 152.9727548 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:43:47 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0d7467", + "_rev": "1-a12999ee0ed85960edcbc1a443b4138d", + "oldid": "4eb389113de67c51170001a2", + "contributors": null, + "truncated": false, + "text": "I'm at Ritchies Liquor Store (Dromana) http://t.co/szQ0BgRh", + "in_reply_to_status_id": null, + "id": 132347292069003260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/szQ0BgRh", + "expanded_url": "http://4sq.com/tGyRIE", + "display_url": "4sq.com/tGyRIE" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.965324, + -38.33316 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347292069003264", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1359602428/image_normal.jpg", + "profile_sidebar_fill_color": "D5DED9", + "id": 86905084, + "profile_text_color": "948C75", + "followers_count": 769, + "profile_sidebar_border_color": "7A6A53", + "id_str": "86905084", + "profile_background_color": "D9CEB2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 2905, + "description": "Affectionately known as 'Hocus Pocus', Modern day 'Medicine Woman', Master Trainer, Facilitator, Speaker, Writer; Speciality coffee lover!", + "friends_count": 799, + "location": "Melbourne", + "profile_link_color": "99B2B7", + "profile_image_url": "http://a2.twimg.com/profile_images/1359602428/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "name": "Vicky Gardner", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "VickyGardner", + "notifications": null, + "url": "http://www.socialoomph.com/profiles/vickygardner", + "created_at": "Mon Nov 02 09:06:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.33316, + 144.965324 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:43:47 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0d7dd0", + "_rev": "1-6450abff2fbeb4fe1cafb77e895b41f3", + "oldid": "4eb389113de67c51170001a3", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#2011musictaughtme that iv got the moves like Jagger", + "created_at": "Fri Nov 04 06:43:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33344348, + -38.03061017 + ] + }, + "id": 132347293994192900, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 18 + ], + "text": "2011musictaughtme" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347293994192896", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03061017, + 145.33344348 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2634, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d8700", + "_rev": "1-e1f6e62ef37aad1d08cbe1f55db81f03", + "oldid": "4eb389153de67c51170001a4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "This train smells like hobos. :/", + "created_at": "Fri Nov 04 06:43:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0174391, + -27.54538893 + ] + }, + "id": 132347308007358460, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347308007358464", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.54538893, + 153.0174391 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14752906, + "profile_text_color": "333333", + "followers_count": 418, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14752906", + "profile_background_color": "022330", + "listed_count": 45, + "utc_offset": 36000, + "statuses_count": 4838, + "description": "Umbraco HQ staffer.\r\nUmbraco Core Team.\r\nOfficial Umbraco Trainer.\r\n", + "friends_count": 168, + "location": "Gold Coast", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Peter Gregory", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "pgregorynz", + "notifications": null, + "url": "http://www.umbraco.org", + "created_at": "Tue May 13 01:37:58 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d8d5b", + "_rev": "1-a5a4803d3485a729a15e87e04a789b6f", + "oldid": "4eb389173de67c51170001a5", + "contributors": null, + "truncated": false, + "text": "My very first bit of assisting work in print in the latest issue of @insideoutmag How exciting!! http://t.co/75ckq9EH", + "in_reply_to_status_id": null, + "id": 132347314688897020, + "entities": { + "user_mentions": [ + { + "indices": [ + 68, + 81 + ], + "id": 103773365, + "id_str": "103773365", + "screen_name": "insideoutmag", + "name": "Inside Out" + } + ], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYxLndCMAAVfta.jpg", + "expanded_url": "http://twitter.com/thomasfrank_/status/132347314688897025/photo/1", + "display_url": "pic.twitter.com/75ckq9EH", + "url": "http://t.co/75ckq9EH", + "sizes": { + "large": { + "h": 960, + "w": 640, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132347314693091328", + "indices": [ + 97, + 117 + ], + "type": "photo", + "id": 132347314693091330, + "media_url": "http://p.twimg.com/AdYxLndCMAAVfta.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.23516369, + -33.87835986 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347314688897025", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1379697512/Screen_shot_2011-06-03_at_1.49.19_PM_normal.png", + "profile_sidebar_fill_color": "130F14", + "id": 174934407, + "profile_text_color": "B6B6B6", + "followers_count": 94, + "profile_sidebar_border_color": "FFFFFF", + "id_str": "174934407", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 445, + "description": "dabbling in the different design worlds", + "friends_count": 156, + "location": "melbourne, australia", + "profile_link_color": "31C8FD", + "profile_image_url": "http://a1.twimg.com/profile_images/1379697512/Screen_shot_2011-06-03_at_1.49.19_PM_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131234415/x168fea96e9d13dd879e98d5daa002fb.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/131234415/x168fea96e9d13dd879e98d5daa002fb.jpg", + "name": "thomas frank", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "thomasfrank_", + "notifications": null, + "url": "http://www.thomasfrank.com.au", + "created_at": "Thu Aug 05 05:20:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87835986, + 151.23516369 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:43:54 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0d90d8", + "_rev": "1-e09a8be17de1d71b9353b76755d65556", + "oldid": "4eb389193de67c51170001a6", + "favorited": false, + "in_reply_to_user_id": 22436471, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@marvinpriest heeeeeey :D", + "created_at": "Fri Nov 04 06:43:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132210048305860608", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132347327498301440, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 22436471, + "id_str": "22436471", + "screen_name": "marvinpriest", + "name": "marvin priest" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132210048305860600, + "in_reply_to_screen_name": "marvinpriest", + "id_str": "132347327498301440", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "22436471", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546812564/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3303, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1785, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1546812564/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d91d8", + "_rev": "1-8f1c69407f57d5b4a935dfb3e1659951", + "oldid": "4eb3891b3de67c51170001a7", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Open Saturday and Sunday 11 - 5", + "created_at": "Fri Nov 04 06:43:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98295837, + -37.79877793 + ] + }, + "id": 132347336734162940, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347336734162944", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79877793, + 144.98295837 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1306333626/frieprie_avatar_girl_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 86003446, + "profile_text_color": "333333", + "followers_count": 61, + "profile_sidebar_border_color": "faf5fa", + "id_str": "86003446", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 242, + "description": "Friperie Vintage - a little bit bonjour and a little bit konnichiwa \r\n337 Smith Street Fitzroy Melbourne ", + "friends_count": 66, + "location": "Fitzroy Melbourne Australia", + "profile_link_color": "f08c5d", + "profile_image_url": "http://a0.twimg.com/profile_images/1306333626/frieprie_avatar_girl_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/230786125/twitter_background_spots_small_copy.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/230786125/twitter_background_spots_small_copy.jpg", + "name": "Friperie ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "FriperieFitzroy", + "notifications": null, + "url": "http://www.friperiefitzroy.blogspot.com", + "created_at": "Thu Oct 29 05:51:38 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d945b", + "_rev": "1-61466bdaee26a6d12cfc60a2023786af", + "oldid": "4eb389293de67c51170001a8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Time to leave the business class lounge and board my plane :-) brizvegas her I come again!!", + "created_at": "Fri Nov 04 06:44:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1786005, + -33.9345563 + ] + }, + "id": 132347394036736000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347394036736000", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9345563, + 151.1786005 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1611369469/jlJuslNl_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 304138446, + "profile_text_color": "333333", + "followers_count": 28, + "profile_sidebar_border_color": "C0DEED", + "id_str": "304138446", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 405, + "description": "Gay, proud but not defined as such.", + "friends_count": 62, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1611369469/jlJuslNl_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Corey R Cosgrove", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "cjparkermaston", + "notifications": null, + "url": null, + "created_at": "Tue May 24 00:40:09 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d97d5", + "_rev": "1-650fd0e9789368d06b199ca38077d469", + "oldid": "4eb3892b3de67c51170001a9", + "favorited": false, + "in_reply_to_user_id": 20399574, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@tysonnutt fucked me over by telling me he was on the wrong carriage. Now I'm standing next to the toilet instead of having a seat #douche", + "created_at": "Fri Nov 04 06:44:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1420363, + -33.9361378 + ] + }, + "id": 132347401557118980, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 20399574, + "id_str": "20399574", + "screen_name": "tysonnutt", + "name": "Tyson Nutt" + } + ], + "hashtags": [ + { + "indices": [ + 131, + 138 + ], + "text": "douche" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "tysonnutt", + "id_str": "132347401557118976", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9361378, + 151.1420363 + ] + }, + "in_reply_to_user_id_str": "20399574", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616939880/26412_10150172128795397_712020396_11920190_1205854_n_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 113332294, + "profile_text_color": "333333", + "followers_count": 75, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "113332294", + "profile_background_color": "022330", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 3039, + "description": "Sydney based photographer, sports aficionado, Moustache grower, idiot", + "friends_count": 205, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1616939880/26412_10150172128795397_712020396_11920190_1205854_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/91455657/jhp6.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/91455657/jhp6.jpg", + "name": "Jarrod Hunt", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "jarrodhuntphoto", + "notifications": null, + "url": "http://www.jarrodhuntphotography.com", + "created_at": "Thu Feb 11 12:25:12 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0d9e5c", + "_rev": "1-a18716d8469818460d63d2cbbdf567aa", + "oldid": "4eb389303de67c51170001aa", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Asif Edward just didn't dieee!!! Wtfff what a tool!", + "created_at": "Fri Nov 04 06:44:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33344348, + -38.03061017 + ] + }, + "id": 132347422146953220, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347422146953216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03061017, + 145.33344348 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2635, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0da0eb", + "_rev": "1-d8fb5d645ba029f04c81118e6f8ddb00", + "oldid": "4eb3893d3de67c51170001ab", + "contributors": null, + "truncated": false, + "text": "I'm at Hunters Hill Bowling Club (Madeline st, Hunters Hill) http://t.co/Edry5dlV", + "in_reply_to_status_id": null, + "id": 132347477054599170, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 61, + 81 + ], + "url": "http://t.co/Edry5dlV", + "expanded_url": "http://4sq.com/sxOD0Z", + "display_url": "4sq.com/sxOD0Z" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.152655, + -33.833549 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347477054599168", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1163505143/avatarpic-l_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 3657391, + "profile_text_color": "333333", + "followers_count": 859, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "3657391", + "profile_background_color": "022330", + "listed_count": 54, + "utc_offset": 36000, + "statuses_count": 3529, + "description": "The geek at Microsoft Australia with 24 years experience in the IT industry. Currently an IT Pro Evangelist where I get to talk about all the new stuff..\r\n", + "friends_count": 197, + "location": "-33.81 151.13", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1163505143/avatarpic-l_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Jeff Alexander", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "jeffa36", + "notifications": null, + "url": "http://blogs.technet.com/jeffa36", + "created_at": "Fri Apr 06 21:29:32 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.833549, + 151.152655 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:44:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0da287", + "_rev": "1-7362ab9e7e273864f60a34396e58c874", + "oldid": "4eb389523de67c51170001ac", + "favorited": false, + "in_reply_to_user_id": 240652887, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LaYdI_SwHaRgg i know,m good jare....wher v u bin", + "created_at": "Fri Nov 04 06:44:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347333911388160", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82618821, + -33.75778051 + ] + }, + "id": 132347563914444800, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 240652887, + "id_str": "240652887", + "screen_name": "LaYdI_SwHaRgg", + "name": "Horlaryhermie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347333911388160, + "in_reply_to_screen_name": "LaYdI_SwHaRgg", + "id_str": "132347563914444801", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75778051, + 150.82618821 + ] + }, + "in_reply_to_user_id_str": "240652887", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9263, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0dad1f", + "_rev": "1-1d221aab0610c881ee56fc2a9e7ec903", + "oldid": "4eb389543de67c51170001ad", + "favorited": false, + "in_reply_to_user_id": 326051308, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@DanielSpeed1 you're terrible, Muriel.", + "created_at": "Fri Nov 04 06:44:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132285115194818562", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.09180485, + -33.89205521 + ] + }, + "id": 132347572357570560, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 326051308, + "id_str": "326051308", + "screen_name": "DanielSpeed1", + "name": "Daniel Speed" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132285115194818560, + "in_reply_to_screen_name": "DanielSpeed1", + "id_str": "132347572357570560", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89205521, + 151.09180485 + ] + }, + "in_reply_to_user_id_str": "326051308", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1579589016/stephbrads_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 30865176, + "profile_text_color": "050301", + "followers_count": 23, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "30865176", + "profile_background_color": "ab67bf", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 238, + "description": "", + "friends_count": 24, + "location": "Sydney, Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a3.twimg.com/profile_images/1579589016/stephbrads_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/290930360/peacock.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/290930360/peacock.jpg", + "name": "Laura Bradley", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 22, + "screen_name": "lozbrains", + "notifications": null, + "url": null, + "created_at": "Mon Apr 13 13:37:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0db6b3", + "_rev": "1-2fa0c4c372dde338d1d5232247cadee0", + "oldid": "4eb389583de67c51170001ae", + "favorited": false, + "in_reply_to_user_id": 393313701, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@lynchee97 I am following you. Btw ur profile says you are a \"musio\" but I say you are a noob for spelling it wrong.", + "created_at": "Fri Nov 04 06:44:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "130845549325848577", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02957354, + -27.40435007 + ] + }, + "id": 132347589520666620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 393313701, + "id_str": "393313701", + "screen_name": "lynchee97", + "name": "Jayden Lynch" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 130845549325848580, + "in_reply_to_screen_name": "lynchee97", + "id_str": "132347589520666624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.40435007, + 153.02957354 + ] + }, + "in_reply_to_user_id_str": "393313701", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1324431111/twit_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 22302196, + "profile_text_color": "333333", + "followers_count": 31, + "profile_sidebar_border_color": "D9B17E", + "id_str": "22302196", + "profile_background_color": "8B542B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 98, + "description": "Franciscan Friar and school teacher in Brisbane, Queensland.", + "friends_count": 91, + "location": "Brisbane", + "profile_link_color": "9D582E", + "profile_image_url": "http://a3.twimg.com/profile_images/1324431111/twit_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Matt Hufer", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "bro_matt75", + "notifications": null, + "url": null, + "created_at": "Sat Feb 28 22:21:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0db868", + "_rev": "1-a36f55152e4cd91cc984a4dc9c7fc8d1", + "oldid": "4eb389603de67c51170001af", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>", + "text": "30°C Tomorrow, ugh! should look for a Mall to sit it out.", + "created_at": "Fri Nov 04 06:45:06 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97253, + -37.809967 + ] + }, + "id": 132347622471106560, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347622471106560", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.809967, + 144.97253 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1241951017/CRW_8977_normal.PNG", + "profile_sidebar_fill_color": "bf1ce8", + "id": 138392330, + "profile_text_color": "002bff", + "followers_count": 160, + "profile_sidebar_border_color": "002bff", + "id_str": "138392330", + "profile_background_color": "FF6699", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 4633, + "description": "Volunteer at 3INR in Heidelberg Victoria, never without my digital compact. Also my interest vary hence the lists.", + "friends_count": 284, + "location": "Melbourne Vic Australia", + "profile_link_color": "360436", + "profile_image_url": "http://a1.twimg.com/profile_images/1241951017/CRW_8977_normal.PNG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/202138578/IMG_8668.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/202138578/IMG_8668.JPG", + "name": "Struan McGregor", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 110, + "screen_name": "StruanMcGregor", + "notifications": null, + "url": null, + "created_at": "Thu Apr 29 12:27:23 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0dbf96", + "_rev": "1-aff5505cfc8009a7d27ef8357c2d14f5", + "oldid": "4eb389613de67c51170001b0", + "favorited": false, + "in_reply_to_user_id": 240652887, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LaYdI_SwHaRgg amen....thks", + "created_at": "Fri Nov 04 06:45:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347544192815104", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82618821, + -33.75778051 + ] + }, + "id": 132347627059679230, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 240652887, + "id_str": "240652887", + "screen_name": "LaYdI_SwHaRgg", + "name": "Horlaryhermie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347544192815100, + "in_reply_to_screen_name": "LaYdI_SwHaRgg", + "id_str": "132347627059679232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75778051, + 150.82618821 + ] + }, + "in_reply_to_user_id_str": "240652887", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9264, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0dcbcf", + "_rev": "1-dfd265c6e13754ff8f1dfba7b28c6800", + "oldid": "4eb389683de67c51170001b1", + "contributors": null, + "truncated": false, + "text": "here! ;-) (@ Woodgate) http://t.co/c8RcVQOv", + "in_reply_to_status_id": null, + "id": 132347658160451580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 23, + 43 + ], + "url": "http://t.co/c8RcVQOv", + "expanded_url": "http://4sq.com/uDKnrL", + "display_url": "4sq.com/uDKnrL" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.567654, + -25.110533 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347658160451584", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1614577831/itsmeLOL_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 166055942, + "profile_text_color": "333333", + "followers_count": 78, + "profile_sidebar_border_color": "eeeeee", + "id_str": "166055942", + "profile_background_color": "131516", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3304, + "description": "i'm alex from bundaberg, australia... tech nerd, k-pop fanatic, proud uncle, subway restaurant addict ^-^", + "friends_count": 185, + "location": "Bundaberg, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1614577831/itsmeLOL_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Alex Thrupp", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "alaxitoo", + "notifications": null, + "url": "http://www.facebook.com/alaxitoo", + "created_at": "Tue Jul 13 06:07:13 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -25.110533, + 152.567654 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:45:15 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0dd41c", + "_rev": "1-c18c5c4fe58ba5f05d48bc29d72fffae", + "oldid": "4eb389743de67c51170001b2", + "favorited": false, + "in_reply_to_user_id": 87932395, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@1stanwalker heeeeeey :) can you please say hello to me please :)))", + "created_at": "Fri Nov 04 06:45:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132347706764046340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 87932395, + "id_str": "87932395", + "screen_name": "1stanwalker", + "name": "Stan Walker" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "1stanwalker", + "id_str": "132347706764046336", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "87932395", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546812564/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3304, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1785, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1546812564/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 153, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ddac6", + "_rev": "1-574615ea1ae210e48fcec5269ce24f4d", + "oldid": "4eb389763de67c51170001b3", + "favorited": false, + "in_reply_to_user_id": 234246043, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mermaidfagg0t haha I was going to say that next time I won't make you noodles, and Laura is far too lazy to make them haha", + "created_at": "Fri Nov 04 06:45:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346765516087296", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.09709021, + -37.64051585 + ] + }, + "id": 132347713462353920, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 234246043, + "id_str": "234246043", + "screen_name": "mermaidfagg0t", + "name": "人魚束♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132346765516087300, + "in_reply_to_screen_name": "mermaidfagg0t", + "id_str": "132347713462353920", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.64051585, + 145.09709021 + ] + }, + "in_reply_to_user_id_str": "234246043", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1402823130/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 22450813, + "profile_text_color": "333333", + "followers_count": 138, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22450813", + "profile_background_color": "131516", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 5386, + "description": "Hi im rhys and i hate brokencyde with a passion. @LauraLoveless_ is everything to me :)", + "friends_count": 250, + "location": "Melbourne", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1402823130/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Rhys Montgomery", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "rhys1508", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=703417461", + "created_at": "Mon Mar 02 04:30:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0de690", + "_rev": "1-82cad5041df7915dae97b5d01292e377", + "oldid": "4eb3897a3de67c51170001b4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "24.7ºC. ESE 4kts (gusting 5). 0.0mm rain. Fine weather #wamberal", + "created_at": "Fri Nov 04 06:45:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.43555556, + -33.42583333 + ] + }, + "id": 132347735545360380, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 55, + 64 + ], + "text": "wamberal" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347735545360384", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.42583333, + 151.43555556 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1349864863/avatar_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 172586323, + "profile_text_color": "333333", + "followers_count": 27, + "profile_sidebar_border_color": "C0DEED", + "id_str": "172586323", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 7199, + "description": "Real-Time Weather for Wamberal (2260) on New South Wales Central Coast, Australia.", + "friends_count": 12, + "location": "Wamberal, NSW, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1349864863/avatar_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/128597669/terrigal.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/128597669/terrigal.jpg", + "name": "Wamberal Weather", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "WamberalWX", + "notifications": null, + "url": "http://home.exetel.com.au/digitalskydive/wx/", + "created_at": "Fri Jul 30 02:19:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0de88a", + "_rev": "1-6d81c033454356e4d95e9538742e460f", + "oldid": "4eb3897e3de67c51170001b5", + "contributors": null, + "truncated": false, + "text": "It's a special lucky birthday gift http://t.co/iEN975ld", + "in_reply_to_status_id": null, + "id": 132347745796243460, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYxktdCQAAe1Er.jpg", + "expanded_url": "http://twitter.com/wuyanbo/status/132347745796243456/photo/1", + "display_url": "pic.twitter.com/iEN975ld", + "url": "http://t.co/iEN975ld", + "sizes": { + "large": { + "h": 816, + "w": 612, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132347745800437760", + "indices": [ + 35, + 55 + ], + "type": "photo", + "id": 132347745800437760, + "media_url": "http://p.twimg.com/AdYxktdCQAAe1Er.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.605283, + -34.918773 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Photos on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347745796243456", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/629892229/19378_251754866147_529276147_3828618_5476110_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 14756623, + "profile_text_color": "333333", + "followers_count": 120, + "profile_sidebar_border_color": "eeeeee", + "id_str": "14756623", + "profile_background_color": "131516", + "listed_count": 5, + "utc_offset": -28800, + "statuses_count": 1023, + "description": "PhD Student", + "friends_count": 120, + "location": "-34.919753,138.604672", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/629892229/19378_251754866147_529276147_3828618_5476110_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Yanbo Wu", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "wuyanbo", + "notifications": null, + "url": "http://www.wuyb.com", + "created_at": "Tue May 13 09:11:24 +0000 2008", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.918773, + 138.605283 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:45:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0dea4a", + "_rev": "1-7730025711dd47500e467455c3bc9899", + "oldid": "4eb3897e3de67c51170001b6", + "favorited": false, + "in_reply_to_user_id": 98540564, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@QSOrchestra See you there!", + "created_at": "Fri Nov 04 06:45:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347318086287360", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01741811, + -27.5375277 + ] + }, + "id": 132347749860524030, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 98540564, + "id_str": "98540564", + "screen_name": "QSOrchestra", + "name": "QSO" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347318086287360, + "in_reply_to_screen_name": "QSOrchestra", + "id_str": "132347749860524033", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.5375277, + 153.01741811 + ] + }, + "in_reply_to_user_id_str": "98540564", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/337426586/6216_109436910046_650625046_2669526_2980641_n_normal.jpg", + "profile_sidebar_fill_color": "db1c20", + "id": 61141849, + "profile_text_color": "0C3E53", + "followers_count": 129, + "profile_sidebar_border_color": "9efaf2", + "id_str": "61141849", + "profile_background_color": "121eff", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2154, + "description": "Violinist, teacher and lover of all things delicious ", + "friends_count": 304, + "location": "", + "profile_link_color": "521212", + "profile_image_url": "http://a2.twimg.com/profile_images/337426586/6216_109436910046_650625046_2669526_2980641_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/57480732/11133_1246370528899_1518491131_653848_351024_n.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/57480732/11133_1246370528899_1518491131_653848_351024_n.jpg", + "name": "Robyn Gray", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "RobynWeird", + "notifications": null, + "url": null, + "created_at": "Wed Jul 29 07:38:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0dea9b", + "_rev": "1-5bf0ff3ebec6ccef677c6259fc51dd2f", + "oldid": "4eb3897e3de67c51170001b7", + "favorited": false, + "in_reply_to_user_id": 38407271, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@NRLNEWS thanks", + "created_at": "Fri Nov 04 06:45:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347454392766464", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.3416684, + -35.1250397 + ] + }, + "id": 132347750393184260, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 38407271, + "id_str": "38407271", + "screen_name": "NRLNEWS", + "name": "NRL News" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347454392766460, + "in_reply_to_screen_name": "NRLNEWS", + "id_str": "132347750393184256", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.1250397, + 147.3416684 + ] + }, + "in_reply_to_user_id_str": "38407271", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 370986383, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "370986383", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 128, + "description": "Balmain Fan 1st now a mad Wests Tigers Fan 4 ever", + "friends_count": 41, + "location": "Wagga Wagga N.S.W Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lionel C Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Storkman1", + "notifications": null, + "url": null, + "created_at": "Sat Sep 10 00:29:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0df1ff", + "_rev": "1-81827ebfbe3cfeff66dca17ee51e5dc5", + "oldid": "4eb389803de67c51170001b8", + "contributors": null, + "truncated": false, + "text": "I'm at Windsor Station (416 George St, Windsor) http://t.co/WvVbxLCn", + "in_reply_to_status_id": null, + "id": 132347758471421950, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 48, + 68 + ], + "url": "http://t.co/WvVbxLCn", + "expanded_url": "http://4sq.com/vlcaqa", + "display_url": "4sq.com/vlcaqa" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.81111252, + -33.613788 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347758471421953", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592590906/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 392651649, + "profile_text_color": "333333", + "followers_count": 11, + "profile_sidebar_border_color": "C0DEED", + "id_str": "392651649", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 32, + "description": "21 years old. Slave to God✝", + "friends_count": 48, + "location": "Hawkesbury, Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1592590906/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Kayla Sturdy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "KaylaSturdy", + "notifications": null, + "url": null, + "created_at": "Mon Oct 17 11:17:09 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.613788, + 150.81111252 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:45:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0dff0b", + "_rev": "1-da6cd736d839b3d7d9bb2b24e0544c59", + "oldid": "4eb389873de67c51170001b9", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", + "text": "Awesome visit to #Stuart Park Child Care Centre where a group of four year old proud #Australians sang me the #National Anthem! #topend", + "created_at": "Fri Nov 04 06:45:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 130.841, + -12.44979 + ] + }, + "id": 132347787760242690, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 17, + 24 + ], + "text": "Stuart" + }, + { + "indices": [ + 85, + 97 + ], + "text": "Australians" + }, + { + "indices": [ + 111, + 120 + ], + "text": "National" + }, + { + "indices": [ + 129, + 136 + ], + "text": "topend" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347787760242688", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -12.44979, + 130.841 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/567424247/twitter-pic_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 95793122, + "profile_text_color": "333333", + "followers_count": 781, + "profile_sidebar_border_color": "C0DEED", + "id_str": "95793122", + "profile_background_color": "C0DEED", + "listed_count": 58, + "utc_offset": 34200, + "statuses_count": 705, + "description": "I am the Country Liberals Federal Member for Solomon in the Northern Territory. I was elected to the Federal Parliament on 21 August 2010.", + "friends_count": 361, + "location": "Darwin & Palmerston", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/567424247/twitter-pic_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131274360/aerialdarwinharbour.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/131274360/aerialdarwinharbour.jpg", + "name": "Natasha Griggs", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "NatashaGriggsMP", + "notifications": null, + "url": "http://www.natashagriggs.com.au", + "created_at": "Thu Dec 10 01:43:38 +0000 2009", + "contributors_enabled": false, + "time_zone": "Darwin", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0dff52", + "_rev": "1-89c63ccc29d332e1a45625560f19b9da", + "oldid": "4eb3898c3de67c51170001ba", + "contributors": null, + "truncated": false, + "text": "In Bondi beach with my girls Milna Marion <3 http://t.co/8O3fDLeD", + "in_reply_to_status_id": null, + "id": 132347804315160580, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYxoHdCEAAG3RU.jpg", + "expanded_url": "http://twitter.com/baby2milla/status/132347804315160576/photo/1", + "display_url": "pic.twitter.com/8O3fDLeD", + "url": "http://t.co/8O3fDLeD", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132347804319354880", + "indices": [ + 48, + 68 + ], + "type": "photo", + "id": 132347804319354880, + "media_url": "http://p.twimg.com/AdYxoHdCEAAG3RU.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.27520845, + -33.89060618 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347804315160576", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618560939/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 100770451, + "profile_text_color": "c770c7", + "followers_count": 115, + "profile_sidebar_border_color": "000000", + "id_str": "100770451", + "profile_background_color": "000000", + "listed_count": 10, + "utc_offset": 32400, + "statuses_count": 675, + "description": "", + "friends_count": 143, + "location": "Leichhardt Sydney", + "profile_link_color": "8b45e6", + "profile_image_url": "http://a2.twimg.com/profile_images/1618560939/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/174767799/zm6n2327.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/174767799/zm6n2327.jpg", + "name": "Enyg", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 44, + "screen_name": "baby2milla", + "notifications": null, + "url": null, + "created_at": "Thu Dec 31 13:50:03 +0000 2009", + "contributors_enabled": false, + "time_zone": "Seoul", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.89060618, + 151.27520845 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:45:50 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e01b0", + "_rev": "1-1260e888c3415331f5d189d39f68b0bd", + "oldid": "4eb389903de67c51170001bb", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Eww just saw a lady get a Mx newspaper out the bin and start reading it", + "created_at": "Fri Nov 04 06:45:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00157887, + -37.93796151 + ] + }, + "id": 132347824946950140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347824946950145", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93796151, + 145.00157887 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1297, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26039, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e0487", + "_rev": "1-c63729265a8dea77048d6bb5c6b0338d", + "oldid": "4eb389903de67c51170001bc", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "OH: nobody wants decoupage cancer", + "created_at": "Fri Nov 04 06:45:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96986415, + -37.82077868 + ] + }, + "id": 132347826586923000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347826586923008", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82077868, + 144.96986415 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1484364759/Photo_on_8-08-11_at_10.09_PM_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 7709732, + "profile_text_color": "666666", + "followers_count": 1016, + "profile_sidebar_border_color": "181A1E", + "id_str": "7709732", + "profile_background_color": "1A1B1F", + "listed_count": 97, + "utc_offset": 36000, + "statuses_count": 31946, + "description": "Rampant nerdery, non sequiturs, dad jokes and metal. I want to believe. (Opinions my own)", + "friends_count": 445, + "location": "melbourne, AU", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1484364759/Photo_on_8-08-11_at_10.09_PM_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/67405405/background.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/67405405/background.jpg", + "name": "Stephanie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 41, + "screen_name": "tephdee", + "notifications": null, + "url": "http://flavors.me/tephdee", + "created_at": "Wed Jul 25 11:49:55 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e0f26", + "_rev": "1-5ba19b8c4b9b0f0601a3f3f2f325229e", + "oldid": "4eb389913de67c51170001bd", + "favorited": false, + "in_reply_to_user_id": 2276201, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@sevitz and they can't cross roads without a green man. This is considerably worse in Sydney than it is in Melbourne though :)", + "created_at": "Fri Nov 04 06:45:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132337711196553216", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99213685, + -37.84408073 + ] + }, + "id": 132347830969962500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 2276201, + "id_str": "2276201", + "screen_name": "sevitz", + "name": "The Sev" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132337711196553220, + "in_reply_to_screen_name": "sevitz", + "id_str": "132347830969962496", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84408073, + 144.99213685 + ] + }, + "in_reply_to_user_id_str": "2276201", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621303622/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 43304321, + "profile_text_color": "333333", + "followers_count": 28, + "profile_sidebar_border_color": "C0DEED", + "id_str": "43304321", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 165, + "description": "", + "friends_count": 42, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1621303622/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Anna Wren", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "The_Wrenster", + "notifications": null, + "url": null, + "created_at": "Fri May 29 09:50:37 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e1543", + "_rev": "1-bb66d85b65fbee66433936b7e96f301d", + "oldid": "4eb389953de67c51170001be", + "favorited": false, + "in_reply_to_user_id": 299505430, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Kendal_A @sam_cockerill See you there!", + "created_at": "Fri Nov 04 06:46:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347471459397632", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01746257, + -27.53749993 + ] + }, + "id": 132347846140772350, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 299505430, + "id_str": "299505430", + "screen_name": "Kendal_A", + "name": "Kendal Alderman" + }, + { + "indices": [ + 10, + 24 + ], + "id": 246189289, + "id_str": "246189289", + "screen_name": "Sam_Cockerill", + "name": "Samantha Cockerill" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347471459397630, + "in_reply_to_screen_name": "Kendal_A", + "id_str": "132347846140772352", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.53749993, + 153.01746257 + ] + }, + "in_reply_to_user_id_str": "299505430", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/337426586/6216_109436910046_650625046_2669526_2980641_n_normal.jpg", + "profile_sidebar_fill_color": "db1c20", + "id": 61141849, + "profile_text_color": "0C3E53", + "followers_count": 129, + "profile_sidebar_border_color": "9efaf2", + "id_str": "61141849", + "profile_background_color": "121eff", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2155, + "description": "Violinist, teacher and lover of all things delicious ", + "friends_count": 304, + "location": "", + "profile_link_color": "521212", + "profile_image_url": "http://a2.twimg.com/profile_images/337426586/6216_109436910046_650625046_2669526_2980641_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/57480732/11133_1246370528899_1518491131_653848_351024_n.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/57480732/11133_1246370528899_1518491131_653848_351024_n.jpg", + "name": "Robyn Gray", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "RobynWeird", + "notifications": null, + "url": null, + "created_at": "Wed Jul 29 07:38:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e15aa", + "_rev": "1-472c18f26d199b7a91853d6643376a69", + "oldid": "4eb389983de67c51170001bf", + "contributors": null, + "truncated": false, + "text": "I'm at Subway (Shop 1, 166 Marine Pde., Labrador) http://t.co/29aZJI29", + "in_reply_to_status_id": null, + "id": 132347857159200770, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 50, + 70 + ], + "url": "http://t.co/29aZJI29", + "expanded_url": "http://4sq.com/u8NkMn", + "display_url": "4sq.com/u8NkMn" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.40924, + -27.957154 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347857159200768", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/598179092/5136521_5097add65d_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 25810397, + "profile_text_color": "333333", + "followers_count": 142, + "profile_sidebar_border_color": "eeeeee", + "id_str": "25810397", + "profile_background_color": "131516", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 6217, + "description": "Stuff for all the DJ Paine Automatic Feeds & Apps to live. For the real DJ Paine please follow: @djpaine", + "friends_count": 5, + "location": "Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/598179092/5136521_5097add65d_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "DJ Paine's Auto News", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "DJPaineJunk", + "notifications": null, + "url": "http://www.djpaine.com", + "created_at": "Sun Mar 22 12:10:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.957154, + 153.40924 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:02 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e1cdc", + "_rev": "1-784c6255621c3c91e693489afe40b725", + "oldid": "4eb389993de67c51170001c0", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Finished Mansfield stage 1min48sec car is awesome!! :)", + "created_at": "Fri Nov 04 06:46:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.17741042, + -37.02661895 + ] + }, + "id": 132347861332533250, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347861332533248", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.02661895, + 146.17741042 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621507352/Evans_rally_profile_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 404563173, + "profile_text_color": "333333", + "followers_count": 2, + "profile_sidebar_border_color": "C0DEED", + "id_str": "404563173", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 3, + "description": "Simon and Sue Evans are four-time Australian Rally Champions and compete in various gravel and tarmac rallies across Australia.", + "friends_count": 11, + "location": "Everywhere! ", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1621507352/Evans_rally_profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Simon and Sue Evans", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Evans_rally", + "notifications": null, + "url": null, + "created_at": "Fri Nov 04 03:03:43 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e24f2", + "_rev": "1-dbd2bbb1eced2a26785ae9f16296c0e5", + "oldid": "4eb3899e3de67c51170001c1", + "contributors": null, + "truncated": false, + "text": "I'm at Bakso Mas No (Pohon Duri) (Jalan Perintis Kemerdekaan, Oebufu) http://t.co/Wb9skf8x", + "in_reply_to_status_id": null, + "id": 132347884854190080, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/Wb9skf8x", + "expanded_url": "http://4sq.com/uwfSbS", + "display_url": "4sq.com/uwfSbS" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 123.619018, + -10.173788 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347884854190080", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1205548288/komodo_park_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 92199903, + "profile_text_color": "666666", + "followers_count": 5, + "profile_sidebar_border_color": "181A1E", + "id_str": "92199903", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 15, + "description": "", + "friends_count": 61, + "location": "", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1205548288/komodo_park_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/104585150/go.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/104585150/go.jpg", + "name": "ajust", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "4juzz1", + "notifications": null, + "url": null, + "created_at": "Tue Nov 24 04:33:04 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -10.173788, + 123.619018 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/7b6d4729251ea40b.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 117.344055, + -10.997407 + ], + [ + 125.169182, + -10.997407 + ], + [ + 125.169182, + -8.062931 + ], + [ + 117.344055, + -8.062931 + ] + ] + ] + }, + "full_name": "Nusa Tenggara Timur, Indonesia", + "attributes": {}, + "id": "7b6d4729251ea40b", + "name": "Nusa Tenggara Timur" + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e30de", + "_rev": "1-284135631a6ce9049721a111a5fa4e93", + "oldid": "4eb389a53de67c51170001c2", + "contributors": null, + "truncated": false, + "text": "Catching up with some ESA peeps for Friday drinks (@ Havelock Hotel) http://t.co/XOAS8MmE", + "in_reply_to_status_id": null, + "id": 132347912339464200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 69, + 89 + ], + "url": "http://t.co/XOAS8MmE", + "expanded_url": "http://4sq.com/rN8a0R", + "display_url": "4sq.com/rN8a0R" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6123951, + -34.9310568 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347912339464192", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/749422580/CIMG0040_normal.JPG", + "profile_sidebar_fill_color": "000000", + "id": 122535988, + "profile_text_color": "947974", + "followers_count": 615, + "profile_sidebar_border_color": "ADF1FC", + "id_str": "122535988", + "profile_background_color": "030103", + "listed_count": 37, + "utc_offset": 34200, + "statuses_count": 3145, + "description": "I work in face-to-face and online learning, and also post about social justice, social media and all things Web 2.0.\r\n", + "friends_count": 653, + "location": "Adelaide", + "profile_link_color": "FA8459", + "profile_image_url": "http://a3.twimg.com/profile_images/749422580/CIMG0040_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/349365938/x523ad77930928948351ff6c7baa28bf.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/349365938/x523ad77930928948351ff6c7baa28bf.jpg", + "name": "Nigel Mitchell", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 32, + "screen_name": "1nbm", + "notifications": null, + "url": "http://1nbm.wordpress.com/", + "created_at": "Sat Mar 13 01:57:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.9310568, + 138.6123951 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:15 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e3a1a", + "_rev": "1-df857a7e96f1696e5074ca7aa7b1220e", + "oldid": "4eb389a93de67c51170001c3", + "contributors": null, + "truncated": false, + "text": "Having dinner before seeing Noam Chomsky, should be a great night (@ Shanghai Village Dumpling House) http://t.co/oAQbiJAK", + "in_reply_to_status_id": null, + "id": 132347930580488200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 102, + 122 + ], + "url": "http://t.co/oAQbiJAK", + "expanded_url": "http://4sq.com/vHxpkr", + "display_url": "4sq.com/vHxpkr" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.969277, + -37.811404 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347930580488193", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1124816735/gavinnew_normal.JPG", + "profile_sidebar_fill_color": "99CC33", + "id": 7753052, + "profile_text_color": "3E4415", + "followers_count": 186, + "profile_sidebar_border_color": "829D5E", + "id_str": "7753052", + "profile_background_color": "352726", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 1542, + "description": "Web, biking, permaculture, mobiles, recycling, corn chip eating, old greenie guy who thinks he needs to go to China to learn Mandarin", + "friends_count": 203, + "location": "Melbourne, Australia", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1124816735/gavinnew_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Gavin Anderson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 39, + "screen_name": "andersondotau", + "notifications": null, + "url": "http://about.me/gavinanderson", + "created_at": "Fri Jul 27 04:33:59 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.811404, + 144.969277 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:20 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e40ca", + "_rev": "1-5cdfcc5a1e58e3bf42d5095cd34ad6d5", + "oldid": "4eb389ae3de67c51170001c4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Says hello to Mr Friday!!!!", + "created_at": "Fri Nov 04 06:46:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96180722, + -37.81533105 + ] + }, + "id": 132347949899452420, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347949899452416", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81533105, + 144.96180722 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1614830906/l_normal.jpeg", + "profile_sidebar_fill_color": "ffffff", + "id": 31668370, + "profile_text_color": "000000", + "followers_count": 275, + "profile_sidebar_border_color": "8f2517", + "id_str": "31668370", + "profile_background_color": "f0f0f0", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 538, + "description": "Designer, Photographer, Drummer, Musician", + "friends_count": 512, + "location": "Melbourne", + "profile_link_color": "8f2517", + "profile_image_url": "http://a0.twimg.com/profile_images/1614830906/l_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/28389441/IMG_8450_bw_copy.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/28389441/IMG_8450_bw_copy.jpg", + "name": "Patrice Liem", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "patriceliem", + "notifications": null, + "url": "http://www.patriceliem.tumblr.com", + "created_at": "Thu Apr 16 06:09:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e4e61", + "_rev": "1-061e95392b90d02a65c19ebd33e92a18", + "oldid": "4eb389b03de67c51170001c5", + "favorited": false, + "in_reply_to_user_id": 21654774, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@henros88 get yo ass to #GHhotel tonight", + "created_at": "Fri Nov 04 06:46:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00154759, + -37.93736207 + ] + }, + "id": 132347959949000700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 21654774, + "id_str": "21654774", + "screen_name": "henros88", + "name": "Henry Nguyen" + } + ], + "hashtags": [ + { + "indices": [ + 24, + 32 + ], + "text": "GHhotel" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "henros88", + "id_str": "132347959949000704", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93736207, + 145.00154759 + ] + }, + "in_reply_to_user_id_str": "21654774", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1297, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26040, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e5459", + "_rev": "1-8b6ba044589f9425ba8ec9bf09e63cb6", + "oldid": "4eb389b13de67c51170001c6", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@Jacqueline_Fitz: @BrunoBBouchet You are one sick, sick individual.” ... Yes, but at least I'm very well endowed and kids love me", + "created_at": "Fri Nov 04 06:46:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1810046, + -33.8860091 + ] + }, + "id": 132347962713055230, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 17 + ], + "id": 22721710, + "id_str": "22721710", + "screen_name": "Jacqueline_Fitz", + "name": "JacquelineFitzgerald" + }, + { + "indices": [ + 19, + 33 + ], + "id": 204483270, + "id_str": "204483270", + "screen_name": "BrunoBBouchet", + "name": "Bruno Bouchet" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132347962713055232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8860091, + 151.1810046 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572195831/IMG_3716_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 204483270, + "profile_text_color": "333333", + "followers_count": 1448, + "profile_sidebar_border_color": "C0DEED", + "id_str": "204483270", + "profile_background_color": "C0DEED", + "listed_count": 14, + "utc_offset": 36000, + "statuses_count": 2183, + "description": "Award-winning Producer with The Kyle & Jackie O Show / Arrogant Frenchman / Once got humped by a Labrador on a beach / Worked front counter at McDonalds", + "friends_count": 1393, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1572195831/IMG_3716_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/282633019/Untitled-1.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/282633019/Untitled-1.jpg", + "name": "Bruno Bouchet", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "BrunoBBouchet", + "notifications": null, + "url": "http://www.brunolovesboobs.com", + "created_at": "Mon Oct 18 20:09:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e5720", + "_rev": "1-8f3fa0d5a4d0b81555733844830e96f1", + "oldid": "4eb389b63de67c51170001c7", + "contributors": null, + "truncated": false, + "text": "I'm at Richmond Station (Punt Rd., at Swan St., Richmond) http://t.co/jJb6k1ya", + "in_reply_to_status_id": null, + "id": 132347986901602300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 58, + 78 + ], + "url": "http://t.co/jJb6k1ya", + "expanded_url": "http://4sq.com/vMCiT2", + "display_url": "4sq.com/vMCiT2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98971581, + -37.82389568 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132347986901602304", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1474181487/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 23735686, + "profile_text_color": "3E4415", + "followers_count": 76, + "profile_sidebar_border_color": "829D5E", + "id_str": "23735686", + "profile_background_color": "352726", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 4199, + "description": "Insane cunt", + "friends_count": 129, + "location": "iPhone: -33.845242,151.042247", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1474181487/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Ian Rewy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "Rewcub", + "notifications": null, + "url": null, + "created_at": "Wed Mar 11 07:39:29 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.82389568, + 144.98971581 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:33 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e63c7", + "_rev": "1-a714aea44a133b88a9cf763aa43479ab", + "oldid": "4eb389bc3de67c51170001c8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "So much for my early mark. I'm only just at the station now", + "created_at": "Fri Nov 04 06:46:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2067148, + -33.87414634 + ] + }, + "id": 132348008577777660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348008577777664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87414634, + 151.2067148 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608163861/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 328340294, + "profile_text_color": "333333", + "followers_count": 24, + "profile_sidebar_border_color": "C0DEED", + "id_str": "328340294", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 198, + "description": null, + "friends_count": 130, + "location": "Sydney\n", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608163861/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Erin Taylor", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "erinlouissa", + "notifications": null, + "url": null, + "created_at": "Sun Jul 03 05:32:30 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e6f7d", + "_rev": "1-bfac02911085ffb0950cd791652316c2", + "oldid": "4eb389bd3de67c51170001c9", + "contributors": null, + "truncated": false, + "text": "I just became the mayor of Greg's Family Gourmet Butcher on @foursquare! http://t.co/YtWFCsYz", + "in_reply_to_status_id": null, + "id": 132348016010080260, + "entities": { + "user_mentions": [ + { + "indices": [ + 60, + 71 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 73, + 93 + ], + "url": "http://t.co/YtWFCsYz", + "expanded_url": "http://4sq.com/qoiBwh", + "display_url": "4sq.com/qoiBwh" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.965801, + -38.333195 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348016010080257", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1359602428/image_normal.jpg", + "profile_sidebar_fill_color": "D5DED9", + "id": 86905084, + "profile_text_color": "948C75", + "followers_count": 769, + "profile_sidebar_border_color": "7A6A53", + "id_str": "86905084", + "profile_background_color": "D9CEB2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 2906, + "description": "Affectionately known as 'Hocus Pocus', Modern day 'Medicine Woman', Master Trainer, Facilitator, Speaker, Writer; Speciality coffee lover!", + "friends_count": 799, + "location": "Melbourne", + "profile_link_color": "99B2B7", + "profile_image_url": "http://a2.twimg.com/profile_images/1359602428/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "name": "Vicky Gardner", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "VickyGardner", + "notifications": null, + "url": "http://www.socialoomph.com/profiles/vickygardner", + "created_at": "Mon Nov 02 09:06:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.333195, + 144.965801 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:40 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e7323", + "_rev": "1-17b7e231fa99887fcb3ce49d3393cb4f", + "oldid": "4eb389bd3de67c51170001ca", + "contributors": null, + "truncated": false, + "text": "I'm at Greg's Family Gourmet Butcher (Dromana) http://t.co/Q8HhzbgO", + "in_reply_to_status_id": null, + "id": 132348016505012220, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/Q8HhzbgO", + "expanded_url": "http://4sq.com/sjbVaC", + "display_url": "4sq.com/sjbVaC" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.965801, + -38.332778 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348016505012224", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1359602428/image_normal.jpg", + "profile_sidebar_fill_color": "D5DED9", + "id": 86905084, + "profile_text_color": "948C75", + "followers_count": 769, + "profile_sidebar_border_color": "7A6A53", + "id_str": "86905084", + "profile_background_color": "D9CEB2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 2907, + "description": "Affectionately known as 'Hocus Pocus', Modern day 'Medicine Woman', Master Trainer, Facilitator, Speaker, Writer; Speciality coffee lover!", + "friends_count": 799, + "location": "Melbourne", + "profile_link_color": "99B2B7", + "profile_image_url": "http://a2.twimg.com/profile_images/1359602428/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/99550307/x71a7f3f432466fc940dd12b2fdd0e6d.png", + "name": "Vicky Gardner", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "VickyGardner", + "notifications": null, + "url": "http://www.socialoomph.com/profiles/vickygardner", + "created_at": "Mon Nov 02 09:06:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.332778, + 144.965801 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:40 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e7c3e", + "_rev": "1-ae95abe3b04007b9915317bd776b3319", + "oldid": "4eb389bf3de67c51170001cb", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF folllow meeee Pleassseeeeee?", + "created_at": "Fri Nov 04 06:46:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03150683, + -32.13413178 + ] + }, + "id": 132348020774809600, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132348020774809601", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13413178, + 116.03150683 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546812564/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3306, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1546812564/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 153, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e80cd", + "_rev": "1-8ea8c47cdde8f8bc1145f99a35f9c682", + "oldid": "4eb389bf3de67c51170001cc", + "contributors": null, + "truncated": false, + "text": "I'm at Ryde Parramatta Golf Club (1156 Victoria Rd, Cobham Ave, West Ryde) http://t.co/Sj6035sG", + "in_reply_to_status_id": null, + "id": 132348020858683400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 75, + 95 + ], + "url": "http://t.co/Sj6035sG", + "expanded_url": "http://4sq.com/suBmT3", + "display_url": "4sq.com/suBmT3" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.07447863, + -33.80785741 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348020858683392", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1535164283/1248947670_BtgTx-L_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 18926981, + "profile_text_color": "333333", + "followers_count": 50, + "profile_sidebar_border_color": "eeeeee", + "id_str": "18926981", + "profile_background_color": "131516", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 1364, + "description": "Father of 2, XC Mountain Biker, Adventure Racer, ex Dragon Boater", + "friends_count": 124, + "location": "Sydney, NSW, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1535164283/1248947670_BtgTx-L_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "keith_louie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "keith_louie", + "notifications": null, + "url": "http://keithlouie.blogspot.com/", + "created_at": "Tue Jan 13 03:38:59 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.80785741, + 151.07447863 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:41 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e81cf", + "_rev": "1-771220889b7c190f40981a85d6885132", + "oldid": "4eb389c03de67c51170001cd", + "contributors": null, + "truncated": false, + "text": "Working' hard Ti make a livin' (@ Myer) [pic]: http://t.co/uDjc4Pdy", + "in_reply_to_status_id": null, + "id": 132348028421029890, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/uDjc4Pdy", + "expanded_url": "http://4sq.com/rsjJJE", + "display_url": "4sq.com/rsjJJE" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.963909, + -37.813703 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348028421029888", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1586060914/instagr.am_normal.jpg", + "profile_sidebar_fill_color": "FFFFFF", + "id": 36827853, + "profile_text_color": "000000", + "followers_count": 69, + "profile_sidebar_border_color": "000000", + "id_str": "36827853", + "profile_background_color": "FFFFFF", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1477, + "description": "Designer - Musician", + "friends_count": 217, + "location": "Melbourne, Australia", + "profile_link_color": "000000", + "profile_image_url": "http://a3.twimg.com/profile_images/1586060914/instagr.am_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/303722060/TwitterTemplate.png", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/303722060/TwitterTemplate.png", + "name": "James Crow", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 25, + "screen_name": "Jc447", + "notifications": null, + "url": "http://www.wix.com/jamescrow447/home", + "created_at": "Fri May 01 00:31:57 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.813703, + 144.963909 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e86a0", + "_rev": "1-0d4f604b4afaefd9afa52b60425a951f", + "oldid": "4eb389c03de67c51170001ce", + "favorited": false, + "in_reply_to_user_id": 13796082, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@the_FORCE_One @shorelle Also Sydney literally has the highest cost of living in the world.", + "created_at": "Fri Nov 04 06:46:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345570357542912", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2550041, + -33.9366786 + ] + }, + "id": 132348028752375800, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 13796082, + "id_str": "13796082", + "screen_name": "the_FORCE_One", + "name": "Jacob" + }, + { + "indices": [ + 15, + 24 + ], + "id": 26202884, + "id_str": "26202884", + "screen_name": "shorelle", + "name": "Desiree" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345570357542910, + "in_reply_to_screen_name": "the_FORCE_One", + "id_str": "132348028752375809", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9366786, + 151.2550041 + ] + }, + "in_reply_to_user_id_str": "13796082", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1099013904/40457_548378100921_219001788_32819350_1423574_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 14156887, + "profile_text_color": "333333", + "followers_count": 129, + "profile_sidebar_border_color": "eeeeee", + "id_str": "14156887", + "profile_background_color": "131516", + "listed_count": 12, + "utc_offset": 36000, + "statuses_count": 7663, + "description": "", + "friends_count": 84, + "location": "Sydney, Australia ", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1099013904/40457_548378100921_219001788_32819350_1423574_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "neotaco", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "neotaco", + "notifications": null, + "url": null, + "created_at": "Sun Mar 16 10:00:45 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e8e23", + "_rev": "1-9415cb435d1518d311151d433da7f6d2", + "oldid": "4eb389c13de67c51170001cf", + "favorited": false, + "in_reply_to_user_id": 386455027, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@bryceegibbs hope you didn't hurt our boy", + "created_at": "Fri Nov 04 06:46:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347320523161600", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.3416684, + -35.1250397 + ] + }, + "id": 132348032246226940, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 386455027, + "id_str": "386455027", + "screen_name": "bryceegibbs", + "name": "bryce gibbs" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347320523161600, + "in_reply_to_screen_name": "bryceegibbs", + "id_str": "132348032246226945", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.1250397, + 147.3416684 + ] + }, + "in_reply_to_user_id_str": "386455027", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 370986383, + "profile_text_color": "333333", + "followers_count": 4, + "profile_sidebar_border_color": "C0DEED", + "id_str": "370986383", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 129, + "description": "Balmain Fan 1st now a mad Wests Tigers Fan 4 ever", + "friends_count": 41, + "location": "Wagga Wagga N.S.W Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1601627208/Tigers_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lionel C Harris", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Storkman1", + "notifications": null, + "url": null, + "created_at": "Sat Sep 10 00:29:24 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0e9019", + "_rev": "1-9b24d9426ba49571131ee74021d71f8b", + "oldid": "4eb389c73de67c51170001d0", + "contributors": null, + "truncated": false, + "text": "I'm at Pro Money Management (South Melbourne) http://t.co/PVe3nfXp", + "in_reply_to_status_id": null, + "id": 132348054727700480, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 46, + 66 + ], + "url": "http://t.co/PVe3nfXp", + "expanded_url": "http://4sq.com/sZOydi", + "display_url": "4sq.com/sZOydi" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.958309, + -37.831343 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348054727700480", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619855936/photo_Nov_3_normal.JPG", + "profile_sidebar_fill_color": "DAECF4", + "id": 168943288, + "profile_text_color": "663B12", + "followers_count": 65, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "168943288", + "profile_background_color": "C6E2EE", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 179, + "description": "Creative accountant extraordinare! Turning good ideas into great results", + "friends_count": 99, + "location": "Melbourne Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a1.twimg.com/profile_images/1619855936/photo_Nov_3_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Stuart Smith", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "stuartcsmith", + "notifications": null, + "url": "http://www.promoney.com.au", + "created_at": "Wed Jul 21 04:21:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.831343, + 144.958309 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:49 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0e9e6d", + "_rev": "1-14704e65a81016a49bf5055ba5771579", + "oldid": "4eb389ca3de67c51170001d1", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker let's keep it that way...I don't have proof of age so I can't see R18z", + "created_at": "Fri Nov 04 06:46:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347742470152192", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132348069944631300, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347742470152200, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132348069944631296", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20036, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ea5c4", + "_rev": "1-1c8e7a2716a17292f8f6f6fe44ac407f", + "oldid": "4eb389cb3de67c51170001d2", + "favorited": false, + "in_reply_to_user_id": 372122039, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@WilllMorgan come to Aston shuffle", + "created_at": "Fri Nov 04 06:46:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.22842845, + -33.88578702 + ] + }, + "id": 132348072129855490, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 372122039, + "id_str": "372122039", + "screen_name": "WilllMorgan", + "name": "Will Morgan" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "WilllMorgan", + "id_str": "132348072129855488", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88578702, + 151.22842845 + ] + }, + "in_reply_to_user_id_str": "372122039", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1452411823/225843_10150183072645829_530465828_7398119_2849057_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 229676634, + "profile_text_color": "333333", + "followers_count": 117, + "profile_sidebar_border_color": "eeeeee", + "id_str": "229676634", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 611, + "description": "Fashion Designer/Dj/Graphic Designer/Blogger/Skier/Surfer/Life Lover. \r\n\r\nIn Sydney Involved in projects with: Trash-Disko and Dead Castle Project", + "friends_count": 416, + "location": "Sydney", + "profile_link_color": "585c5c", + "profile_image_url": "http://a0.twimg.com/profile_images/1452411823/225843_10150183072645829_530465828_7398119_2849057_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/306490961/Picture_13.png", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/306490961/Picture_13.png", + "name": "Sam Moore", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "samjamesmoore", + "notifications": null, + "url": "http://deadcastleproject.com/", + "created_at": "Thu Dec 23 01:30:31 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0eb412", + "_rev": "1-e06419a6615edf7bb9c8cac1c6511ebe", + "oldid": "4eb389cf3de67c51170001d3", + "contributors": null, + "truncated": false, + "text": "Nyampe......mana panas tensi darah rendah Ĵ¡!¡!媕·.·´¯`·.·•ªªªåååћћ (@ My yellow house) http://t.co/AOvqUi0X", + "in_reply_to_status_id": null, + "id": 132348088395370500, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 90, + 110 + ], + "url": "http://t.co/AOvqUi0X", + "expanded_url": "http://4sq.com/vsOnnc", + "display_url": "4sq.com/vsOnnc" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 123.607127, + -10.191623 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348088395370496", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1231442650/01022011299_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 82322117, + "profile_text_color": "3C3940", + "followers_count": 123, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "82322117", + "profile_background_color": "0099B9", + "listed_count": 2, + "utc_offset": -28800, + "statuses_count": 3273, + "description": "simpel", + "friends_count": 310, + "location": "indonesia", + "profile_link_color": "0099B9", + "profile_image_url": "http://a2.twimg.com/profile_images/1231442650/01022011299_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "peggy quen elesen", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "peggy_kedoh", + "notifications": null, + "url": null, + "created_at": "Wed Oct 14 09:46:06 +0000 2009", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -10.191623, + 123.607127 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:46:57 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/7b6d4729251ea40b.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 117.344055, + -10.997407 + ], + [ + 125.169182, + -10.997407 + ], + [ + 125.169182, + -8.062931 + ], + [ + 117.344055, + -8.062931 + ] + ] + ] + }, + "full_name": "Nusa Tenggara Timur, Indonesia", + "attributes": {}, + "id": "7b6d4729251ea40b", + "name": "Nusa Tenggara Timur" + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ebde6", + "_rev": "1-92c2384d95bc39de79411f4816b0e296", + "oldid": "4eb389db3de67c51170001d4", + "favorited": false, + "in_reply_to_user_id": 236343635, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Thumbelina1990 passports are fun arent they. Mine were convinced I was lying about who my mother was due to Jenny/Jennifer mix up..", + "created_at": "Fri Nov 04 06:47:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132330959214362624", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.94153953, + -33.77614186 + ] + }, + "id": 132348139997888510, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 236343635, + "id_str": "236343635", + "screen_name": "Thumbelina1990", + "name": "Michelle Stiff" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132330959214362620, + "in_reply_to_screen_name": "Thumbelina1990", + "id_str": "132348139997888512", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77614186, + 150.94153953 + ] + }, + "in_reply_to_user_id_str": "236343635", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613215976/image_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 401122730, + "profile_text_color": "634047", + "followers_count": 7, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "401122730", + "profile_background_color": "EDECE9", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 20, + "description": "Imperfection is beauty, madness is genius & its better to be absolutely ridiculous then absolutely boring..", + "friends_count": 39, + "location": null, + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1613215976/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "Sami Mahoney", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Sami_Toucan", + "notifications": null, + "url": null, + "created_at": "Sun Oct 30 02:54:09 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ec81c", + "_rev": "1-cb690ccd81f1508f19ce50a1b22bf844", + "oldid": "4eb389ea3de67c51170001d5", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Dear @joshdaveta, I wish you were in Melbourne seeing Ricki tonight =[", + "created_at": "Fri Nov 04 06:47:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00167551, + -37.93698173 + ] + }, + "id": 132348202304290820, + "entities": { + "user_mentions": [ + { + "indices": [ + 5, + 16 + ], + "id": 23920889, + "id_str": "23920889", + "screen_name": "joshdaveta", + "name": "Josh R H Daveta" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348202304290816", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93698173, + 145.00167551 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1297, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26041, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ed362", + "_rev": "1-5b4afb591e5028b4db583f39fbdb94d6", + "oldid": "4eb389f33de67c51170001d6", + "favorited": false, + "in_reply_to_user_id": 49111486, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@nclark_iht yep it is, loads have been really bad recently. Grounding after industrial action hasn't helped.", + "created_at": "Fri Nov 04 06:47:34 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343722800185344", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.38593329, + -42.87228818 + ] + }, + "id": 132348241734934530, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 49111486, + "id_str": "49111486", + "screen_name": "nclark_iht", + "name": "Nicola Clark" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343722800185340, + "in_reply_to_screen_name": "nclark_iht", + "id_str": "132348241734934528", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -42.87228818, + 147.38593329 + ] + }, + "in_reply_to_user_id_str": "49111486", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1179588123/Untitled_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 27755778, + "profile_text_color": "333333", + "followers_count": 48, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "27755778", + "profile_background_color": "022330", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1242, + "description": "", + "friends_count": 304, + "location": "TAS, AU", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1179588123/Untitled_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Alex Uz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "bigauzza", + "notifications": null, + "url": null, + "created_at": "Mon Mar 30 23:08:25 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hobart", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ed45c", + "_rev": "1-7725ace78a16a29db223a7839dafd71a", + "oldid": "4eb389f83de67c51170001d7", + "contributors": null, + "truncated": false, + "text": "#uaexams is now trending in #Adelaide http://t.co/MadooR2g", + "in_reply_to_status_id": null, + "id": 132348262261854200, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 8 + ], + "text": "uaexams" + }, + { + "indices": [ + 28, + 37 + ], + "text": "Adelaide" + } + ], + "urls": [ + { + "indices": [ + 38, + 58 + ], + "url": "http://t.co/MadooR2g", + "expanded_url": "http://trendsmap.com/au/adelaide", + "display_url": "trendsmap.com/au/adelaide" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6, + -34.9258 + ] + }, + "source": "<a href=\"http://trendsmap.com/\" rel=\"nofollow\">Trendsmap Alerting</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348262261854208", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1078804519/TrendsMap-Logo-_Dark___1__normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 132353467, + "profile_text_color": "333333", + "followers_count": 987, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "132353467", + "profile_background_color": "022330", + "listed_count": 45, + "utc_offset": 34200, + "statuses_count": 1904, + "description": "Real-time Adelaide Twitter Trends", + "friends_count": 261, + "location": "Adelaide, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1078804519/TrendsMap-Logo-_Dark___1__normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/125743379/trendsAdelaide.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/125743379/trendsAdelaide.jpg", + "name": "Trendsmap Adelaide", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "TrendsAdelaide", + "notifications": null, + "url": "http://trendsmap.com/local/au/adelaide", + "created_at": "Tue Apr 13 00:53:25 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.9258, + 138.6 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:47:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0ede8e", + "_rev": "1-22d196bc673e642e64fd249d4bfe42af", + "oldid": "4eb38a053de67c51170001d8", + "contributors": null, + "truncated": false, + "text": "Taking our dog for a checkup and some jabs... (@ All Creatures Great & Small Veterinary Clinic) http://t.co/d8CiM4fF", + "in_reply_to_status_id": null, + "id": 132348317140135940, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 96, + 116 + ], + "url": "http://t.co/d8CiM4fF", + "expanded_url": "http://4sq.com/rGmyP5", + "display_url": "4sq.com/rGmyP5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.872535, + -31.986391 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348317140135936", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/664230016/IMG_0692s_normal.jpg", + "profile_sidebar_fill_color": "45484B", + "id": 109738202, + "profile_text_color": "C5BC8E", + "followers_count": 63, + "profile_sidebar_border_color": "36393B", + "id_str": "109738202", + "profile_background_color": "EEE6AB", + "listed_count": 5, + "utc_offset": 28800, + "statuses_count": 245, + "description": "Engineering Manager with Kvaerner O&G Australia, International Project Management communications PhD student at Curtin University, photography & F1 enthusiast", + "friends_count": 170, + "location": "Perth, Western Australia", + "profile_link_color": "696758", + "profile_image_url": "http://a3.twimg.com/profile_images/664230016/IMG_0692s_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/93155957/x458c891a6ece4005eb64727eef9b35c.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/93155957/x458c891a6ece4005eb64727eef9b35c.png", + "name": "Francis Norman", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "FrancisNorman", + "notifications": null, + "url": "http://intpmcomms.com", + "created_at": "Sat Jan 30 02:47:54 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.986391, + 115.872535 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:47:52 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0eebf0", + "_rev": "1-ad496a387fc9aef9f7cc5814745b2e46", + "oldid": "4eb38a143de67c51170001d9", + "favorited": false, + "in_reply_to_user_id": 134747073, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@GisckaSoemitro noooooooo I want sushi tei. My fave food :'(", + "created_at": "Fri Nov 04 06:48:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132328215413927936", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19345813, + -33.9332497 + ] + }, + "id": 132348380155351040, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 134747073, + "id_str": "134747073", + "screen_name": "GisckaSoemitro", + "name": "Shara S. Cathlia" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132328215413927940, + "in_reply_to_screen_name": "GisckaSoemitro", + "id_str": "132348380155351040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9332497, + 151.19345813 + ] + }, + "in_reply_to_user_id_str": "134747073", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 209302946, + "profile_text_color": "666666", + "followers_count": 16, + "profile_sidebar_border_color": "181A1E", + "id_str": "209302946", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 226, + "description": "love many, trust a few", + "friends_count": 14, + "location": "Sydney, australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "T. Emerald M. Windra", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "emeraldkta", + "notifications": null, + "url": null, + "created_at": "Thu Oct 28 22:59:24 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ef4f0", + "_rev": "1-9cb0b710276302041d7bf833f5a6e737", + "oldid": "4eb38a153de67c51170001da", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "What a faggy way to show that your a vampire... \"sparkle\"", + "created_at": "Fri Nov 04 06:48:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33334757, + -38.03065369 + ] + }, + "id": 132348382088921090, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348382088921090", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03065369, + 145.33334757 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2636, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ef87c", + "_rev": "1-c2e34ea596cb21d444d865b4fba2282c", + "oldid": "4eb38a153de67c51170001db", + "contributors": null, + "truncated": false, + "text": "I'm at Trunk Bar & Restaurant (275 Exhibition St, Lt Lonsdale St, Melbourne) http://t.co/nPIzDysY", + "in_reply_to_status_id": null, + "id": 132348383510798340, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 77, + 97 + ], + "url": "http://t.co/nPIzDysY", + "expanded_url": "http://4sq.com/vCECQw", + "display_url": "4sq.com/vCECQw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96905476, + -37.80933047 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348383510798336", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/404429488/me_normal.JPG", + "profile_sidebar_fill_color": "EADEAA", + "id": 38811666, + "profile_text_color": "333333", + "followers_count": 59, + "profile_sidebar_border_color": "D9B17E", + "id_str": "38811666", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1924, + "description": "Love reading, animals, travelling, ex-Medical scientist, part time nerd", + "friends_count": 94, + "location": "Melbourne, Australia", + "profile_link_color": "9D582E", + "profile_image_url": "http://a1.twimg.com/profile_images/404429488/me_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Cat Parker", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "thecatriona", + "notifications": null, + "url": null, + "created_at": "Sat May 09 06:27:36 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.80933047, + 144.96905476 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:08 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f06ff", + "_rev": "1-57550308f5aa6250e16ed9aa8633f017", + "oldid": "4eb38a1b3de67c51170001dc", + "contributors": null, + "truncated": false, + "text": "I'm at Hotel Wright St. (88 Wright St, Adelaide) w/ 3 others http://t.co/pwZkxyOB", + "in_reply_to_status_id": null, + "id": 132348407766466560, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 61, + 81 + ], + "url": "http://t.co/pwZkxyOB", + "expanded_url": "http://4sq.com/rzItCE", + "display_url": "4sq.com/rzItCE" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.597083, + -34.931536 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348407766466560", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1542679637/craig_arab1_normal.jpg", + "profile_sidebar_fill_color": "131214", + "id": 22360726, + "profile_text_color": "1b25de", + "followers_count": 117, + "profile_sidebar_border_color": "111012", + "id_str": "22360726", + "profile_background_color": "1b1f21", + "listed_count": 5, + "utc_offset": 34200, + "statuses_count": 1655, + "description": "Minerals extraction.. People watcher. kiteboarder.. Environmentalist at heart.. Loves cute puppies and long romantic walks along the beach with strippers..", + "friends_count": 204, + "location": "Adelaide", + "profile_link_color": "5555c2", + "profile_image_url": "http://a3.twimg.com/profile_images/1542679637/craig_arab1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/68268729/17546_426210710365_785920365_10709168_2528656_n.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/68268729/17546_426210710365_785920365_10709168_2528656_n.jpg", + "name": "Craig Kniter", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 32, + "screen_name": "craigyknit", + "notifications": null, + "url": "http://www.facebook.com/craigyknit", + "created_at": "Sun Mar 01 13:05:33 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.931536, + 138.597083 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f0d4d", + "_rev": "1-aa828b2b52b0c53f0c6966ea6e0482d0", + "oldid": "4eb38a223de67c51170001dd", + "favorited": false, + "in_reply_to_user_id": 13796082, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@the_FORCE_One @shorelle (When you take into account average salary - rent - transport - food etc)", + "created_at": "Fri Nov 04 06:48:20 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345570357542912", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.254946, + -33.9286025 + ] + }, + "id": 132348435985739780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 13796082, + "id_str": "13796082", + "screen_name": "the_FORCE_One", + "name": "Jacob" + }, + { + "indices": [ + 15, + 24 + ], + "id": 26202884, + "id_str": "26202884", + "screen_name": "shorelle", + "name": "Desiree" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345570357542910, + "in_reply_to_screen_name": "the_FORCE_One", + "id_str": "132348435985739776", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.9286025, + 151.254946 + ] + }, + "in_reply_to_user_id_str": "13796082", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1099013904/40457_548378100921_219001788_32819350_1423574_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 14156887, + "profile_text_color": "333333", + "followers_count": 129, + "profile_sidebar_border_color": "eeeeee", + "id_str": "14156887", + "profile_background_color": "131516", + "listed_count": 12, + "utc_offset": 36000, + "statuses_count": 7664, + "description": "", + "friends_count": 84, + "location": "Sydney, Australia ", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1099013904/40457_548378100921_219001788_32819350_1423574_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "neotaco", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "neotaco", + "notifications": null, + "url": null, + "created_at": "Sun Mar 16 10:00:45 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f0e42", + "_rev": "1-704672ab6482eb72d4e583d336206b15", + "oldid": "4eb38a233de67c51170001de", + "contributors": null, + "truncated": false, + "text": "This is pretty cool how you can use GoodReader not only to store in the iCloud but at the same time sync with the MBP. http://t.co/gyWh7NZR", + "in_reply_to_status_id": null, + "id": 132348442008764420, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 119, + 139 + ], + "url": "http://t.co/gyWh7NZR", + "expanded_url": "http://www.macstories.net/reviews/icloud-mobile-documents-sync-and-goodreader/", + "display_url": "macstories.net/reviews/icloud…" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.937676, + -37.756685 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Safari on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348442008764416", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/271087122/leopard-avatar_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 7841252, + "profile_text_color": "666366", + "followers_count": 118, + "profile_sidebar_border_color": "555557", + "id_str": "7841252", + "profile_background_color": "000000", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 2706, + "description": "Software, tech & photography geek. Apple eater. Mind map friend. Canon shooter. Rational guy. In search of light.", + "friends_count": 157, + "location": "Sydney Australia", + "profile_link_color": "d1d1d1", + "profile_image_url": "http://a2.twimg.com/profile_images/271087122/leopard-avatar_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/14430345/_S3L5127-2bigavatar.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/14430345/_S3L5127-2bigavatar.jpg", + "name": "meerec", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "meerec", + "notifications": null, + "url": "http://meerec.me", + "created_at": "Tue Jul 31 07:07:24 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.756685, + 144.937676 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:22 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f1b4c", + "_rev": "1-e96b00bd13f956d47ac33dd3f6387457", + "oldid": "4eb38a243de67c51170001df", + "favorited": false, + "in_reply_to_user_id": 35714705, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@iLukey_ it was horrible! She got off the train as well where they are everywhere and cleaner", + "created_at": "Fri Nov 04 06:48:22 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348035752656896", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00271245, + -37.93633695 + ] + }, + "id": 132348443678085120, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 35714705, + "id_str": "35714705", + "screen_name": "iLukey_", + "name": "Lucas a.k.a Lukey!" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348035752656900, + "in_reply_to_screen_name": "iLukey_", + "id_str": "132348443678085120", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93633695, + 145.00271245 + ] + }, + "in_reply_to_user_id_str": "35714705", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1297, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26042, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f2263", + "_rev": "1-8c8eb86941dedf29e58efc78c866213c", + "oldid": "4eb38a263de67c51170001e0", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@UrDaddyDannh\n\nHey Danny im 14 yo boy very gay want you follow back Please and cumm to my DM cutie", + "created_at": "Fri Nov 04 06:48:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132348455141113860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348455141113856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 909, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9571, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1709, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f2ace", + "_rev": "1-a43099128de6797ff5a90f706bd2a14c", + "oldid": "4eb38a273de67c51170001e1", + "contributors": null, + "truncated": false, + "text": "Staff preview din dins with the boy!! I'm excited! (@ Sokyo at The Star) http://t.co/XolBMqcJ", + "in_reply_to_status_id": null, + "id": 132348456550400000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 73, + 93 + ], + "url": "http://t.co/XolBMqcJ", + "expanded_url": "http://4sq.com/tn7CVJ", + "display_url": "4sq.com/tn7CVJ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.195358, + -33.87091 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348456550400000", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592371361/xiaohan_shen_normal.jpg", + "profile_sidebar_fill_color": "f0f0f0", + "id": 135352289, + "profile_text_color": "252525", + "followers_count": 937, + "profile_sidebar_border_color": "008dde", + "id_str": "135352289", + "profile_background_color": "252525", + "listed_count": 35, + "utc_offset": 36000, + "statuses_count": 3916, + "description": "Photographer. Girl with a camera, a blog and an eye for all things stylish, capturing street fashion from Sydney and beyond. http://xiaohan.net/photography.htm", + "friends_count": 1478, + "location": "Sydney", + "profile_link_color": "008dde", + "profile_image_url": "http://a0.twimg.com/profile_images/1592371361/xiaohan_shen_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/338327705/twitter_bg_2011.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/338327705/twitter_bg_2011.jpg", + "name": "Xiaohan Shen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 12, + "screen_name": "xssat", + "notifications": null, + "url": "http://www.xssatstreetfashion.com/", + "created_at": "Wed Apr 21 02:21:10 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87091, + 151.195358 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f2b25", + "_rev": "1-52053791a63d1c60b199c41c9fc13539", + "oldid": "4eb38a2c3de67c51170001e2", + "favorited": false, + "in_reply_to_user_id": 23177562, + "contributors": null, + "source": "<a href=\"http://mobileways.de/gravity\" rel=\"nofollow\">Gravity!</a>", + "text": "@BondiVet Hope heaps of money is raised", + "created_at": "Fri Nov 04 06:48:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346040786501632", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.08212535, + -33.88679501 + ] + }, + "id": 132348480562806780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 23177562, + "id_str": "23177562", + "screen_name": "BondiVet", + "name": "Dr Chris Brown" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132346040786501630, + "in_reply_to_screen_name": "BondiVet", + "id_str": "132348480562806784", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88679501, + 151.08212535 + ] + }, + "in_reply_to_user_id_str": "23177562", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546519621/mum___bridgette_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 159349033, + "profile_text_color": "3D1957", + "followers_count": 61, + "profile_sidebar_border_color": "65B0DA", + "id_str": "159349033", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 428, + "description": "Mother of 4 kids, in recent times i find myself reliving my teenage years as i accompany my 15yr old as she follows her idols around Sydney when they come.", + "friends_count": 259, + "location": "Sydney, AUSTRALIA", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1546519621/mum___bridgette_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/331427084/318798_211377028916171_100001316250280_537392_2063917_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/331427084/318798_211377028916171_100001316250280_537392_2063917_n.jpg", + "name": "kathryn ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "girl_in_oz72", + "notifications": null, + "url": null, + "created_at": "Fri Jun 25 03:55:00 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f2f45", + "_rev": "1-ed057b23a26afac3349b29ecc901a815", + "oldid": "4eb38a2f3de67c51170001e3", + "favorited": false, + "in_reply_to_user_id": 66590987, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@grimrok @jasonetheridge Of course! Beats out the whole rib thing by a mile! =]", + "created_at": "Fri Nov 04 06:48:34 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348093839581184", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12277513, + -37.85297888 + ] + }, + "id": 132348493623869440, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 66590987, + "id_str": "66590987", + "screen_name": "grimrok", + "name": "grimrok" + }, + { + "indices": [ + 9, + 24 + ], + "id": 14249489, + "id_str": "14249489", + "screen_name": "jasonetheridge", + "name": "Jason Etheridge" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348093839581180, + "in_reply_to_screen_name": "grimrok", + "id_str": "132348493623869441", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85297888, + 145.12277513 + ] + }, + "in_reply_to_user_id_str": "66590987", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12623, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f3820", + "_rev": "1-3eaa2e57160b3bcf407e457ce54136f6", + "oldid": "4eb38a323de67c51170001e4", + "contributors": null, + "truncated": false, + "text": "Dinner :) (@ Mamak) http://t.co/nrIYyOED", + "in_reply_to_status_id": null, + "id": 132348506177404930, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 20, + 40 + ], + "url": "http://t.co/nrIYyOED", + "expanded_url": "http://4sq.com/svXMSx", + "display_url": "4sq.com/svXMSx" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.204264, + -33.877619 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348506177404928", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1526725469/IMG_0284_normal.jpg", + "profile_sidebar_fill_color": "fcbdda", + "id": 34633280, + "profile_text_color": "f02b70", + "followers_count": 128, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "34633280", + "profile_background_color": "f5b9b6", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2526, + "description": "", + "friends_count": 84, + "location": "Sydney, Australia", + "profile_link_color": "22a5bf", + "profile_image_url": "http://a1.twimg.com/profile_images/1526725469/IMG_0284_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/136408273/no_time_to_hesitate__by_patriciaannrecourt.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/136408273/no_time_to_hesitate__by_patriciaannrecourt.jpg", + "name": "Lay Eileen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Eileenneelie", + "notifications": null, + "url": null, + "created_at": "Thu Apr 23 14:59:44 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.877619, + 151.204264 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f3a44", + "_rev": "1-761bd31797c4488615ad537a6ed79bad", + "oldid": "4eb38a343de67c51170001e5", + "contributors": null, + "truncated": false, + "text": "“@OMGFacts: Despite conventional wisdom, men are actually more romantic than women! Interesting stats --> http://t.co/y8zeNDUk”", + "in_reply_to_status_id": null, + "id": 132348513689403400, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 10 + ], + "id": 77888423, + "id_str": "77888423", + "screen_name": "OMGFacts", + "name": "OMGFacts" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 109, + 129 + ], + "url": "http://t.co/y8zeNDUk", + "expanded_url": "http://ow.ly/7fMPj", + "display_url": "ow.ly/7fMPj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98001039, + -37.81492155 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348513689403392", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1122080927/47383_425147398013_605478013_5108308_4190667_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 31348304, + "profile_text_color": "333333", + "followers_count": 77, + "profile_sidebar_border_color": "C0DEED", + "id_str": "31348304", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 1511, + "description": "interested in getting news on technology and sports, as well as meeting new people with lots to share and for me to share with, ^^", + "friends_count": 200, + "location": "malaysia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1122080927/47383_425147398013_605478013_5108308_4190667_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/146922703/red-twitter-bg.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/146922703/red-twitter-bg.jpg", + "name": "stephen kho", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "calamity90", + "notifications": null, + "url": null, + "created_at": "Wed Apr 15 05:21:14 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81492155, + 144.98001039 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f3c49", + "_rev": "1-29edb28a42e3cc780ddef562bd95bde1", + "oldid": "4eb38a373de67c51170001e6", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Car 1......... Bike 0. Sore!!!!", + "created_at": "Fri Nov 04 06:48:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.25657273, + -33.92258591 + ] + }, + "id": 132348522170286080, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348522170286080", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.92258591, + 151.25657273 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618229695/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 130417544, + "profile_text_color": "333333", + "followers_count": 3277, + "profile_sidebar_border_color": "C0DEED", + "id_str": "130417544", + "profile_background_color": "C0DEED", + "listed_count": 84, + "utc_offset": -36000, + "statuses_count": 4802, + "description": "Cook,Father,motorbike rider,who should not be allowed to tweet !", + "friends_count": 1021, + "location": "Paddington, Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1618229695/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Four in Hand", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 49, + "screen_name": "FourinHand", + "notifications": null, + "url": "http://www.fourinhand.com.au", + "created_at": "Wed Apr 07 06:55:01 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f4334", + "_rev": "1-de1d60212ef3d0e5113c3e8e3ad793d1", + "oldid": "4eb38a373de67c51170001e7", + "contributors": null, + "truncated": false, + "text": "She's close to coming. (@ Strathfield Plaza) http://t.co/8u6Lf8l2", + "in_reply_to_status_id": null, + "id": 132348527065047040, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 45, + 65 + ], + "url": "http://t.co/8u6Lf8l2", + "expanded_url": "http://4sq.com/uawAKe", + "display_url": "4sq.com/uawAKe" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.093442, + -33.872784 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348527065047040", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1281451235/the_awesome_lean_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14853580, + "profile_text_color": "333333", + "followers_count": 2953, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14853580", + "profile_background_color": "022330", + "listed_count": 151, + "utc_offset": 36000, + "statuses_count": 38081, + "description": "I'd tell you about how I'm a superhero, but then I'd have to kill you.", + "friends_count": 2687, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1281451235/the_awesome_lean_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/63276820/IMG_3630-2.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/63276820/IMG_3630-2.jpg", + "name": "Andrew Trinh", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2427, + "screen_name": "ancyru", + "notifications": null, + "url": "http://andrewtrinh.com", + "created_at": "Wed May 21 07:36:20 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.872784, + 151.093442 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f5105", + "_rev": "1-392f86d77e12914f4abd0548d39c8641", + "oldid": "4eb38a3a3de67c51170001e8", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF Omggg! Your Hot! Follow meee pleaseeee", + "created_at": "Fri Nov 04 06:48:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03150683, + -32.13413178 + ] + }, + "id": 132348540843327490, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132348540843327488", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13413178, + 116.03150683 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3307, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 154, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f564f", + "_rev": "1-b9d1aa511e3af9fb9242a51b9c13ebaf", + "oldid": "4eb38a3e3de67c51170001e9", + "contributors": null, + "truncated": false, + "text": "Nearly home. Another 10mins (@ MT Gravatt Capalaba Rd Exit. Gateway Motorway) http://t.co/ZUU2UQrZ", + "in_reply_to_status_id": null, + "id": 132348555494047740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 78, + 98 + ], + "url": "http://t.co/ZUU2UQrZ", + "expanded_url": "http://4sq.com/srbgO5", + "display_url": "4sq.com/srbgO5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.115609, + -27.549949 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348555494047745", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1599252443/Webb-Ellis-Trophy_800_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 118017287, + "profile_text_color": "333333", + "followers_count": 223, + "profile_sidebar_border_color": "eeeeee", + "id_str": "118017287", + "profile_background_color": "131516", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 3955, + "description": "All Blacks, Crusaders, Fishing, Family", + "friends_count": 181, + "location": "Paradise - Brisbane - Qld", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1599252443/Webb-Ellis-Trophy_800_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Glenn", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "ABCrusader", + "notifications": null, + "url": null, + "created_at": "Sat Feb 27 09:54:21 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.549949, + 153.115609 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:49 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f629b", + "_rev": "1-210e18929c5f030ba0132965ff0e942d", + "oldid": "4eb38a443de67c51170001ea", + "favorited": false, + "in_reply_to_user_id": 295564879, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Hussie_Hero well I must admit you are a pretty awesome person :)", + "created_at": "Fri Nov 04 06:48:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346707722780672", + "coordinates": { + "type": "Point", + "coordinates": [ + 152.04909727, + -25.5130607 + ] + }, + "id": 132348578378162180, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 295564879, + "id_str": "295564879", + "screen_name": "Hussie_Hero", + "name": "Renee Ruby Hussie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132346707722780670, + "in_reply_to_screen_name": "Hussie_Hero", + "id_str": "132348578378162176", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -25.5130607, + 152.04909727 + ] + }, + "in_reply_to_user_id_str": "295564879", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1139008409/mount_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 170351247, + "profile_text_color": "333333", + "followers_count": 100, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "170351247", + "profile_background_color": "EBEBEB", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 10720, + "description": "im a massive sea eagle,chelsea,nsw blues,brumbies,sydney fc, adelaide crows fan!", + "friends_count": 132, + "location": "middlemount", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1139008409/mount_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "name": "block", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "block__star", + "notifications": null, + "url": null, + "created_at": "Sat Jul 24 16:03:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f66c6", + "_rev": "1-687930e28ad275bf1191a4464b0b5ff7", + "oldid": "4eb38a493de67c51170001eb", + "contributors": null, + "truncated": false, + "text": "In Bondi beach with my girls Milena Marion <333 http://t.co/weSTRwbh", + "in_reply_to_status_id": null, + "id": 132348597722292220, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYyWTICIAAWKIj.jpg", + "expanded_url": "http://twitter.com/baby2milla/status/132348597722292224/photo/1", + "display_url": "pic.twitter.com/weSTRwbh", + "url": "http://t.co/weSTRwbh", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132348597726486528", + "indices": [ + 51, + 71 + ], + "type": "photo", + "id": 132348597726486530, + "media_url": "http://p.twimg.com/AdYyWTICIAAWKIj.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.27520845, + -33.89060618 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348597722292224", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618560939/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 100770451, + "profile_text_color": "c770c7", + "followers_count": 115, + "profile_sidebar_border_color": "000000", + "id_str": "100770451", + "profile_background_color": "000000", + "listed_count": 10, + "utc_offset": 32400, + "statuses_count": 676, + "description": "", + "friends_count": 143, + "location": "Leichhardt Sydney", + "profile_link_color": "8b45e6", + "profile_image_url": "http://a2.twimg.com/profile_images/1618560939/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/174767799/zm6n2327.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/174767799/zm6n2327.jpg", + "name": "Enyg", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 44, + "screen_name": "baby2milla", + "notifications": null, + "url": null, + "created_at": "Thu Dec 31 13:50:03 +0000 2009", + "contributors_enabled": false, + "time_zone": "Seoul", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.89060618, + 151.27520845 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:48:59 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f6f96", + "_rev": "1-44e97b760f6258035b7e8a3ce74a4fd3", + "oldid": "4eb38a4b3de67c51170001ec", + "contributors": null, + "truncated": false, + "text": "Just posted a photo @ Flinders Street http://t.co/n238Ctkm", + "in_reply_to_status_id": null, + "id": 132348607541153800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/n238Ctkm", + "expanded_url": "http://instagr.am/p/SqUL7/", + "display_url": "instagr.am/p/SqUL7/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9630554, + -37.8188025 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348607541153792", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "profile_sidebar_fill_color": "adebff", + "id": 53871425, + "profile_text_color": "011e36", + "followers_count": 171, + "profile_sidebar_border_color": "07c4d9", + "id_str": "53871425", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": 28800, + "statuses_count": 14589, + "description": "this is a private space of mumbling thought. nothing much.", + "friends_count": 186, + "location": "Kuala Lumpur, Malaysia", + "profile_link_color": "1524ed", + "profile_image_url": "http://a0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/21848671/bgb.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/21848671/bgb.jpg", + "name": "Fauzi Yusoff", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 17, + "screen_name": "fauziyusoff", + "notifications": null, + "url": "http://www.fauziyusoff.com", + "created_at": "Sun Jul 05 08:46:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Kuala Lumpur", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8188025, + 144.9630554 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:01 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f79fd", + "_rev": "1-71e098d505a681e4e19cec2ea48ba101", + "oldid": "4eb38a4b3de67c51170001ed", + "contributors": null, + "truncated": false, + "text": "On nom nom nom (@ The Lounge (Virgin Australia)) [pic]: http://t.co/3JrX1RNR", + "in_reply_to_status_id": null, + "id": 132348609466351620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 56, + 76 + ], + "url": "http://t.co/3JrX1RNR", + "expanded_url": "http://4sq.com/rtirmN", + "display_url": "4sq.com/rtirmN" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.19167519, + -35.30780604 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348609466351616", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/385075837/sniperkitty_twitter_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 10350022, + "profile_text_color": "333333", + "followers_count": 333, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "10350022", + "profile_background_color": "022330", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 7352, + "description": "Random Melbourner who takes photos for a hobby and enjoys technology. Watch out for the bad puns!", + "friends_count": 367, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/385075837/sniperkitty_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "tenty", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 11, + "screen_name": "tenty", + "notifications": null, + "url": "http://www.youtube.com/user/tenty", + "created_at": "Sun Nov 18 07:19:08 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.30780604, + 149.19167519 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:02 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f8342", + "_rev": "1-6a26627bbea3e7cf1d9db2fe387af598", + "oldid": "4eb38a4c3de67c51170001ee", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "In God we trust #4peace", + "created_at": "Fri Nov 04 06:49:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96844602, + -37.81824492 + ] + }, + "id": 132348616227565570, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 16, + 23 + ], + "text": "4peace" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348616227565568", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81824492, + 144.96844602 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1282674690/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 269798624, + "profile_text_color": "333333", + "followers_count": 62, + "profile_sidebar_border_color": "C0DEED", + "id_str": "269798624", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 710, + "description": "Those who trust in the Lord Are like Mount Zion, Which cannot be moved, but abides forever. (Psalm 125:1 NKJV)", + "friends_count": 119, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1282674690/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Miriam Tossoun", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "mtossoun", + "notifications": null, + "url": null, + "created_at": "Mon Mar 21 13:31:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f916b", + "_rev": "1-3412cfb17c49b66a08174cbd0e2a9344", + "oldid": "4eb38a563de67c51170001ef", + "contributors": null, + "truncated": false, + "text": "I just ousted Jason F. as the mayor of Rode Road Shopping Centre on @foursquare! http://t.co/FR1vyUC4", + "in_reply_to_status_id": null, + "id": 132348655452700670, + "entities": { + "user_mentions": [ + { + "indices": [ + 68, + 79 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 81, + 101 + ], + "url": "http://t.co/FR1vyUC4", + "expanded_url": "http://4sq.com/dD9Mn7", + "display_url": "4sq.com/dD9Mn7" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01169336, + -27.39171088 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348655452700672", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1208304405/bert_normal.gif", + "profile_sidebar_fill_color": "121212", + "id": 23872830, + "profile_text_color": "666666", + "followers_count": 49, + "profile_sidebar_border_color": "999999", + "id_str": "23872830", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 423, + "description": "Cartoonist/Stay-at-home Dad/Retail Sales Slave", + "friends_count": 172, + "location": "Brisbane QLD Australia", + "profile_link_color": "990000", + "profile_image_url": "http://a1.twimg.com/profile_images/1208304405/bert_normal.gif", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/316875270/xcae255632ae1cf9f58a9eece4527638.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/316875270/xcae255632ae1cf9f58a9eece4527638.jpg", + "name": "Michael Brinkley", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 18, + "screen_name": "Mr_Brinks", + "notifications": null, + "url": "http://brinkscartoons.blogspot.com", + "created_at": "Thu Mar 12 01:50:39 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.39171088, + 153.01169336 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f9a02", + "_rev": "1-e07b492b0ad4c36213b49f5f02b10890", + "oldid": "4eb38a593de67c51170001f0", + "favorited": false, + "in_reply_to_user_id": 240652887, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LaYdI_SwHaRgg kk", + "created_at": "Fri Nov 04 06:49:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347797323251712", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82611266, + -33.75771499 + ] + }, + "id": 132348666567593980, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 240652887, + "id_str": "240652887", + "screen_name": "LaYdI_SwHaRgg", + "name": "Horlaryhermie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347797323251710, + "in_reply_to_screen_name": "LaYdI_SwHaRgg", + "id_str": "132348666567593984", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75771499, + 150.82611266 + ] + }, + "in_reply_to_user_id_str": "240652887", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9265, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0f9a99", + "_rev": "1-6bdd0b5b4ef35996c0140ad4efcbca1f", + "oldid": "4eb38a5a3de67c51170001f1", + "contributors": null, + "truncated": false, + "text": "I'm at Melbourne Airport (MEL) (Airport Dr., Tullamarine) w/ 11 others http://t.co/qptrcbyw", + "in_reply_to_status_id": null, + "id": 132348671214882820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/qptrcbyw", + "expanded_url": "http://4sq.com/uX7yo5", + "display_url": "4sq.com/uX7yo5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.84903932, + -37.66990267 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348671214882817", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609158110/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 265095589, + "profile_text_color": "333333", + "followers_count": 46, + "profile_sidebar_border_color": "C0DEED", + "id_str": "265095589", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 32400, + "statuses_count": 962, + "description": "Just trying to survive..", + "friends_count": 84, + "location": "Nakano-Ku, Tokyo-To, Japan", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1609158110/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "ペテルシク流来", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "petelczyc_tokyo", + "notifications": null, + "url": "http://web.stagram.com/n/petelczyc/", + "created_at": "Sun Mar 13 00:58:48 +0000 2011", + "contributors_enabled": false, + "time_zone": "Tokyo", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.66990267, + 144.84903932 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:16 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0f9aea", + "_rev": "1-4249f13e04a0e0be7b26ff350a76b664", + "oldid": "4eb38a5a3de67c51170001f2", + "contributors": null, + "truncated": false, + "text": "“@perkeyjbeda2: @Surf3255 http://t.co/etdE88gQ”Thank you very much", + "in_reply_to_status_id": null, + "id": 132348674180263940, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 14 + ], + "id": 360331441, + "id_str": "360331441", + "screen_name": "perkeyjbeda2", + "name": "Perkey Webster" + }, + { + "indices": [ + 16, + 25 + ], + "id": 152058879, + "id_str": "152058879", + "screen_name": "Surf3255", + "name": "Jorge Ordenes Coloma" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 26, + 46 + ], + "url": "http://t.co/etdE88gQ", + "expanded_url": "http://tinyurl.com/6dm7b4x", + "display_url": "tinyurl.com/6dm7b4x" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.10130705, + -33.93467585 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348674180263936", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1390615285/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 152058879, + "profile_text_color": "333333", + "followers_count": 91, + "profile_sidebar_border_color": "C0DEED", + "id_str": "152058879", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": -28800, + "statuses_count": 2121, + "description": "I'm Kunta Kinte, El Gallero George, independiente de mis ideas, tremendamente Cristiano a mi manera, respeto la vida de todos, ricos y pobres", + "friends_count": 199, + "location": "33-51-35-9 S", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1390615285/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Jorge Ordenes Coloma", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 9, + "screen_name": "Surf3255", + "notifications": null, + "url": null, + "created_at": "Sat Jun 05 00:02:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.93467585, + 151.10130705 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:17 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0fa9d3", + "_rev": "1-474f95520333a0455a2d67660a4d47a0", + "oldid": "4eb38a5a3de67c51170001f3", + "favorited": false, + "in_reply_to_user_id": 59491025, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mista_vyktur amen...thk u so much", + "created_at": "Fri Nov 04 06:49:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348127993794560", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.83005219, + -33.75352787 + ] + }, + "id": 132348674742296580, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 59491025, + "id_str": "59491025", + "screen_name": "mista_vyktur", + "name": "Vykturbones" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348127993794560, + "in_reply_to_screen_name": "mista_vyktur", + "id_str": "132348674742296578", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75352787, + 150.83005219 + ] + }, + "in_reply_to_user_id_str": "59491025", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9266, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0fae32", + "_rev": "1-d27e354e82e9d35dd196bf52ff4eeaae", + "oldid": "4eb38a5c3de67c51170001f4", + "contributors": null, + "truncated": false, + "text": "Samford Pet Resort Weighs In On The Importance Of Exercise For Your Dog http://t.co/zzRHw5d0", + "in_reply_to_status_id": null, + "id": 132348679918063620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/zzRHw5d0", + "expanded_url": "http://bit.ly/vIUsjb", + "display_url": "bit.ly/vIUsjb" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.916807, + -27.362714 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348679918063616", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/700414839/samford_pet_resort_logo_twitt_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 79046378, + "profile_text_color": "3C3940", + "followers_count": 127, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "79046378", + "profile_background_color": "0099B9", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 85, + "description": "Award winning deluxe pet resort located in north Brisbane. When only the best will do..", + "friends_count": 123, + "location": "brisbane", + "profile_link_color": "0099B9", + "profile_image_url": "http://a0.twimg.com/profile_images/700414839/samford_pet_resort_logo_twitt_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/341714930/Cast_Page_background.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/341714930/Cast_Page_background.png", + "name": "Samford Pet Resort", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "SamfordPetRes", + "notifications": null, + "url": "http://www.samfordpetresort.com.au", + "created_at": "Fri Oct 02 00:24:07 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.362714, + 152.916807 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:18 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0fb4cd", + "_rev": "1-2dc42ef10a2ebae4ee09565e54a8970b", + "oldid": "4eb38a5e3de67c51170001f5", + "favorited": false, + "in_reply_to_user_id": 226467111, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@sandielucile uko chini maen", + "created_at": "Fri Nov 04 06:49:20 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347693803651072", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.06516911, + -27.54112113 + ] + }, + "id": 132348687870472200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 226467111, + "id_str": "226467111", + "screen_name": "sandielucile", + "name": "sandra lucille" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347693803651070, + "in_reply_to_screen_name": "sandielucile", + "id_str": "132348687870472192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.54112113, + 153.06516911 + ] + }, + "in_reply_to_user_id_str": "226467111", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615258302/image1xm_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 57945820, + "profile_text_color": "BA0404", + "followers_count": 348, + "profile_sidebar_border_color": "CC2F1E", + "id_str": "57945820", + "profile_background_color": "F4E8C2", + "listed_count": 9, + "utc_offset": 36000, + "statuses_count": 21802, + "description": "Life is a beach I'm just playing in the sand. Proudly Kenyan. #IDoIt", + "friends_count": 508, + "location": "Brisbane, Australia", + "profile_link_color": "ED1C21", + "profile_image_url": "http://a0.twimg.com/profile_images/1615258302/image1xm_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/354803376/1680_1050_20091204112548351823_crop_II.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/354803376/1680_1050_20091204112548351823_crop_II.jpg", + "name": "James Ndege", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 100, + "screen_name": "jndegz", + "notifications": null, + "url": "http://www.facebook.com/jndegz", + "created_at": "Sat Jul 18 14:38:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0fc299", + "_rev": "1-dccefd4b5cf46db21ee4d42814e18c8a", + "oldid": "4eb38a613de67c51170001f6", + "favorited": false, + "in_reply_to_user_id": 240652887, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LaYdI_SwHaRgg dnt disappear again o.....let me Kip seeing u ard", + "created_at": "Fri Nov 04 06:49:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347797323251712", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.83005219, + -33.75352787 + ] + }, + "id": 132348700432408580, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 240652887, + "id_str": "240652887", + "screen_name": "LaYdI_SwHaRgg", + "name": "Horlaryhermie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347797323251710, + "in_reply_to_screen_name": "LaYdI_SwHaRgg", + "id_str": "132348700432408576", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75352787, + 150.83005219 + ] + }, + "in_reply_to_user_id_str": "240652887", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9267, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0fcd3b", + "_rev": "1-049b5cf74e1743aa121884dd3dac8f4a", + "oldid": "4eb38a613de67c51170001f7", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "なにもしても~? (8)", + "created_at": "Fri Nov 04 06:49:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20655144, + -33.87468048 + ] + }, + "id": 132348703917883400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348703917883392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87468048, + 151.20655144 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613337644/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 158339561, + "profile_text_color": "adadad", + "followers_count": 152, + "profile_sidebar_border_color": "e87f7f", + "id_str": "158339561", + "profile_background_color": "bff2c4", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 4595, + "description": "to put random thoughts and stalk favourite people of all time + show some pretty pictures . so please, don't mind me . :)", + "friends_count": 203, + "location": "", + "profile_link_color": "e38484", + "profile_image_url": "http://a2.twimg.com/profile_images/1613337644/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/157565606/77words_patt7_198.gif", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/157565606/77words_patt7_198.gif", + "name": "jewlz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 188, + "screen_name": "akuruii", + "notifications": null, + "url": "http://akuruii-wishes.deviantart.com", + "created_at": "Tue Jun 22 11:40:09 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0fd43c", + "_rev": "1-19fd9b2385800712f21265b5c96f2d18", + "oldid": "4eb38a6c3de67c51170001f8", + "contributors": null, + "truncated": false, + "text": "Happy Birthday Amy (@ Madame Brussels w/ 2 others) http://t.co/9R0yWhE7", + "in_reply_to_status_id": null, + "id": 132348750487240700, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 51, + 71 + ], + "url": "http://t.co/9R0yWhE7", + "expanded_url": "http://4sq.com/t1jNN5", + "display_url": "4sq.com/t1jNN5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.971508, + -37.811851 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348750487240704", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595997790/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 20897610, + "profile_text_color": "3D1957", + "followers_count": 46, + "profile_sidebar_border_color": "65B0DA", + "id_str": "20897610", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 726, + "description": null, + "friends_count": 260, + "location": null, + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1595997790/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Nicole Brockhouse", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "nikkers5", + "notifications": null, + "url": null, + "created_at": "Sun Feb 15 06:55:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.811851, + 144.971508 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:35 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0fdebb", + "_rev": "1-43f13409bdda553bd725061e692c0aff", + "oldid": "4eb38a793de67c51170001f9", + "contributors": null, + "truncated": false, + "text": "@_WASO_ Principal clarinet Allan Meyer performing Mozart's clarinet quintet in A maj K. 58 @ St Mary's Cathedral http://t.co/5Z7fNmPJ", + "in_reply_to_status_id": null, + "id": 132348804371456000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 193539649, + "id_str": "193539649", + "screen_name": "_WASO_", + "name": "WestAustSymphOrch" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 114, + 134 + ], + "url": "http://t.co/5Z7fNmPJ", + "expanded_url": "http://instagr.am/p/SqUIi/", + "display_url": "instagr.am/p/SqUIi/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.865947, + -31.954895 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": "_WASO_", + "in_reply_to_user_id": 193539649, + "retweet_count": 0, + "id_str": "132348804371456000", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1604074300/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 24830707, + "profile_text_color": "3E4415", + "followers_count": 1310, + "profile_sidebar_border_color": "829D5E", + "id_str": "24830707", + "profile_background_color": "352726", + "listed_count": 72, + "utc_offset": 28800, + "statuses_count": 10369, + "description": "Dutch/Aussie/Kiwi coffee-obsessed foodie clarinettist married to a librarian of Italian descent. I work for WASO but opinions and positions expressed are my own", + "friends_count": 2001, + "location": "Perth, Western Australia", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1604074300/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/155351379/mondos3.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/155351379/mondos3.jpg", + "name": "Alex Millier", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 94, + "screen_name": "alexmillier", + "notifications": null, + "url": "http://alexmillier.com", + "created_at": "Tue Mar 17 03:18:33 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.954895, + 115.865947 + ] + }, + "in_reply_to_user_id_str": "193539649", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:48 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e0fe511", + "_rev": "1-3dcbd02bf770a87b8f0d143c0962bf21", + "oldid": "4eb38a7e3de67c51170001fa", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#Ellen8Million common Ellen you know you want to... :-D", + "created_at": "Fri Nov 04 06:49:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.94153953, + -33.77614186 + ] + }, + "id": 132348825481392130, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 14 + ], + "text": "Ellen8Million" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348825481392128", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77614186, + 150.94153953 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613215976/image_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 401122730, + "profile_text_color": "634047", + "followers_count": 7, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "401122730", + "profile_background_color": "EDECE9", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 21, + "description": "Imperfection is beauty, madness is genius & its better to be absolutely ridiculous then absolutely boring..", + "friends_count": 39, + "location": null, + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1613215976/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "Sami Mahoney", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Sami_Toucan", + "notifications": null, + "url": null, + "created_at": "Sun Oct 30 02:54:09 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ff4bf", + "_rev": "1-780cb1bdeb3dfbf85ced6ed8312b2773", + "oldid": "4eb38a7f3de67c51170001fb", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "So annoyed right now! #omfg", + "created_at": "Fri Nov 04 06:49:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.11930084, + -27.38475037 + ] + }, + "id": 132348825640763400, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 22, + 27 + ], + "text": "omfg" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348825640763392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.38475037, + 153.11930084 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1553709341/P270310_17.04_normal.JPG", + "profile_sidebar_fill_color": "252429", + "id": 359169734, + "profile_text_color": "666666", + "followers_count": 30, + "profile_sidebar_border_color": "181A1E", + "id_str": "359169734", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 453, + "description": "“I have a fire in my brain to act.” - Scarlett Johansson ", + "friends_count": 41, + "location": "sunny Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1553709341/P270310_17.04_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "April Rose C. ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 11, + "screen_name": "TheMindOfApril", + "notifications": null, + "url": "http://muffin-mouse.tumblr.com/", + "created_at": "Sun Aug 21 04:02:59 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e0ff909", + "_rev": "1-15ef9ce23c300f384d62e0b0a075f277", + "oldid": "4eb38a803de67c51170001fc", + "contributors": null, + "truncated": false, + "text": "Announcing at tonight's King's Game! Pre game Zorb Ball practice!! Gooooo Kings (@ Sydney Entertainment Centre) [pic]: http://t.co/pJNyUDfI", + "in_reply_to_status_id": null, + "id": 132348834041962500, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 119, + 139 + ], + "url": "http://t.co/pJNyUDfI", + "expanded_url": "http://4sq.com/s3pleH", + "display_url": "4sq.com/s3pleH" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20262384, + -33.87835235 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348834041962496", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/88143389/Bob-Eric-Tony_25-54.a_r_n_3_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 22890824, + "profile_text_color": "666666", + "followers_count": 72, + "profile_sidebar_border_color": "181A1E", + "id_str": "22890824", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 111, + "description": "Husband, father to 5 girls (3 year old triplets) Independent Brand/Creative Strategist\n\n", + "friends_count": 99, + "location": "Sydney Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/88143389/Bob-Eric-Tony_25-54.a_r_n_3_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/8716180/3444004727_6192cebc5b_b.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/8716180/3444004727_6192cebc5b_b.jpg", + "name": "Eric Stephens", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Ericstephens01", + "notifications": null, + "url": "http://theloop.com.au/ericstephens", + "created_at": "Thu Mar 05 06:37:25 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87835235, + 151.20262384 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:49:55 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1002ad", + "_rev": "1-a7e29dae82920509d2c8849379a7ffaf", + "oldid": "4eb38a873de67c51170001fd", + "contributors": null, + "truncated": false, + "text": "I'm at Chatswood Interchange (Stand J) http://t.co/fzdKt3eH", + "in_reply_to_status_id": null, + "id": 132348859954364420, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/fzdKt3eH", + "expanded_url": "http://4sq.com/sRbnp2", + "display_url": "4sq.com/sRbnp2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.179086, + -33.797396 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348859954364416", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1526070081/300937_228474993869467_100001209041419_698161_563798_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 366947226, + "profile_text_color": "666666", + "followers_count": 68, + "profile_sidebar_border_color": "181A1E", + "id_str": "366947226", + "profile_background_color": "1A1B1F", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 1217, + "description": "17 years old, living on Sydney's North Shore, passionate about music. \r\n\r\nhttp://www.quickymusiclove.tumblr.com", + "friends_count": 229, + "location": "Sydney, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1526070081/300937_228474993869467_100001209041419_698161_563798_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "James Quick", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 54, + "screen_name": "quickymusiclove", + "notifications": null, + "url": "http://www.last.fm/user/quickanator", + "created_at": "Sat Sep 03 03:20:52 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.797396, + 151.179086 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:50:01 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e10106d", + "_rev": "1-bb86668f4f0b70a7ae73d0d991d03029", + "oldid": "4eb38a8b3de67c51170001fe", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Sick of being Single! All I want is a Hot BF that can treat a girl like a Princess <3", + "created_at": "Fri Nov 04 06:50:06 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03150683, + -32.13413178 + ] + }, + "id": 132348877977288700, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132348877977288704", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13413178, + 116.03150683 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3308, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 154, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e101544", + "_rev": "1-02725aef41c2f6e84ff831c07b9a118f", + "oldid": "4eb38a8c3de67c51170001ff", + "contributors": null, + "truncated": false, + "text": "Like Us On Facebook & Recieve 30% Off Our Call Out Fee http://t.co/4XbrZrrD #offer", + "in_reply_to_status_id": null, + "id": 132348881441796100, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 80, + 86 + ], + "text": "offer" + } + ], + "urls": [ + { + "indices": [ + 59, + 79 + ], + "url": "http://t.co/4XbrZrrD", + "expanded_url": "http://bit.ly/rX46sU", + "display_url": "bit.ly/rX46sU" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.8141286, + -31.9475336 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348881441796096", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1472063963/twitter_normal.PNG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 344547427, + "profile_text_color": "333333", + "followers_count": 214, + "profile_sidebar_border_color": "C0DEED", + "id_str": "344547427", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 28800, + "statuses_count": 107, + "description": "Steven Murphy Electrical Contractors are an established company in Perth specialising in supply, installation. Reach Us At: 08 6555 3416", + "friends_count": 375, + "location": "Perth, Western Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1472063963/twitter_normal.PNG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/302492085/background_w_yellow.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/302492085/background_w_yellow.png", + "name": "S.Murphy Electrical", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "PerthElectrical", + "notifications": null, + "url": "http://www.allelectricalworkperth.com.au", + "created_at": "Fri Jul 29 06:42:37 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.9475336, + 115.8141286 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:50:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e101ee0", + "_rev": "1-9e1b205ad64822c5dd2764a6274c6ebf", + "oldid": "4eb38a8f3de67c5117000200", + "favorited": false, + "in_reply_to_user_id": 21176417, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@hexsteph How's your afternoon going anyway, Ms. Bendixsen? :3", + "created_at": "Fri Nov 04 06:50:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.87065432, + -31.96082463 + ] + }, + "id": 132348896876822530, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 21176417, + "id_str": "21176417", + "screen_name": "hexsteph", + "name": "Stephanie Bendixsen" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "hexsteph", + "id_str": "132348896876822528", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.96082463, + 115.87065432 + ] + }, + "in_reply_to_user_id_str": "21176417", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1464157592/IMG_0314_normal.JPG", + "profile_sidebar_fill_color": "000000", + "id": 21479393, + "profile_text_color": "757070", + "followers_count": 161, + "profile_sidebar_border_color": "253566", + "id_str": "21479393", + "profile_background_color": "000000", + "listed_count": 14, + "utc_offset": 28800, + "statuses_count": 23948, + "description": "What's there to say? I'm 23, an Australian gamer planning to write & design games..\r\nXbox: MattAn24 / Steam: [LRR] Maethorn", + "friends_count": 1225, + "location": "Perth, Australia", + "profile_link_color": "941f1f", + "profile_image_url": "http://a3.twimg.com/profile_images/1464157592/IMG_0314_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131254883/moon-ocean-space-background.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/131254883/moon-ocean-space-background.jpg", + "name": "Matthew Andre", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 76, + "screen_name": "MattAndre", + "notifications": null, + "url": null, + "created_at": "Sat Feb 21 12:16:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e102393", + "_rev": "1-4efbadd94bd23cff883272f4e45a605c", + "oldid": "4eb38a923de67c5117000201", + "favorited": false, + "in_reply_to_user_id": 283361911, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JenniferJns beuhh tertatihh yak? Wkka. Jgn gilak dong kamyu beb. Hahaha. Ak lg di resto ni. Lg nyari uang untuk hdpn km. Km km?", + "created_at": "Fri Nov 04 06:50:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132318889626451969", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.29343932, + -33.43904858 + ] + }, + "id": 132348907094159360, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 283361911, + "id_str": "283361911", + "screen_name": "JenniferJns", + "name": "Jennifer" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132318889626451970, + "in_reply_to_screen_name": "JenniferJns", + "id_str": "132348907094159360", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.43904858, + 151.29343932 + ] + }, + "in_reply_to_user_id_str": "283361911", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607505341/image_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 83379929, + "profile_text_color": "362720", + "followers_count": 176, + "profile_sidebar_border_color": "CC3366", + "id_str": "83379929", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2594, + "description": "#WhatYouShouldKnowAboutMe : im an easy going person ciao!XOXnicole", + "friends_count": 117, + "location": "in my life", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1607505341/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "Nicole Derulo", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "nicolederulo", + "notifications": null, + "url": null, + "created_at": "Sun Oct 18 15:05:54 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e102910", + "_rev": "1-09e178636c720a42e90dae3b5f68a740", + "oldid": "4eb38a943de67c5117000202", + "favorited": false, + "in_reply_to_user_id": 27862874, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@phrantakle hahahaha so true", + "created_at": "Fri Nov 04 06:50:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341976292007937", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20877988, + -33.87661276 + ] + }, + "id": 132348916686536700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 27862874, + "id_str": "27862874", + "screen_name": "phrantakle", + "name": "Peter" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341976292007940, + "in_reply_to_screen_name": "phrantakle", + "id_str": "132348916686536704", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87661276, + 151.20877988 + ] + }, + "in_reply_to_user_id_str": "27862874", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 112130654, + "profile_text_color": "333333", + "followers_count": 128, + "profile_sidebar_border_color": "C0DEED", + "id_str": "112130654", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3673, + "description": "", + "friends_count": 176, + "location": "SYDNEY AUSTRALIA", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1385174630/75339_496015156074_732476074_7538700_1554299_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/243150071/Copyrighted_Image_Reuse_Prohibited_108588.jpg", + "name": "Lizzy P", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 72, + "screen_name": "madeofcake", + "notifications": null, + "url": null, + "created_at": "Sun Feb 07 10:25:15 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e102a22", + "_rev": "1-fe987ba635982b085c220c3ad60cc5c9", + "oldid": "4eb38a993de67c5117000203", + "favorited": false, + "in_reply_to_user_id": 287435820, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Ayoryemi amen o.....", + "created_at": "Fri Nov 04 06:50:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348559264710656", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82621346, + -33.75768726 + ] + }, + "id": 132348936034856960, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 287435820, + "id_str": "287435820", + "screen_name": "Ayoryemi", + "name": "Aduloju odunayo sho" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348559264710660, + "in_reply_to_screen_name": "Ayoryemi", + "id_str": "132348936034856960", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75768726, + 150.82621346 + ] + }, + "in_reply_to_user_id_str": "287435820", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9268, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e102e23", + "_rev": "1-92557cf404b8bfdc7ab666e5ddd93fcd", + "oldid": "4eb38a9a3de67c5117000204", + "contributors": null, + "truncated": false, + "text": "Just posted a photo @ Flinders Street http://t.co/RZPARnyW", + "in_reply_to_status_id": null, + "id": 132348940598263800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/RZPARnyW", + "expanded_url": "http://instagr.am/p/SqUi4/", + "display_url": "instagr.am/p/SqUi4/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9630554, + -37.8188025 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348940598263808", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "profile_sidebar_fill_color": "adebff", + "id": 53871425, + "profile_text_color": "011e36", + "followers_count": 171, + "profile_sidebar_border_color": "07c4d9", + "id_str": "53871425", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": 28800, + "statuses_count": 14590, + "description": "this is a private space of mumbling thought. nothing much.", + "friends_count": 186, + "location": "Kuala Lumpur, Malaysia", + "profile_link_color": "1524ed", + "profile_image_url": "http://a0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/21848671/bgb.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/21848671/bgb.jpg", + "name": "Fauzi Yusoff", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 17, + "screen_name": "fauziyusoff", + "notifications": null, + "url": "http://www.fauziyusoff.com", + "created_at": "Sun Jul 05 08:46:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Kuala Lumpur", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8188025, + 144.9630554 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:50:21 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1037ed", + "_rev": "1-c6c7d7e09bb6ae8231a626db0e36a764", + "oldid": "4eb38a9d3de67c5117000205", + "favorited": false, + "in_reply_to_user_id": 287435820, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Ayoryemi come on fbk nau", + "created_at": "Fri Nov 04 06:50:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348559264710656", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82621346, + -33.75768726 + ] + }, + "id": 132348952929509380, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 287435820, + "id_str": "287435820", + "screen_name": "Ayoryemi", + "name": "Aduloju odunayo sho" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348559264710660, + "in_reply_to_screen_name": "Ayoryemi", + "id_str": "132348952929509376", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75768726, + 150.82621346 + ] + }, + "in_reply_to_user_id_str": "287435820", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9269, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10420f", + "_rev": "1-f71e43e22f72673f55a5610326b481f5", + "oldid": "4eb38a9e3de67c5117000206", + "favorited": false, + "in_reply_to_user_id": 250117527, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tbskisydney @joshmoule @alexhiltondeane @petewhitto Exactly right! P&O cruise ship was a bit of an obstacle though.", + "created_at": "Fri Nov 04 06:50:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348497121906688", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.24037492, + -33.8327623 + ] + }, + "id": 132348955844554750, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 250117527, + "id_str": "250117527", + "screen_name": "tbskisydney", + "name": "Toby B" + }, + { + "indices": [ + 13, + 23 + ], + "id": 199262602, + "id_str": "199262602", + "screen_name": "joshmoule", + "name": "Josh Moule" + }, + { + "indices": [ + 24, + 40 + ], + "id": 238100425, + "id_str": "238100425", + "screen_name": "alexhiltondeane", + "name": "Alex Deane" + }, + { + "indices": [ + 41, + 52 + ], + "id": 268676071, + "id_str": "268676071", + "screen_name": "PeteWhitto", + "name": "Peter Whittington" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348497121906690, + "in_reply_to_screen_name": "tbskisydney", + "id_str": "132348955844554752", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8327623, + 151.24037492 + ] + }, + "in_reply_to_user_id_str": "250117527", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1169772986/49307_585300084_2162554_q_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 216518265, + "profile_text_color": "333333", + "followers_count": 13, + "profile_sidebar_border_color": "eeeeee", + "id_str": "216518265", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 4, + "description": "", + "friends_count": 52, + "location": "Sydney", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1169772986/49307_585300084_2162554_q_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Tom McFadyen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Fadge_84", + "notifications": null, + "url": null, + "created_at": "Tue Nov 16 23:12:51 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e104c72", + "_rev": "1-b91c106424b14b30ab95772d4c64429f", + "oldid": "4eb38aa03de67c5117000207", + "contributors": null, + "truncated": false, + "text": "I just ousted @kristinesays as the mayor of Australia Post Claremont on @foursquare! http://t.co/WOIOBdUM", + "in_reply_to_status_id": null, + "id": 132348964673568770, + "entities": { + "user_mentions": [ + { + "indices": [ + 14, + 27 + ], + "id": 5103141, + "id_str": "5103141", + "screen_name": "kristinesays", + "name": "Kristine L" + }, + { + "indices": [ + 72, + 83 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 85, + 105 + ], + "url": "http://t.co/WOIOBdUM", + "expanded_url": "http://4sq.com/eONHW1", + "display_url": "4sq.com/eONHW1" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.781219, + -31.981245 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348964673568768", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1172652563/DSCF0931__resized__normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 52002337, + "profile_text_color": "030303", + "followers_count": 414, + "profile_sidebar_border_color": "C0DEED", + "id_str": "52002337", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 28800, + "statuses_count": 8107, + "description": "Author, Blogger, Fashion + Technology Lover and #FABULOUSRED 25 03 92", + "friends_count": 471, + "location": "Perth, Australia", + "profile_link_color": "fa0808", + "profile_image_url": "http://a3.twimg.com/profile_images/1172652563/DSCF0931__resized__normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/155486703/DSCF0931__resized_.JPG", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/155486703/DSCF0931__resized_.JPG", + "name": "Leon Ha", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 94, + "screen_name": "Fabulous_Red", + "notifications": null, + "url": "http://leonha92.wordpress.com", + "created_at": "Mon Jun 29 08:37:35 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.981245, + 115.781219 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:50:26 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e105c08", + "_rev": "1-93e81ef79e9540854d8a2b6222eea7ce", + "oldid": "4eb38aa03de67c5117000208", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF follow?", + "created_at": "Fri Nov 04 06:50:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03150683, + -32.13413178 + ] + }, + "id": 132348965650841600, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132348965650841600", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13413178, + 116.03150683 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3309, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 154, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10644c", + "_rev": "1-3c7a01e550b6e1a0bfa1e4747aeec9e3", + "oldid": "4eb38aa73de67c5117000209", + "contributors": null, + "truncated": false, + "text": "Once again, a beautiful train trip :) http://t.co/9iJvdJ7s", + "in_reply_to_status_id": null, + "id": 132348992943161340, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYytTcCAAAZpEk.jpg", + "expanded_url": "http://twitter.com/toddkirby/status/132348992943161344/photo/1", + "display_url": "pic.twitter.com/9iJvdJ7s", + "url": "http://t.co/9iJvdJ7s", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132348992947355648", + "indices": [ + 38, + 58 + ], + "type": "photo", + "id": 132348992947355650, + "media_url": "http://p.twimg.com/AdYytTcCAAAZpEk.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.33394392, + -33.44307602 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132348992943161344", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1549559397/123_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 68352166, + "profile_text_color": "333333", + "followers_count": 173, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "68352166", + "profile_background_color": "022330", + "listed_count": 11, + "utc_offset": 36000, + "statuses_count": 4457, + "description": "It is so dumb that you only have 160 characters to write about yourself. How on earth are you meant to do that? Well let us get started anyways. I really like t", + "friends_count": 559, + "location": "Central Coast, NSW", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1549559397/123_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Todd", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 137, + "screen_name": "toddkirby", + "notifications": null, + "url": null, + "created_at": "Mon Aug 24 07:20:01 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.44307602, + 151.33394392 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:50:34 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e10649b", + "_rev": "1-3f191e47cd5fcdf236496a0e58abf94d", + "oldid": "4eb38aad3de67c511700020a", + "contributors": null, + "truncated": false, + "text": "Teriyakiiiiiiii (@ Iku Sushi) http://t.co/kRcBWHzw", + "in_reply_to_status_id": null, + "id": 132349019904163840, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 30, + 50 + ], + "url": "http://t.co/kRcBWHzw", + "expanded_url": "http://4sq.com/se2NVc", + "display_url": "4sq.com/se2NVc" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.857605, + -31.951665 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349019904163840", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1617273630/JettApollo_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 29698802, + "profile_text_color": "000000", + "followers_count": 649, + "profile_sidebar_border_color": "000000", + "id_str": "29698802", + "profile_background_color": "000000", + "listed_count": 9, + "utc_offset": 28800, + "statuses_count": 14841, + "description": "I love art. I love the stage. I love food. I love Michael Jackson + Lady Gaga. I love you. One of the boys in the JUDAS video that @ladygaga tweeted 5/10/2011.", + "friends_count": 151, + "location": "Perth, Australia", + "profile_link_color": "707070", + "profile_image_url": "http://a1.twimg.com/profile_images/1617273630/JettApollo_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/326485175/DSC_0226COPY1.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/326485175/DSC_0226COPY1.jpg", + "name": "Jesse D'Vauz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 93, + "screen_name": "JettApollo", + "notifications": null, + "url": "http://www.youtube.com/bolencsve", + "created_at": "Wed Apr 08 11:59:57 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.951665, + 115.857605 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:50:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e106d44", + "_rev": "1-45827cc9f1ddad345e2058ee1687d109", + "oldid": "4eb38aae3de67c511700020b", + "favorited": false, + "in_reply_to_user_id": 59491025, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mista_vyktur amen...thks", + "created_at": "Fri Nov 04 06:50:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348127993794560", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.8260919, + -33.75784741 + ] + }, + "id": 132349025222541310, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 59491025, + "id_str": "59491025", + "screen_name": "mista_vyktur", + "name": "Vykturbones" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348127993794560, + "in_reply_to_screen_name": "mista_vyktur", + "id_str": "132349025222541313", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75784741, + 150.8260919 + ] + }, + "in_reply_to_user_id_str": "59491025", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9270, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1070bd", + "_rev": "1-89580243056c079d7a4e22715a7c4783", + "oldid": "4eb38ab53de67c511700020c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Soooo goin for a walk afta my dina ..... For real this time ! Hahahaha #suttonsbeach", + "created_at": "Fri Nov 04 06:50:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.11630849, + -27.23274162 + ] + }, + "id": 132349054440046600, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 71, + 84 + ], + "text": "suttonsbeach" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349054440046592", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.23274162, + 153.11630849 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1172474627/72572_448092533499_562743499_5514365_1798481_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 114966888, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "114966888", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1173, + "description": "Artist / Gamer / Tree Climber / Loser / Fashion minded / Avid Reader / Music Lover / Professional Dreamer", + "friends_count": 387, + "location": "Brisbane AU", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1172474627/72572_448092533499_562743499_5514365_1798481_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Murray James", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "muddywater_", + "notifications": null, + "url": "http://www.facebook.com/mmm.jjj.ooo", + "created_at": "Wed Feb 17 05:08:58 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e107d7b", + "_rev": "1-a6fe16ede5fd417a3d855cfc2ea7651f", + "oldid": "4eb38ab93de67c511700020d", + "favorited": false, + "in_reply_to_user_id": 289223477, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@jm151828 \n\nHello babe wanna play", + "created_at": "Fri Nov 04 06:50:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132349066700001280, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 289223477, + "id_str": "289223477", + "screen_name": "jm151828", + "name": "John Myles Guarino" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "jm151828", + "id_str": "132349066700001280", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": "289223477", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 909, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9572, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1709, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e108328", + "_rev": "1-88719dd4e5f255bc66f773dca575b4bf", + "oldid": "4eb38abc3de67c511700020e", + "favorited": false, + "in_reply_to_user_id": 39970139, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@nuenp cant at the moment, it's my chariot!!", + "created_at": "Fri Nov 04 06:50:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335825169027072", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.04393855, + -33.86337324 + ] + }, + "id": 132349081753358340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 39970139, + "id_str": "39970139", + "screen_name": "nuenp", + "name": "Nuen P." + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335825169027070, + "in_reply_to_screen_name": "nuenp", + "id_str": "132349081753358336", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86337324, + 151.04393855 + ] + }, + "in_reply_to_user_id_str": "39970139", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616541838/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 320720804, + "profile_text_color": "333333", + "followers_count": 6, + "profile_sidebar_border_color": "C0DEED", + "id_str": "320720804", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 32, + "description": null, + "friends_count": 33, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1616541838/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Phil Parish", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "livephilparish", + "notifications": null, + "url": null, + "created_at": "Mon Jun 20 12:14:36 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10908a", + "_rev": "1-95ec628af33b06fea5d498b17581ceb5", + "oldid": "4eb38abc3de67c511700020f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 1.4 kts NNE. Barometer 1012.1 mb, Rising slowly. Temperature 24.3 °C. Rain today 0.0 mm. Humidity 42%", + "created_at": "Fri Nov 04 06:50:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.76305556, + -32.74527778 + ] + }, + "id": 132349083577884670, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349083577884672", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.74527778, + 151.76305556 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1559106823/PFTechlogo_avatar_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 379712969, + "profile_text_color": "333333", + "followers_count": 1, + "profile_sidebar_border_color": "C0DEED", + "id_str": "379712969", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2508, + "description": "Local weather from PF Technologies - Providing quality, affordable IT support in the Hunter Region and beyond ", + "friends_count": 4, + "location": "Raymond Terrace, NSW Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1559106823/PFTechlogo_avatar_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "PF Technologies", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "PF_Technologies", + "notifications": null, + "url": "http://www.pftech.com.au", + "created_at": "Sun Sep 25 12:42:32 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e109699", + "_rev": "1-30557a9ac515a25bf4d93d9497c617f7", + "oldid": "4eb38abe3de67c5117000210", + "contributors": null, + "truncated": false, + "text": "I'm at The Glen Shopping Centre (235 Springvale Rd., Glen Waverley) http://t.co/6BZeJzLi", + "in_reply_to_status_id": null, + "id": 132349091534475260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 68, + 88 + ], + "url": "http://t.co/6BZeJzLi", + "expanded_url": "http://4sq.com/tfUU1u", + "display_url": "4sq.com/tfUU1u" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.1651001, + -37.87614065 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349091534475265", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1321037107/IMG_1272_normal.JPG", + "profile_sidebar_fill_color": "95E8EC", + "id": 34852148, + "profile_text_color": "3C3940", + "followers_count": 167, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "34852148", + "profile_background_color": "0099B9", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 5177, + "description": "The OFFICIAL Steven Kearney Twitter page. Australian Z grade celebrity!", + "friends_count": 315, + "location": "Melbourne Australia!!!", + "profile_link_color": "0099B9", + "profile_image_url": "http://a3.twimg.com/profile_images/1321037107/IMG_1272_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "Steven Kearney", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Stevenk83", + "notifications": null, + "url": null, + "created_at": "Fri Apr 24 04:54:26 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.87614065, + 145.1651001 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": true, + "created_at": "Fri Nov 04 06:50:57 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e10a466", + "_rev": "1-fe752fce725efb4b314e5dfa3aa62cf1", + "oldid": "4eb38abf3de67c5117000211", + "contributors": null, + "truncated": false, + "text": "Such a great idea, coke! http://t.co/ICBFvVqB", + "in_reply_to_status_id": null, + "id": 132349095883968510, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 25, + 45 + ], + "url": "http://t.co/ICBFvVqB", + "expanded_url": "http://twitpic.com/7aoe22", + "display_url": "twitpic.com/7aoe22" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02956773, + -27.40445987 + ] + }, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349095883968512", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1324431111/twit_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 22302196, + "profile_text_color": "333333", + "followers_count": 31, + "profile_sidebar_border_color": "D9B17E", + "id_str": "22302196", + "profile_background_color": "8B542B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 99, + "description": "Franciscan Friar and school teacher in Brisbane, Queensland.", + "friends_count": 91, + "location": "Brisbane", + "profile_link_color": "9D582E", + "profile_image_url": "http://a3.twimg.com/profile_images/1324431111/twit_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Matt Hufer", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "bro_matt75", + "notifications": null, + "url": null, + "created_at": "Sat Feb 28 22:21:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.40445987, + 153.02956773 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:50:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e10afe4", + "_rev": "1-d1c04eca9cfe10f0e4d5af2181df8029", + "oldid": "4eb38abf3de67c5117000212", + "favorited": false, + "in_reply_to_user_id": 15439395, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@stephenfry Always fly Singapore Airlines!", + "created_at": "Fri Nov 04 06:50:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132298140333244416", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.99334907, + -31.9376536 + ] + }, + "id": 132349096970297340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 15439395, + "id_str": "15439395", + "screen_name": "stephenfry", + "name": "Stephen Fry" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132298140333244420, + "in_reply_to_screen_name": "stephenfry", + "id_str": "132349096970297344", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.9376536, + 115.99334907 + ] + }, + "in_reply_to_user_id_str": "15439395", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1238292094/hand-peace-2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 17038233, + "profile_text_color": "333333", + "followers_count": 405, + "profile_sidebar_border_color": "C0DEED", + "id_str": "17038233", + "profile_background_color": "C0DEED", + "listed_count": 18, + "utc_offset": 28800, + "statuses_count": 650, + "description": "Passionate about mediation and peacemaking. Learning new things and connecting with new people. Newshound. Dog lover. Black belt listener. Conversation guru.", + "friends_count": 938, + "location": "Perth", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1238292094/hand-peace-2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "WendyFranklin", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 165, + "screen_name": "WendyFranklin", + "notifications": null, + "url": null, + "created_at": "Wed Oct 29 09:09:06 +0000 2008", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10b76e", + "_rev": "1-05a63e124b7c64e58c941338367f94d6", + "oldid": "4eb38ac03de67c5117000213", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "My god, giliran org lg di wc tlp malah bunyi trus! Glrn ga ga bunyi2. Errrr menyebalkan", + "created_at": "Fri Nov 04 06:50:59 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.29333186, + -33.43910562 + ] + }, + "id": 132349102666153980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349102666153984", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.43910562, + 151.29333186 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607505341/image_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 83379929, + "profile_text_color": "362720", + "followers_count": 176, + "profile_sidebar_border_color": "CC3366", + "id_str": "83379929", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2596, + "description": "#WhatYouShouldKnowAboutMe : im an easy going person ciao!XOXnicole", + "friends_count": 117, + "location": "in my life", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1607505341/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "Nicole Derulo", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "nicolederulo", + "notifications": null, + "url": null, + "created_at": "Sun Oct 18 15:05:54 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10bcb8", + "_rev": "1-4262e9256d5b5b810afb638483cf5579", + "oldid": "4eb38ac73de67c5117000214", + "favorited": false, + "in_reply_to_user_id": 15153951, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@msharp it'll keep it warm in my Mac while you're gone :)", + "created_at": "Fri Nov 04 06:51:06 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132328374650667008", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20489209, + -33.87580418 + ] + }, + "id": 132349129262252030, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 15153951, + "id_str": "15153951", + "screen_name": "msharp", + "name": "Mike Sharp" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132328374650667000, + "in_reply_to_screen_name": "msharp", + "id_str": "132349129262252032", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87580418, + 151.20489209 + ] + }, + "in_reply_to_user_id_str": "15153951", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1274603784/sean_normal.jpg", + "profile_sidebar_fill_color": "e7f29c", + "id": 15274097, + "profile_text_color": "333333", + "followers_count": 246, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "15274097", + "profile_background_color": "435275", + "listed_count": 16, + "utc_offset": 36000, + "statuses_count": 5427, + "description": "Frontend dev, husband, gamer and dad", + "friends_count": 225, + "location": "Sydney. Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1274603784/sean_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/6244262/sc_twitter.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/6244262/sc_twitter.png", + "name": "Sean Curtis", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2379, + "screen_name": "seancurtis", + "notifications": null, + "url": null, + "created_at": "Sun Jun 29 23:06:50 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10cbfa", + "_rev": "1-c199c0bb3f4edd1a605e4cde9aaf9acd", + "oldid": "4eb38ac83de67c5117000215", + "contributors": null, + "truncated": false, + "text": "I'm at Sydney Entertainment Centre (35 Harbour St., Sydney) http://t.co/2qkBO76p", + "in_reply_to_status_id": null, + "id": 132349134287015940, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 60, + 80 + ], + "url": "http://t.co/2qkBO76p", + "expanded_url": "http://4sq.com/u83TYp", + "display_url": "4sq.com/u83TYp" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20262384, + -33.87835235 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349134287015936", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616217483/image_normal.jpg", + "profile_sidebar_fill_color": "FFF7CC", + "id": 102831294, + "profile_text_color": "0C3E53", + "followers_count": 68, + "profile_sidebar_border_color": "F2E195", + "id_str": "102831294", + "profile_background_color": "BADFCD", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 796, + "description": "sports freak", + "friends_count": 599, + "location": "bidwill", + "profile_link_color": "e61e1e", + "profile_image_url": "http://a2.twimg.com/profile_images/1616217483/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dwayne Tucker", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "dragonboy33", + "notifications": null, + "url": null, + "created_at": "Fri Jan 08 00:16:37 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87835235, + 151.20262384 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:51:07 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e10da30", + "_rev": "1-478c005e3d1a9092680f8d1ad85aea18", + "oldid": "4eb38ace3de67c5117000216", + "favorited": false, + "in_reply_to_user_id": 300945924, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@d_a_d_v Daniel yo lo se y se quienes son tambien, lee Lucas capitulo 4 y despues Salmos 91, cuidate", + "created_at": "Fri Nov 04 06:51:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.10110166, + -33.93501852 + ] + }, + "id": 132349153404653570, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 300945924, + "id_str": "300945924", + "screen_name": "d_a_d_v", + "name": "Daniel Diaz Vera" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "d_a_d_v", + "id_str": "132349153404653568", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93501852, + 151.10110166 + ] + }, + "in_reply_to_user_id_str": "300945924", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1390615285/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 152058879, + "profile_text_color": "333333", + "followers_count": 91, + "profile_sidebar_border_color": "C0DEED", + "id_str": "152058879", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": -28800, + "statuses_count": 2122, + "description": "I'm Kunta Kinte, El Gallero George, independiente de mis ideas, tremendamente Cristiano a mi manera, respeto la vida de todos, ricos y pobres", + "friends_count": 199, + "location": "33-51-35-9 S", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1390615285/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Jorge Ordenes Coloma", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 9, + "screen_name": "Surf3255", + "notifications": null, + "url": null, + "created_at": "Sat Jun 05 00:02:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10e706", + "_rev": "1-b9a0d54925a339fc96b613d902420140", + "oldid": "4eb38ace3de67c5117000217", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "3 seasons of House M.D. in a week.", + "created_at": "Fri Nov 04 06:51:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.06516911, + -27.54112113 + ] + }, + "id": 132349159868088320, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349159868088320", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.54112113, + 153.06516911 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615258302/image1xm_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 57945820, + "profile_text_color": "BA0404", + "followers_count": 348, + "profile_sidebar_border_color": "CC2F1E", + "id_str": "57945820", + "profile_background_color": "F4E8C2", + "listed_count": 9, + "utc_offset": 36000, + "statuses_count": 21803, + "description": "Life is a beach I'm just playing in the sand. Proudly Kenyan. #IDoIt", + "friends_count": 508, + "location": "Brisbane, Australia", + "profile_link_color": "ED1C21", + "profile_image_url": "http://a0.twimg.com/profile_images/1615258302/image1xm_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/354803376/1680_1050_20091204112548351823_crop_II.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/354803376/1680_1050_20091204112548351823_crop_II.jpg", + "name": "James Ndege", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 100, + "screen_name": "jndegz", + "notifications": null, + "url": "http://www.facebook.com/jndegz", + "created_at": "Sat Jul 18 14:38:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10f4ce", + "_rev": "1-e8998bb5417d551452a8796ba7bf649d", + "oldid": "4eb38ad13de67c5117000218", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "LOL, EPIC“@HaHaWhitePPL: That awkward moment when my doctor is checking my balls during a physical and I run my fingers through his hair.”", + "created_at": "Fri Nov 04 06:51:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02807968, + -27.46933124 + ] + }, + "id": 132349171243032580, + "entities": { + "user_mentions": [ + { + "indices": [ + 10, + 23 + ], + "id": 33121494, + "id_str": "33121494", + "screen_name": "HaHaWhitePPL", + "name": "America's Hero" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349171243032576", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.46933124, + 153.02807968 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1617485128/image_normal.jpg", + "profile_sidebar_fill_color": "000B17", + "id": 40439400, + "profile_text_color": "004358", + "followers_count": 41, + "profile_sidebar_border_color": "F7B565", + "id_str": "40439400", + "profile_background_color": "001329", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 745, + "description": "Be yourself, don't take anyone's shit, and never let them take you alive.", + "friends_count": 111, + "location": "Australia", + "profile_link_color": "448668", + "profile_image_url": "http://a2.twimg.com/profile_images/1617485128/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/333350185/x2b1ef74509fbf2926e946194050ee42.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/333350185/x2b1ef74509fbf2926e946194050ee42.jpg", + "name": "AbdulSamad Mohammed", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "AbdulsamadA", + "notifications": null, + "url": "http://www.facebook.com/abdulsamadm", + "created_at": "Sat May 16 09:40:58 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10f4f8", + "_rev": "1-99b8705cd33188fef754f8144819576f", + "oldid": "4eb38ad83de67c5117000219", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Katakata go burst", + "created_at": "Fri Nov 04 06:51:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.8260919, + -33.75784741 + ] + }, + "id": 132349202385739780, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349202385739776", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75784741, + 150.8260919 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9271, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10f51f", + "_rev": "1-75b63367c5a2d8f7e716d0a4bdf86816", + "oldid": "4eb38ad93de67c511700021a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#2011musictaughtme that I was born this way. Ha", + "created_at": "Fri Nov 04 06:51:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.99403551, + -27.47616031 + ] + }, + "id": 132349206789767170, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 18 + ], + "text": "2011musictaughtme" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349206789767168", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.47616031, + 152.99403551 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1468703098/rsz_img_3015_normal.jpg", + "profile_sidebar_fill_color": "bdbdbd", + "id": 51702771, + "profile_text_color": "000000", + "followers_count": 32, + "profile_sidebar_border_color": "000000", + "id_str": "51702771", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 334, + "description": "I am what I am, highly opinionated, ambitious, outgoing. Confused.", + "friends_count": 98, + "location": "Im in Bris-vegas Baby!", + "profile_link_color": "A17700", + "profile_image_url": "http://a2.twimg.com/profile_images/1468703098/rsz_img_3015_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237514286/rsz_img_0084.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/237514286/rsz_img_0084.jpg", + "name": "Sarah Grace Jones", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "Saharararar", + "notifications": null, + "url": null, + "created_at": "Sun Jun 28 10:51:26 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e10f5c9", + "_rev": "1-24936c1dafad5d16f6dede63d9b5fca6", + "oldid": "4eb38adb3de67c511700021b", + "contributors": null, + "truncated": false, + "text": "I'm at The Kingdome http://t.co/atj5bEB0", + "in_reply_to_status_id": null, + "id": 132349212779216900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 20, + 40 + ], + "url": "http://t.co/atj5bEB0", + "expanded_url": "http://4sq.com/tOtfqX", + "display_url": "4sq.com/tOtfqX" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2026, + -33.879041 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349212779216896", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616217483/image_normal.jpg", + "profile_sidebar_fill_color": "FFF7CC", + "id": 102831294, + "profile_text_color": "0C3E53", + "followers_count": 68, + "profile_sidebar_border_color": "F2E195", + "id_str": "102831294", + "profile_background_color": "BADFCD", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 797, + "description": "sports freak", + "friends_count": 599, + "location": "bidwill", + "profile_link_color": "e61e1e", + "profile_image_url": "http://a2.twimg.com/profile_images/1616217483/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dwayne Tucker", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "dragonboy33", + "notifications": null, + "url": null, + "created_at": "Fri Jan 08 00:16:37 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.879041, + 151.2026 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:51:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1103cf", + "_rev": "1-6888674b6e90ab8355e0ff829a9505e9", + "oldid": "4eb38ae33de67c511700021c", + "favorited": false, + "in_reply_to_user_id": 26032912, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ronanofficial awww that's soooo. Cute... They the cutest things", + "created_at": "Fri Nov 04 06:51:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347721414750208", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1605416, + -33.87224417 + ] + }, + "id": 132349245259923460, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 26032912, + "id_str": "26032912", + "screen_name": "ronanofficial", + "name": "Ronan Keating" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347721414750200, + "in_reply_to_screen_name": "ronanofficial", + "id_str": "132349245259923457", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87224417, + 151.1605416 + ] + }, + "in_reply_to_user_id_str": "26032912", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619757778/b46c09a8-bd0a-48ce-b189-85eff1b8fff4_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 128234187, + "profile_text_color": "333333", + "followers_count": 44, + "profile_sidebar_border_color": "C0DEED", + "id_str": "128234187", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 2798, + "description": "Gday, I luv animals especially my pitty Ty - Im a part time receptionist in a Brothel in Sydney, luv my job get to meet ppl from all over the world ", + "friends_count": 108, + "location": "Australia Sydney. ", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1619757778/b46c09a8-bd0a-48ce-b189-85eff1b8fff4_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Tracey ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 192, + "screen_name": "tsimm", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 14:29:06 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e110fdb", + "_rev": "1-95be667c52c0323b1f02975bf1c69032", + "oldid": "4eb38ae43de67c511700021d", + "contributors": null, + "truncated": false, + "text": "I'm at Challenge Ranch (160 Henson Road, Somersby) [pic]: http://t.co/NR5xD64W", + "in_reply_to_status_id": null, + "id": 132349254017613820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 58, + 78 + ], + "url": "http://t.co/NR5xD64W", + "expanded_url": "http://4sq.com/uVTaXe", + "display_url": "4sq.com/uVTaXe" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.291053, + -33.360992 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349254017613824", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1612967605/photo_normal.jpg", + "profile_sidebar_fill_color": "a985f2", + "id": 31748738, + "profile_text_color": "0f0e0f", + "followers_count": 929, + "profile_sidebar_border_color": "09090a", + "id_str": "31748738", + "profile_background_color": "e60e0e", + "listed_count": 55, + "utc_offset": 36000, + "statuses_count": 14686, + "description": "Dad,husband,PE HT & PLANE test pilot. Big fan of tech in teaching,cycling,geocaching & seeks new horizons in all of the above. My views are my own. Mine.", + "friends_count": 447, + "location": "Here", + "profile_link_color": "0313f5", + "profile_image_url": "http://a1.twimg.com/profile_images/1612967605/photo_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/14994531/mandelbrot.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/14994531/mandelbrot.jpg", + "name": "Brendan Jones ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "jonesytheteachr", + "notifications": null, + "url": "http://jonesytheteacher.wordpress.com", + "created_at": "Thu Apr 16 12:23:03 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.360992, + 151.291053 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:51:35 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e111608", + "_rev": "1-a0ba5752d47d68fd30ea8e230d5c34d9", + "oldid": "4eb38ae53de67c511700021e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "There are people walking home faster than this traffic is moving.", + "created_at": "Fri Nov 04 06:51:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18813327, + -33.90767102 + ] + }, + "id": 132349254894231550, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349254894231552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.90767102, + 151.18813327 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/195856728/immytwitter_normal.png", + "profile_sidebar_fill_color": "f7ecea", + "id": 15942363, + "profile_text_color": "636063", + "followers_count": 86, + "profile_sidebar_border_color": "fffbfa", + "id_str": "15942363", + "profile_background_color": "000000", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 606, + "description": "No one special.", + "friends_count": 152, + "location": "Sydney", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/195856728/immytwitter_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/324540820/Triangles_Warm.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/324540820/Triangles_Warm.jpg", + "name": "Simone Bonouvrié", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "simonebonouvrie", + "notifications": null, + "url": "http://www.simonembonouvrie.com/", + "created_at": "Fri Aug 22 07:14:15 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e112170", + "_rev": "1-1dbf05b16e603cc5083812882900d1a8", + "oldid": "4eb38aec3de67c511700021f", + "contributors": null, + "truncated": false, + "text": "OMG YES \"@HarajukuGyoza: Start your pre-gyoza diet. Harajuku Gyoza is just days out from opening - http://t.co/0dDqfNl0\"", + "in_reply_to_status_id": null, + "id": 132349283641999360, + "entities": { + "user_mentions": [ + { + "indices": [ + 9, + 23 + ], + "id": 325284103, + "id_str": "325284103", + "screen_name": "HarajukuGyoza", + "name": "Harajuku Gyoza" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 99, + 119 + ], + "url": "http://t.co/0dDqfNl0", + "expanded_url": "http://tumblr.com/ZlEnQxBTwAMC", + "display_url": "tumblr.com/ZlEnQxBTwAMC" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0690297, + -27.47133887 + ] + }, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349283641999360", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600812248/wjfFuLkT_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 235768823, + "profile_text_color": "333333", + "followers_count": 282, + "profile_sidebar_border_color": "C0DEED", + "id_str": "235768823", + "profile_background_color": "C0DEED", + "listed_count": 16, + "utc_offset": 36000, + "statuses_count": 10075, + "description": "@peterjblack followed me on 7/8/10", + "friends_count": 185, + "location": "Brisbane", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1600812248/wjfFuLkT_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Nick", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 39, + "screen_name": "nickjdalton", + "notifications": null, + "url": "http://nickjdalton.com", + "created_at": "Sun Jan 09 01:44:36 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.47133887, + 153.0690297 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": true, + "created_at": "Fri Nov 04 06:51:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e112cea", + "_rev": "1-a34797d87e001146660b1377c012aa47", + "oldid": "4eb38aed3de67c5117000220", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "RT WELL SAID!!! “@BrownSKlN: Alot of women today need to open a book instead of their legs & get an education instead of getting pregnant!”", + "created_at": "Fri Nov 04 06:51:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.9381929, + -33.77541297 + ] + }, + "id": 132349289514008580, + "entities": { + "user_mentions": [ + { + "indices": [ + 17, + 27 + ], + "id": 50929163, + "id_str": "50929163", + "screen_name": "BrownSKlN", + "name": "Apprentice Lineman" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349289514008576", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77541297, + 150.9381929 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607333927/image_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 313148481, + "profile_text_color": "333333", + "followers_count": 87, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "313148481", + "profile_background_color": "ACDED6", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 895, + "description": "I fall, I rise, I make mistakes, I live, I learn, I've been hurt but I'm alive. I'm human, I'm not perfect but I'm THANKFUL:)", + "friends_count": 295, + "location": "SYDNEY. NSW. AUSTRALIA", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1607333927/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/332684440/kids_on_Lalomanu_Beach.JPG", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/332684440/kids_on_Lalomanu_Beach.JPG", + "name": "Carol Mackie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 735, + "screen_name": "CazzM29", + "notifications": null, + "url": null, + "created_at": "Wed Jun 08 06:36:22 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e113745", + "_rev": "1-13b2c8714b880edf088b6c15e59841f0", + "oldid": "4eb38aee3de67c5117000221", + "favorited": false, + "in_reply_to_user_id": 337235712, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Moto42Rogers \n\nNo your still not following me !!", + "created_at": "Fri Nov 04 06:51:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549142, + -32.04731038 + ] + }, + "id": 132349291854434300, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 337235712, + "id_str": "337235712", + "screen_name": "Moto42Rogers", + "name": "#42. 4evrmxr" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "Moto42Rogers", + "id_str": "132349291854434304", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04731038, + 115.92549142 + ] + }, + "in_reply_to_user_id_str": "337235712", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 909, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9573, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1709, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11415e", + "_rev": "1-5838b0a20715c067e448870c8e1ed739", + "oldid": "4eb38af33de67c5117000222", + "favorited": false, + "in_reply_to_user_id": 393313701, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@lynchee97 \"muso\" and \"professor\". Geeez.", + "created_at": "Fri Nov 04 06:51:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347922099605505", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.029564, + -27.40445142 + ] + }, + "id": 132349313429934080, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 393313701, + "id_str": "393313701", + "screen_name": "lynchee97", + "name": "Jayden Lynch" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347922099605500, + "in_reply_to_screen_name": "lynchee97", + "id_str": "132349313429934080", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.40445142, + 153.029564 + ] + }, + "in_reply_to_user_id_str": "393313701", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1324431111/twit_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 22302196, + "profile_text_color": "333333", + "followers_count": 31, + "profile_sidebar_border_color": "D9B17E", + "id_str": "22302196", + "profile_background_color": "8B542B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 100, + "description": "Franciscan Friar and school teacher in Brisbane, Queensland.", + "friends_count": 91, + "location": "Brisbane", + "profile_link_color": "9D582E", + "profile_image_url": "http://a3.twimg.com/profile_images/1324431111/twit_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Matt Hufer", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "bro_matt75", + "notifications": null, + "url": null, + "created_at": "Sat Feb 28 22:21:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11426c", + "_rev": "1-1963dbbb673b317139d380164f9c8aab", + "oldid": "4eb38af43de67c5117000223", + "favorited": false, + "in_reply_to_user_id": 169318838, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tassie_gal Good. You Alessandro's capable hands", + "created_at": "Fri Nov 04 06:51:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348259200020480", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20940949, + -33.87035022 + ] + }, + "id": 132349318236610560, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 169318838, + "id_str": "169318838", + "screen_name": "tassie_gal", + "name": "Zelda" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348259200020480, + "in_reply_to_screen_name": "tassie_gal", + "id_str": "132349318236610561", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87035022, + 151.20940949 + ] + }, + "in_reply_to_user_id_str": "169318838", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 272274507, + "profile_text_color": "333333", + "followers_count": 423, + "profile_sidebar_border_color": "C0DEED", + "id_str": "272274507", + "profile_background_color": "C0DEED", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 363, + "description": "Spiedo Restaurant & Bar, Alessandro Pavoni's latest offering. Informal Lombardian food. Level 6, Westfield Sydney. Now open! (P.S. It's pronounced spi-eh-do.)", + "friends_count": 160, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "SpiedoSydneyCBD", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "SpiedoSydneyCBD", + "notifications": null, + "url": "http://www.spiedo.com.au", + "created_at": "Sat Mar 26 05:19:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11479e", + "_rev": "1-e679126116346e689c8935dbfb5da71f", + "oldid": "4eb38af53de67c5117000224", + "contributors": null, + "truncated": false, + "text": "Just posted a photo @ Federation Square http://t.co/9bHOAVDH", + "in_reply_to_status_id": null, + "id": 132349322518986750, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 41, + 61 + ], + "url": "http://t.co/9bHOAVDH", + "expanded_url": "http://instagr.am/p/SqU-f/", + "display_url": "instagr.am/p/SqU-f/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96829033, + -37.81785297 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349322518986753", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "profile_sidebar_fill_color": "adebff", + "id": 53871425, + "profile_text_color": "011e36", + "followers_count": 171, + "profile_sidebar_border_color": "07c4d9", + "id_str": "53871425", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": 28800, + "statuses_count": 14591, + "description": "this is a private space of mumbling thought. nothing much.", + "friends_count": 186, + "location": "Kuala Lumpur, Malaysia", + "profile_link_color": "1524ed", + "profile_image_url": "http://a0.twimg.com/profile_images/1273370150/avatar_threshold_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/21848671/bgb.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/21848671/bgb.jpg", + "name": "Fauzi Yusoff", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 17, + "screen_name": "fauziyusoff", + "notifications": null, + "url": "http://www.fauziyusoff.com", + "created_at": "Sun Jul 05 08:46:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Kuala Lumpur", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81785297, + 144.96829033 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:51:52 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1152e9", + "_rev": "1-5752e4a38d64905fbcb2733629eb578f", + "oldid": "4eb38af73de67c5117000225", + "contributors": null, + "truncated": false, + "text": "I'm at ICT Building (111 Barry St, University of Melbourne, Carlton) http://t.co/MfdcDDkv", + "in_reply_to_status_id": null, + "id": 132349331075366910, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 69, + 89 + ], + "url": "http://t.co/MfdcDDkv", + "expanded_url": "http://4sq.com/tWqSHw", + "display_url": "4sq.com/tWqSHw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95948195, + -37.80138768 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349331075366912", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1172841729/p_large_eOiE_15326i016062_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 17612855, + "profile_text_color": "3C3940", + "followers_count": 27, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "17612855", + "profile_background_color": "0099B9", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 312, + "description": "", + "friends_count": 148, + "location": "Fuzhou", + "profile_link_color": "0099B9", + "profile_image_url": "http://a2.twimg.com/profile_images/1172841729/p_large_eOiE_15326i016062_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "Alan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 126, + "screen_name": "gilzero", + "notifications": null, + "url": null, + "created_at": "Tue Nov 25 05:02:49 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.80138768, + 144.95948195 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:51:54 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1158ba", + "_rev": "1-2de464a9e8355ac643d698f944ad2114", + "oldid": "4eb38afe3de67c5117000226", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker Deal.", + "created_at": "Fri Nov 04 06:52:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348782011629568", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132349361454723070, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348782011629570, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132349361454723072", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20039, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11656a", + "_rev": "1-586d63020c216a47e9b3b46e29e73b8e", + "oldid": "4eb38aff3de67c5117000227", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Still not at home yet.", + "created_at": "Fri Nov 04 06:52:02 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.86495652, + -33.99953544 + ] + }, + "id": 132349364646576130, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349364646576128", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.99953544, + 150.86495652 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1416821126/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 325317899, + "profile_text_color": "666666", + "followers_count": 16, + "profile_sidebar_border_color": "181A1E", + "id_str": "325317899", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 837, + "description": "Some say the glass is half full, some say the glass is half empty. I say “Are you gonna drink that?”", + "friends_count": 107, + "location": "Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1416821126/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Chayson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "chays1292", + "notifications": null, + "url": null, + "created_at": "Tue Jun 28 03:04:35 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1174ed", + "_rev": "1-3310d92bb7644bd1776a090b087a4e5f", + "oldid": "4eb38aff3de67c5117000228", + "favorited": false, + "in_reply_to_user_id": 372122039, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@WilllMorgan oh yeah.. Yup keen #bigweekend", + "created_at": "Fri Nov 04 06:52:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349037377622016", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.23501193, + -33.88981083 + ] + }, + "id": 132349362822053890, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 372122039, + "id_str": "372122039", + "screen_name": "WilllMorgan", + "name": "Will Morgan" + } + ], + "hashtags": [ + { + "indices": [ + 32, + 43 + ], + "text": "bigweekend" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132349037377622020, + "in_reply_to_screen_name": "WilllMorgan", + "id_str": "132349362822053888", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88981083, + 151.23501193 + ] + }, + "in_reply_to_user_id_str": "372122039", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1452411823/225843_10150183072645829_530465828_7398119_2849057_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 229676634, + "profile_text_color": "333333", + "followers_count": 117, + "profile_sidebar_border_color": "eeeeee", + "id_str": "229676634", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 612, + "description": "Fashion Designer/Dj/Graphic Designer/Blogger/Skier/Surfer/Life Lover. \r\n\r\nIn Sydney Involved in projects with: Trash-Disko and Dead Castle Project", + "friends_count": 416, + "location": "Sydney", + "profile_link_color": "585c5c", + "profile_image_url": "http://a0.twimg.com/profile_images/1452411823/225843_10150183072645829_530465828_7398119_2849057_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/306490961/Picture_13.png", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/306490961/Picture_13.png", + "name": "Sam Moore", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "samjamesmoore", + "notifications": null, + "url": "http://deadcastleproject.com/", + "created_at": "Thu Dec 23 01:30:31 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e117ff5", + "_rev": "1-a4ae295cf9cb3ead33796e5e5cc9ac36", + "oldid": "4eb38b053de67c5117000229", + "favorited": false, + "in_reply_to_user_id": 291551433, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@NobodiesSongs Was just mentioned by @kellyhd on @612brisbane too!", + "created_at": "Fri Nov 04 06:52:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "131274193764487169", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01744049, + -27.53745156 + ] + }, + "id": 132349390621909000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 291551433, + "id_str": "291551433", + "screen_name": "NobodiesSongs", + "name": "Songs For Nobodies" + }, + { + "indices": [ + 37, + 45 + ], + "id": 103845812, + "id_str": "103845812", + "screen_name": "kellyhd", + "name": "Kelly Higgins-Devine" + }, + { + "indices": [ + 49, + 61 + ], + "id": 16213124, + "id_str": "16213124", + "screen_name": "612brisbane", + "name": "ABC Radio Brisbane" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 131274193764487170, + "in_reply_to_screen_name": "NobodiesSongs", + "id_str": "132349390621908992", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.53745156, + 153.01744049 + ] + }, + "in_reply_to_user_id_str": "291551433", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/337426586/6216_109436910046_650625046_2669526_2980641_n_normal.jpg", + "profile_sidebar_fill_color": "db1c20", + "id": 61141849, + "profile_text_color": "0C3E53", + "followers_count": 129, + "profile_sidebar_border_color": "9efaf2", + "id_str": "61141849", + "profile_background_color": "121eff", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2156, + "description": "Violinist, teacher and lover of all things delicious ", + "friends_count": 304, + "location": "", + "profile_link_color": "521212", + "profile_image_url": "http://a2.twimg.com/profile_images/337426586/6216_109436910046_650625046_2669526_2980641_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/57480732/11133_1246370528899_1518491131_653848_351024_n.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/57480732/11133_1246370528899_1518491131_653848_351024_n.jpg", + "name": "Robyn Gray", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "RobynWeird", + "notifications": null, + "url": null, + "created_at": "Wed Jul 29 07:38:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e118882", + "_rev": "1-a9dc86e4bd49e53f1c66ed1c0703b05f", + "oldid": "4eb38b063de67c511700022a", + "contributors": null, + "truncated": false, + "text": "I'm at Swiss Belhotel Papua Jayapura City (Pusat Bisnis Jayapura Jl. Pasifik Permai, Jayapura City) http://t.co/LBRbKqsf", + "in_reply_to_status_id": null, + "id": 132349390273785860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 100, + 120 + ], + "url": "http://t.co/LBRbKqsf", + "expanded_url": "http://4sq.com/rqC5yS", + "display_url": "4sq.com/rqC5yS" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 140.711637, + -2.538994 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349390273785857", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618195999/329075031_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 47066233, + "profile_text_color": "f06c00", + "followers_count": 548, + "profile_sidebar_border_color": "ffffff", + "id_str": "47066233", + "profile_background_color": "f06c00", + "listed_count": 5, + "utc_offset": 25200, + "statuses_count": 23877, + "description": "Marvelous JESUS's daughter", + "friends_count": 199, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a1.twimg.com/profile_images/1618195999/329075031_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/84020225/paramorejosh.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/84020225/paramorejosh.jpg", + "name": "Epifania Lallo", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "FANILAA", + "notifications": null, + "url": "http://formspring.me/fanilaa", + "created_at": "Sun Jun 14 09:42:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -2.538994, + 140.711637 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:52:08 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e118e62", + "_rev": "1-580fafca42e1cee94d0d0ff05686604f", + "oldid": "4eb38b0a3de67c511700022b", + "contributors": null, + "truncated": false, + "text": "@thetone I brought skin tights for running haha (@ Rebel Sport) http://t.co/wwcc0tKb", + "in_reply_to_status_id": null, + "id": 132349412054802430, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 14556874, + "id_str": "14556874", + "screen_name": "thetone", + "name": "Tony" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 64, + 84 + ], + "url": "http://t.co/wwcc0tKb", + "expanded_url": "http://4sq.com/sH4SvZ", + "display_url": "4sq.com/sH4SvZ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20835304, + -33.86980979 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": "thetone", + "in_reply_to_user_id": 14556874, + "retweet_count": 0, + "id_str": "132349412054802432", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610394488/hb78_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 18383003, + "profile_text_color": "0f0f0e", + "followers_count": 239, + "profile_sidebar_border_color": "0bd1d1", + "id_str": "18383003", + "profile_background_color": "D8C47D", + "listed_count": 22, + "utc_offset": 36000, + "statuses_count": 15083, + "description": "Made in New Zealand Then Exported to Australia via Los Angeles & Bangkok\r\n \r\n ☠My thoughts are my own and dont represent my employers ☠\r\n ", + "friends_count": 97, + "location": "Sydney ", + "profile_link_color": "05a199", + "profile_image_url": "http://a0.twimg.com/profile_images/1610394488/hb78_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/346563875/music-doodles.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/346563875/music-doodles.jpg", + "name": "Hugo Brown ฮิวโก้ ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 68, + "screen_name": "hugobrown", + "notifications": null, + "url": "http://www.gplus.to/hugobrown", + "created_at": "Fri Dec 26 02:37:33 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86980979, + 151.20835304 + ] + }, + "in_reply_to_user_id_str": "14556874", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:52:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e119375", + "_rev": "1-090e96e483bd978dfa526dfa3b662d25", + "oldid": "4eb38b0c3de67c511700022c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.handmark.com\" rel=\"nofollow\">TweetCaster for iOS</a>", + "text": "Mob Wives Reunion Special makes me happy.", + "created_at": "Fri Nov 04 06:52:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.161194, + -33.888042 + ] + }, + "id": 132349421370355710, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349421370355713", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.888042, + 151.161194 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1203728653/profile_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 38606846, + "profile_text_color": "3E4415", + "followers_count": 132, + "profile_sidebar_border_color": "829D5E", + "id_str": "38606846", + "profile_background_color": "352726", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1410, + "description": "Mentor, coach, regular man about town, full time observer. Creator of Dear Pageant Girl www.facebook.com/DearPageantGirl", + "friends_count": 94, + "location": "Sydney", + "profile_link_color": "D02B55", + "profile_image_url": "http://a0.twimg.com/profile_images/1203728653/profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Peter Sereno", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 43, + "screen_name": "petersereno", + "notifications": null, + "url": "http://www.facebook.com/group.php?gid=113840891971080&ref=mf", + "created_at": "Fri May 08 04:36:05 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e119ffa", + "_rev": "1-c82d76709bebafa7626be79c526ccdca", + "oldid": "4eb38b0c3de67c511700022d", + "favorited": false, + "in_reply_to_user_id": 169318838, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@tassie_gal Good. You will be in @AlexPavoni capable hands!", + "created_at": "Fri Nov 04 06:52:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348259200020480", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20940949, + -33.87035022 + ] + }, + "id": 132349421156438020, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 169318838, + "id_str": "169318838", + "screen_name": "tassie_gal", + "name": "Zelda" + }, + { + "indices": [ + 33, + 44 + ], + "id": 85786442, + "id_str": "85786442", + "screen_name": "AlexPavoni", + "name": "Alessandro Pavoni" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348259200020480, + "in_reply_to_screen_name": "tassie_gal", + "id_str": "132349421156438016", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87035022, + 151.20940949 + ] + }, + "in_reply_to_user_id_str": "169318838", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 272274507, + "profile_text_color": "333333", + "followers_count": 423, + "profile_sidebar_border_color": "C0DEED", + "id_str": "272274507", + "profile_background_color": "C0DEED", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 364, + "description": "Spiedo Restaurant & Bar, Alessandro Pavoni's latest offering. Informal Lombardian food. Level 6, Westfield Sydney. Now open! (P.S. It's pronounced spi-eh-do.)", + "friends_count": 160, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1288697777/SpiedoSydneyCBD_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "SpiedoSydneyCBD", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "SpiedoSydneyCBD", + "notifications": null, + "url": "http://www.spiedo.com.au", + "created_at": "Sat Mar 26 05:19:45 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11aab3", + "_rev": "1-d835f8277784ac78f94a8746df5e0270", + "oldid": "4eb38b0d3de67c511700022e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Potty mouth kids on train need a slapping and the mouths washed out. #youthesedays whole now knows when they lost their virginity. :|", + "created_at": "Fri Nov 04 06:52:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.05168195, + -27.57594763 + ] + }, + "id": 132349425040371710, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 69, + 82 + ], + "text": "youthesedays" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349425040371712", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.57594763, + 153.05168195 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14752906, + "profile_text_color": "333333", + "followers_count": 418, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14752906", + "profile_background_color": "022330", + "listed_count": 45, + "utc_offset": 36000, + "statuses_count": 4839, + "description": "Umbraco HQ staffer.\r\nUmbraco Core Team.\r\nOfficial Umbraco Trainer.\r\n", + "friends_count": 168, + "location": "Gold Coast", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Peter Gregory", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "pgregorynz", + "notifications": null, + "url": "http://www.umbraco.org", + "created_at": "Tue May 13 01:37:58 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11b05f", + "_rev": "1-306d867479a5d30dca19eec67edec202", + "oldid": "4eb38b103de67c511700022f", + "favorited": false, + "in_reply_to_user_id": 19376308, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Enderboi lol. Past the security gate no less!", + "created_at": "Fri Nov 04 06:52:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348874781241344", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.19166589, + -35.30774485 + ] + }, + "id": 132349432715943940, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 19376308, + "id_str": "19376308", + "screen_name": "Enderboi", + "name": "James 'Ender' Brown" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348874781241340, + "in_reply_to_screen_name": "Enderboi", + "id_str": "132349432715943936", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.30774485, + 149.19166589 + ] + }, + "in_reply_to_user_id_str": "19376308", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/385075837/sniperkitty_twitter_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 10350022, + "profile_text_color": "333333", + "followers_count": 333, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "10350022", + "profile_background_color": "022330", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 7354, + "description": "Random Melbourner who takes photos for a hobby and enjoys technology. Watch out for the bad puns!", + "friends_count": 367, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/385075837/sniperkitty_twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "tenty", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 11, + "screen_name": "tenty", + "notifications": null, + "url": "http://www.youtube.com/user/tenty", + "created_at": "Sun Nov 18 07:19:08 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11ba16", + "_rev": "1-27624351672ad9e62066bba3b62129be", + "oldid": "4eb38b163de67c5117000230", + "favorited": false, + "in_reply_to_user_id": 296173809, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Timcnorwood PIC OR GTFO", + "created_at": "Fri Nov 04 06:52:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335906286862337", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.35777699, + -38.15470993 + ] + }, + "id": 132349459337187330, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 296173809, + "id_str": "296173809", + "screen_name": "Timcnorwood", + "name": "Tim Norwood" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335906286862340, + "in_reply_to_screen_name": "Timcnorwood", + "id_str": "132349459337187328", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.15470993, + 144.35777699 + ] + }, + "in_reply_to_user_id_str": "296173809", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1603839787/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 21446928, + "profile_text_color": "333333", + "followers_count": 171, + "profile_sidebar_border_color": "C0DEED", + "id_str": "21446928", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 9473, + "description": "Voted most likely to own a battle cat by Forbes Magazine '87", + "friends_count": 117, + "location": "Vault 109, melb aus", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1603839787/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/157030864/1285462176123.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/157030864/1285462176123.jpg", + "name": "Jesse Custer", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 32, + "screen_name": "azadaza", + "notifications": null, + "url": "http://azadaza.tumblr.com", + "created_at": "Fri Feb 20 23:39:38 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11c7ce", + "_rev": "1-3cd87c9b96e1af0707a03e10957eefaf", + "oldid": "4eb38b1e3de67c5117000231", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "on the tram to #swmelb get down to business! haha stomach doesnt agree ;)", + "created_at": "Fri Nov 04 06:52:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95428473, + -37.82996983 + ] + }, + "id": 132349496322555900, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 15, + 22 + ], + "text": "swmelb" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349496322555904", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82996983, + 144.95428473 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1580934056/beatka_2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 145250942, + "profile_text_color": "333333", + "followers_count": 182, + "profile_sidebar_border_color": "C0DEED", + "id_str": "145250942", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": 0, + "statuses_count": 490, + "description": "A hopeless dreamer, aspiring entrepreneur, gadget addict and sci-fi lover exploring Australia ", + "friends_count": 339, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1580934056/beatka_2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Richard Lipovsky", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 15, + "screen_name": "richardlipovsky", + "notifications": null, + "url": "http://www.idealog.sk", + "created_at": "Tue May 18 13:54:29 +0000 2010", + "contributors_enabled": false, + "time_zone": "Edinburgh", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11d156", + "_rev": "1-e1364cbe793ded2248e65c9f9a3d5769", + "oldid": "4eb38b203de67c5117000232", + "contributors": null, + "truncated": false, + "text": "I call this one “Spending Three Days of my Life in Assessment Mode”. Horrifying. http://t.co/raVPoW5S", + "in_reply_to_status_id": null, + "id": 132349500281991170, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYzK1bCMAE7rV7.jpg", + "expanded_url": "http://twitter.com/perryodd/status/132349500281991168/photo/1", + "display_url": "pic.twitter.com/raVPoW5S", + "url": "http://t.co/raVPoW5S", + "sizes": { + "large": { + "h": 500, + "w": 664, + "resize": "fit" + }, + "small": { + "h": 256, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 452, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132349500286185473", + "indices": [ + 81, + 101 + ], + "type": "photo", + "id": 132349500286185470, + "media_url": "http://p.twimg.com/AdYzK1bCMAE7rV7.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.486102, + -33.239082 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Photos on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349500281991168", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1195390815/Photo_on_2010-12-21_at_13.15_normal.jpg", + "profile_sidebar_fill_color": "221312", + "id": 50535742, + "profile_text_color": "BE8C89", + "followers_count": 78, + "profile_sidebar_border_color": "533B33", + "id_str": "50535742", + "profile_background_color": "BD9EA0", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2012, + "description": "I am a university student and wannabe 'delivery expert'. Philosophy is the balls, as Descartes would have put it. The only way to my heart is with Vanilla Coke.", + "friends_count": 247, + "location": "iPhone: -33.144897,151.517319", + "profile_link_color": "9A848E", + "profile_image_url": "http://a2.twimg.com/profile_images/1195390815/Photo_on_2010-12-21_at_13.15_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/206601658/x967bdc8be9d145f79c8a570aabb11ae.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/206601658/x967bdc8be9d145f79c8a570aabb11ae.jpg", + "name": "Perry Gardner", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "perryodd", + "notifications": null, + "url": "http://perryodd.tumblr.com/", + "created_at": "Thu Jun 25 03:22:10 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.239082, + 151.486102 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:52:35 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e11d2e2", + "_rev": "1-4e963d4bf040ce5c0f4c7ac838526652", + "oldid": "4eb38b243de67c5117000233", + "favorited": false, + "in_reply_to_user_id": 337407558, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@jeddiepeddie FYI you can follow @RedTube #inthemud", + "created_at": "Fri Nov 04 06:52:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.04934388, + -27.3440892 + ] + }, + "id": 132349518233604100, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 337407558, + "id_str": "337407558", + "screen_name": "jeddiepeddie", + "name": "Jed Peddie" + }, + { + "indices": [ + 33, + 41 + ], + "id": 148824710, + "id_str": "148824710", + "screen_name": "RedTube", + "name": "RedTube Home of Porn" + } + ], + "hashtags": [ + { + "indices": [ + 42, + 51 + ], + "text": "inthemud" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "jeddiepeddie", + "id_str": "132349518233604096", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.3440892, + 153.04934388 + ] + }, + "in_reply_to_user_id_str": "337407558", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570778927/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 33466231, + "profile_text_color": "666666", + "followers_count": 67, + "profile_sidebar_border_color": "181A1E", + "id_str": "33466231", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 418, + "description": "21, enjoys sweating, apples, a good trend, anything competitive and fake designer cutlery", + "friends_count": 300, + "location": "brisbane", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1570778927/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Callan Walsh", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "walshca", + "notifications": null, + "url": null, + "created_at": "Mon Apr 20 09:06:52 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11d5e4", + "_rev": "1-e6ba241443a6e17959059219ad932655", + "oldid": "4eb38b273de67c5117000234", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#Friday just about dusted, good food and company now then the hay!", + "created_at": "Fri Nov 04 06:52:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.04399245, + -33.86339409 + ] + }, + "id": 132349531055599620, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 7 + ], + "text": "Friday" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349531055599616", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86339409, + 151.04399245 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616541838/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 320720804, + "profile_text_color": "333333", + "followers_count": 6, + "profile_sidebar_border_color": "C0DEED", + "id_str": "320720804", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 33, + "description": null, + "friends_count": 33, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1616541838/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Phil Parish", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "livephilparish", + "notifications": null, + "url": null, + "created_at": "Mon Jun 20 12:14:36 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11e4d7", + "_rev": "1-13c18a43d6a23df8fba2c0be9c303e04", + "oldid": "4eb38b333de67c5117000235", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Oh heaven, a warmish Friday night on the deck, time to unwind a notch or two #TGIF", + "created_at": "Fri Nov 04 06:52:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.06831285, + -37.9148638 + ] + }, + "id": 132349581647290370, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 77, + 82 + ], + "text": "TGIF" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349581647290368", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.9148638, + 145.06831285 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1342409124/LogoColorNoText_normal.jpeg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 17745048, + "profile_text_color": "634047", + "followers_count": 29, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "17745048", + "profile_background_color": "EDECE9", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 613, + "description": "Software Requirements Professional: living and learning, using an eclectic approach. interested in everything!", + "friends_count": 48, + "location": "Melbourne Australia", + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1342409124/LogoColorNoText_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "Kelsey van Haaster", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "kelseyvh", + "notifications": null, + "url": null, + "created_at": "Sun Nov 30 00:19:02 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11eeae", + "_rev": "1-de24f1ce7dbdbd46e4143df8a2d7466d", + "oldid": "4eb38b383de67c5117000236", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“Red Stitch Theatre has put out a gorgeous book celebrating 10 years on stage. It’s a bit brills. Pic spread in today’s paper. @RedStitch”", + "created_at": "Fri Nov 04 06:52:59 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.99205613, + -36.20504218 + ] + }, + "id": 132349603646406660, + "entities": { + "user_mentions": [ + { + "indices": [ + 127, + 137 + ], + "id": 21455389, + "id_str": "21455389", + "screen_name": "redstitch", + "name": "Red Stitch" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349603646406656", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.20504218, + 146.99205613 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1497939940/image_normal.jpg", + "profile_sidebar_fill_color": "0cf0e5", + "id": 34874466, + "profile_text_color": "54077a", + "followers_count": 109, + "profile_sidebar_border_color": "b366d9", + "id_str": "34874466", + "profile_background_color": "642d8b", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1172, + "description": "Theatre Go-er and Do-er!, Drama Teacher, Part Thespian, Artist, Writer, Shopper: online & in person, Music Listener, TV Watcher, Movie Fan.", + "friends_count": 165, + "location": "Albury, Australia.", + "profile_link_color": "b700ff", + "profile_image_url": "http://a2.twimg.com/profile_images/1497939940/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Karen H.", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 21, + "screen_name": "purplgrl", + "notifications": null, + "url": null, + "created_at": "Fri Apr 24 07:27:29 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e11f8e2", + "_rev": "1-2f37c165b5f891795ae3854f75d43955", + "oldid": "4eb38b3a3de67c5117000237", + "favorited": false, + "in_reply_to_user_id": 22436471, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@marvinpriest how are you? :)", + "created_at": "Fri Nov 04 06:53:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349436243345408", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132349613083607040, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 22436471, + "id_str": "22436471", + "screen_name": "marvinpriest", + "name": "marvin priest" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349436243345400, + "in_reply_to_screen_name": "marvinpriest", + "id_str": "132349613083607040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "22436471", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3310, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 154, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12071d", + "_rev": "1-f7f2ccf815aed6ffe407e3af7b522a9c", + "oldid": "4eb38b413de67c5117000238", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@Autocorrects: If Ke$ha goes on tour in the UK, does she become Ke£ha? #LOL”", + "created_at": "Fri Nov 04 06:53:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.026587, + -27.4719921 + ] + }, + "id": 132349639818100740, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 14 + ], + "id": 345811633, + "id_str": "345811633", + "screen_name": "Autocorrects", + "name": "AutoCorrects " + } + ], + "hashtags": [ + { + "indices": [ + 72, + 76 + ], + "text": "LOL" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349639818100736", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.4719921, + 153.026587 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1617485128/image_normal.jpg", + "profile_sidebar_fill_color": "000B17", + "id": 40439400, + "profile_text_color": "004358", + "followers_count": 41, + "profile_sidebar_border_color": "F7B565", + "id_str": "40439400", + "profile_background_color": "001329", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 746, + "description": "Be yourself, don't take anyone's shit, and never let them take you alive.", + "friends_count": 111, + "location": "Australia", + "profile_link_color": "448668", + "profile_image_url": "http://a2.twimg.com/profile_images/1617485128/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/333350185/x2b1ef74509fbf2926e946194050ee42.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/333350185/x2b1ef74509fbf2926e946194050ee42.jpg", + "name": "AbdulSamad Mohammed", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "AbdulsamadA", + "notifications": null, + "url": "http://www.facebook.com/abdulsamadm", + "created_at": "Sat May 16 09:40:58 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e120c6c", + "_rev": "1-b04b5049409151b853f0b12cd9f8ede3", + "oldid": "4eb38b483de67c5117000239", + "favorited": false, + "in_reply_to_user_id": 25979290, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@michaelcarew 20mm foam with black edge, no laminate. your max length is 700mm though. I was 1200mm. #justsayin", + "created_at": "Fri Nov 04 06:53:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347219444645888", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0606683, + -37.8110578 + ] + }, + "id": 132349671409582080, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 25979290, + "id_str": "25979290", + "screen_name": "michaelcarew", + "name": "Michael Carew" + } + ], + "hashtags": [ + { + "indices": [ + 101, + 111 + ], + "text": "justsayin" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132347219444645890, + "in_reply_to_screen_name": "michaelcarew", + "id_str": "132349671409582080", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8110578, + 145.0606683 + ] + }, + "in_reply_to_user_id_str": "25979290", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/85494258/61108991_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 22432747, + "profile_text_color": "666666", + "followers_count": 277, + "profile_sidebar_border_color": "181A1E", + "id_str": "22432747", + "profile_background_color": "1A1B1F", + "listed_count": 17, + "utc_offset": 36000, + "statuses_count": 3007, + "description": "Hi. I like to take photos. I like film. I like to swear. I like it wide. I use Hasselblad's Xpan and Voigtlander rangefinders. I #believeinfilm.", + "friends_count": 290, + "location": "Hawthorn, VIC, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/85494258/61108991_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/75640312/StaticTV.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/75640312/StaticTV.jpg", + "name": "Matthew Joseph", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 23, + "screen_name": "fotodudenz", + "notifications": null, + "url": "http://www.fototheque.com", + "created_at": "Mon Mar 02 01:17:42 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12109f", + "_rev": "1-d3495bc33f08073813da5e2115cca7e5", + "oldid": "4eb38b493de67c511700023a", + "favorited": false, + "in_reply_to_user_id": 273324848, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@breambucket wish I could do that är work!", + "created_at": "Fri Nov 04 06:53:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132311635581878272", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18110531, + -33.89571076 + ] + }, + "id": 132349673523523580, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 273324848, + "id_str": "273324848", + "screen_name": "breambucket", + "name": "Peter Cook" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132311635581878270, + "in_reply_to_screen_name": "breambucket", + "id_str": "132349673523523584", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89571076, + 151.18110531 + ] + }, + "in_reply_to_user_id_str": "273324848", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620143717/image_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 21841148, + "profile_text_color": "333333", + "followers_count": 105, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "21841148", + "profile_background_color": "ACDED6", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 5243, + "description": "Aussie guy who likes Mandarin Juice. Lover of Gin and a good pair of jeans.", + "friends_count": 219, + "location": "Miranda", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1620143717/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme18/bg.gif", + "name": "Ryan Matchett", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 11, + "screen_name": "ryanmatchett", + "notifications": null, + "url": null, + "created_at": "Wed Feb 25 05:49:27 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12164c", + "_rev": "1-aa197a4562d13485b63e09f080268b8a", + "oldid": "4eb38b533de67c511700023b", + "favorited": false, + "in_reply_to_user_id": 263584533, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@quarter_window will need work......car is fucked!", + "created_at": "Fri Nov 04 06:53:25 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349226050007040", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.25282698, + -33.94691991 + ] + }, + "id": 132349715751776260, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 263584533, + "id_str": "263584533", + "screen_name": "quarter_window", + "name": "Bill Chant" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349226050007040, + "in_reply_to_screen_name": "quarter_window", + "id_str": "132349715751776256", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.94691991, + 151.25282698 + ] + }, + "in_reply_to_user_id_str": "263584533", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618229695/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 130417544, + "profile_text_color": "333333", + "followers_count": 3277, + "profile_sidebar_border_color": "C0DEED", + "id_str": "130417544", + "profile_background_color": "C0DEED", + "listed_count": 84, + "utc_offset": -36000, + "statuses_count": 4804, + "description": "Cook,Father,motorbike rider,who should not be allowed to tweet !", + "friends_count": 1021, + "location": "Paddington, Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1618229695/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Four in Hand", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 49, + "screen_name": "FourinHand", + "notifications": null, + "url": "http://www.fourinhand.com.au", + "created_at": "Wed Apr 07 06:55:01 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e121f41", + "_rev": "1-92fe4feab0cac2f53cd068836a16a440", + "oldid": "4eb38b543de67c511700023c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Flippn train tweet fail!!", + "created_at": "Fri Nov 04 06:53:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.09334268, + -27.60746722 + ] + }, + "id": 132349720088674300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349720088674304", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.60746722, + 153.09334268 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14752906, + "profile_text_color": "333333", + "followers_count": 418, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14752906", + "profile_background_color": "022330", + "listed_count": 45, + "utc_offset": 36000, + "statuses_count": 4840, + "description": "Umbraco HQ staffer.\r\nUmbraco Core Team.\r\nOfficial Umbraco Trainer.\r\n", + "friends_count": 168, + "location": "Gold Coast", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Peter Gregory", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "pgregorynz", + "notifications": null, + "url": "http://www.umbraco.org", + "created_at": "Tue May 13 01:37:58 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12201d", + "_rev": "1-ab2c3248f21ff4ce9179636a1e9a0c0a", + "oldid": "4eb38b553de67c511700023d", + "contributors": null, + "truncated": false, + "text": "I'm at Genuine Taiwan Pearl Bubble Milk Tea (Grote Street, Adelaide) http://t.co/TEZNUftk", + "in_reply_to_status_id": null, + "id": 132349724622716930, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 69, + 89 + ], + "url": "http://t.co/TEZNUftk", + "expanded_url": "http://4sq.com/u2Ex3i", + "display_url": "4sq.com/u2Ex3i" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.596006, + -34.929035 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349724622716928", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1543920932/266426_10150228669629296_563344295_7410769_6481587_o_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 18447912, + "profile_text_color": "666666", + "followers_count": 164, + "profile_sidebar_border_color": "181A1E", + "id_str": "18447912", + "profile_background_color": "000000", + "listed_count": 16, + "utc_offset": 34200, + "statuses_count": 7970, + "description": "Bri-han-nah. Calm. Independent. Observant. Quiet. Sometimes stubborn. Sensible. Introverted. Witty. Geeky. Random. Happiest when behind a camera.", + "friends_count": 248, + "location": "Adelaide, South Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1543920932/266426_10150228669629296_563344295_7410769_6481587_o_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/81111620/hg01.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/81111620/hg01.png", + "name": "Bri", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 210, + "screen_name": "brihannah", + "notifications": null, + "url": "http://www.flickr.com/photos/jossergirl1/", + "created_at": "Mon Dec 29 11:20:10 +0000 2008", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.929035, + 138.596006 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:53:27 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1229e0", + "_rev": "1-399c8f9418603222362e405b148fbcc3", + "oldid": "4eb38b553de67c511700023e", + "favorited": false, + "in_reply_to_user_id": 110968034, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@Hillermalaka hallå Nu blev jag nyfiken!!! #nickenyfiken", + "created_at": "Fri Nov 04 06:53:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "131876019455004672", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1939153, + -33.8844432 + ] + }, + "id": 132349725344149500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 110968034, + "id_str": "110968034", + "screen_name": "Hillermalaka", + "name": "Maria " + } + ], + "hashtags": [ + { + "indices": [ + 43, + 56 + ], + "text": "nickenyfiken" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 131876019455004670, + "in_reply_to_screen_name": "Hillermalaka", + "id_str": "132349725344149504", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8844432, + 151.1939153 + ] + }, + "in_reply_to_user_id_str": "110968034", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1579564104/298791_10150846794110444_649310443_21111605_1673590731_n_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 45364382, + "profile_text_color": "333333", + "followers_count": 54, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "45364382", + "profile_background_color": "ACDED6", + "listed_count": 0, + "utc_offset": 3600, + "statuses_count": 4009, + "description": "I had the time of my life fighting dragons with you", + "friends_count": 57, + "location": "Sydney, Australia", + "profile_link_color": "038543", + "profile_image_url": "http://a0.twimg.com/profile_images/1579564104/298791_10150846794110444_649310443_21111605_1673590731_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/317585400/Charleston.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/317585400/Charleston.jpg", + "name": "Fredrika Sjöö", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 177, + "screen_name": "fredrikasjoo", + "notifications": null, + "url": null, + "created_at": "Sun Jun 07 16:07:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Stockholm", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e122ddb", + "_rev": "1-d08e54542c0d38edd1341f54a098aeff", + "oldid": "4eb38b623de67c511700023f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Me: Asphinctersayswhat @JasminRockes: ......what?", + "created_at": "Fri Nov 04 06:53:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20640676, + -33.87608446 + ] + }, + "id": 132349780104974340, + "entities": { + "user_mentions": [ + { + "indices": [ + 23, + 36 + ], + "id": 27353769, + "id_str": "27353769", + "screen_name": "JasminRockes", + "name": "Jasmin Rockes" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349780104974337", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87608446, + 151.20640676 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1606151878/ltmmpzawbq1_normal.png", + "profile_sidebar_fill_color": "92c2fc", + "id": 24837956, + "profile_text_color": "000000", + "followers_count": 387, + "profile_sidebar_border_color": "ffffff", + "id_str": "24837956", + "profile_background_color": "c2c0c2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 29684, + "description": "Nineteen ||♥ Top Gear, Fleetwood Mac, Finn Brothers.|| I complain a lot, I swear constantly and my mind lives in the gutter.", + "friends_count": 82, + "location": "Sydney, Australia", + "profile_link_color": "9100d9", + "profile_image_url": "http://a3.twimg.com/profile_images/1606151878/ltmmpzawbq1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/116691353/michael_evers.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/116691353/michael_evers.jpg", + "name": "Joanna", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 28, + "screen_name": "goldddustwoman", + "notifications": null, + "url": "http://goldddustwoman.tumblr.com", + "created_at": "Tue Mar 17 04:16:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e123560", + "_rev": "1-d07b8cb57acd6d99039fd46a15dbd004", + "oldid": "4eb38b643de67c5117000240", + "favorited": false, + "in_reply_to_user_id": 17227586, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Anna_63 just!", + "created_at": "Fri Nov 04 06:53:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349181053509632", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.25282698, + -33.94691991 + ] + }, + "id": 132349788556505090, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 17227586, + "id_str": "17227586", + "screen_name": "Anna_63", + "name": "Anna_63" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349181053509630, + "in_reply_to_screen_name": "Anna_63", + "id_str": "132349788556505088", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.94691991, + 151.25282698 + ] + }, + "in_reply_to_user_id_str": "17227586", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618229695/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 130417544, + "profile_text_color": "333333", + "followers_count": 3277, + "profile_sidebar_border_color": "C0DEED", + "id_str": "130417544", + "profile_background_color": "C0DEED", + "listed_count": 84, + "utc_offset": -36000, + "statuses_count": 4805, + "description": "Cook,Father,motorbike rider,who should not be allowed to tweet !", + "friends_count": 1021, + "location": "Paddington, Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1618229695/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Four in Hand", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 49, + "screen_name": "FourinHand", + "notifications": null, + "url": "http://www.fourinhand.com.au", + "created_at": "Wed Apr 07 06:55:01 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e123ef2", + "_rev": "1-1cf277881bbb59dc5e1ed5a911fd2801", + "oldid": "4eb38b663de67c5117000241", + "contributors": null, + "truncated": false, + "text": "I'm at Club Salamanca (13 Gladstone St, Salamanca Mews, Hobart) http://t.co/ZrAbS6Az", + "in_reply_to_status_id": null, + "id": 132349797083516930, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 64, + 84 + ], + "url": "http://t.co/ZrAbS6Az", + "expanded_url": "http://4sq.com/tA0tAo", + "display_url": "4sq.com/tA0tAo" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 147.33003974, + -42.88713556 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349797083516928", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1135723162/5147_216831930103_684595103_7342102_1564022_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 15059082, + "profile_text_color": "333333", + "followers_count": 191, + "profile_sidebar_border_color": "eeeeee", + "id_str": "15059082", + "profile_background_color": "131516", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 3473, + "description": "Stephen Reid", + "friends_count": 521, + "location": "Tasmania, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1135723162/5147_216831930103_684595103_7342102_1564022_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Stephen Reid", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "pokeycam", + "notifications": null, + "url": "http://www.stephen.com.au", + "created_at": "Mon Jun 09 14:30:32 +0000 2008", + "contributors_enabled": false, + "time_zone": "Hobart", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -42.88713556, + 147.33003974 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:53:45 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e124690", + "_rev": "1-a2bd70bced1699867f0066d80e18b7d9", + "oldid": "4eb38b663de67c5117000242", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "AHAHAHAHAH", + "created_at": "Fri Nov 04 06:53:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20638742, + -33.87613927 + ] + }, + "id": 132349797528109060, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349797528109057", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87613927, + 151.20638742 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1606151878/ltmmpzawbq1_normal.png", + "profile_sidebar_fill_color": "92c2fc", + "id": 24837956, + "profile_text_color": "000000", + "followers_count": 387, + "profile_sidebar_border_color": "ffffff", + "id_str": "24837956", + "profile_background_color": "c2c0c2", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 29685, + "description": "Nineteen ||♥ Top Gear, Fleetwood Mac, Finn Brothers.|| I complain a lot, I swear constantly and my mind lives in the gutter.", + "friends_count": 82, + "location": "Sydney, Australia", + "profile_link_color": "9100d9", + "profile_image_url": "http://a3.twimg.com/profile_images/1606151878/ltmmpzawbq1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/116691353/michael_evers.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/116691353/michael_evers.jpg", + "name": "Joanna", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 28, + "screen_name": "goldddustwoman", + "notifications": null, + "url": "http://goldddustwoman.tumblr.com", + "created_at": "Tue Mar 17 04:16:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e124c1e", + "_rev": "1-3b58599558a33080b39d2d75de5704e1", + "oldid": "4eb38b6d3de67c5117000243", + "contributors": null, + "truncated": false, + "text": "Skype for Grandparents http://t.co/l3jgw4f8", + "in_reply_to_status_id": null, + "id": 132349824807870460, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 23, + 43 + ], + "url": "http://t.co/l3jgw4f8", + "expanded_url": "http://bit.ly/tehY8Q", + "display_url": "bit.ly/tehY8Q" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.014695, + -27.481089 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132349824807870465", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1561527702/Logo_Scaled_Twitter_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 89156494, + "profile_text_color": "333333", + "followers_count": 532, + "profile_sidebar_border_color": "C0DEED", + "id_str": "89156494", + "profile_background_color": "ff1271", + "listed_count": 34, + "utc_offset": 36000, + "statuses_count": 467, + "description": "Only Sleep With The Best!", + "friends_count": 341, + "location": "Bris Vegas", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1561527702/Logo_Scaled_Twitter_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/81138770/BBR_logo.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/81138770/BBR_logo.JPG", + "name": "BrisbaneBackpackers ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "BrisBackpack", + "notifications": null, + "url": "http://www.brisbanebackpackers.com.au", + "created_at": "Wed Nov 11 10:38:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.481089, + 153.014695 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:53:51 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1256f9", + "_rev": "1-67fa8dd971c5fea9ddd4e0c045145805", + "oldid": "4eb38b723de67c5117000244", + "contributors": null, + "truncated": false, + "text": "3 days later..... #fail @ Mount Ridley P-12 College http://t.co/WBHwi9ke", + "in_reply_to_status_id": null, + "id": 132349847054467070, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 18, + 23 + ], + "text": "fail" + } + ], + "urls": [ + { + "indices": [ + 53, + 73 + ], + "url": "http://t.co/WBHwi9ke", + "expanded_url": "http://instagr.am/p/SprnO/", + "display_url": "instagr.am/p/SprnO/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.921703, + -37.579159 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "id_str": "132349847054467073", + "retweet_count": 0, + "in_reply_to_user_id": null, + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1142247781/safe_image.php_normal.jpeg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 15656737, + "profile_text_color": "3D1957", + "followers_count": 72, + "protected": false, + "location": "Melbourne, Australia", + "default_profile_image": false, + "id_str": "15656737", + "utc_offset": 36000, + "statuses_count": 1690, + "description": "When you think you have the answer I change the questions!", + "friends_count": 306, + "profile_link_color": "FF0000", + "profile_image_url": "http://a3.twimg.com/profile_images/1142247781/safe_image.php_normal.jpeg", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_color": "642D8B", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "screen_name": "Supersidhom", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 16, + "name": "Roger Sidhom", + "notifications": null, + "url": "http://supersidhom.blogspot.com", + "created_at": "Wed Jul 30 05:13:01 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "profile_sidebar_border_color": "65B0DA", + "default_profile": false, + "is_translator": false, + "listed_count": 3 + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.579159, + 144.921703 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:53:57 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e125c5b", + "_rev": "1-2d622040142d68c8c6cd95f3a37f5c7a", + "oldid": "4eb38b763de67c5117000245", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Jag har glömt bort hur man stavar på svenska!!! KATASTROOOOF", + "created_at": "Fri Nov 04 06:54:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.193962, + -33.8845721 + ] + }, + "id": 132349864460812290, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132349864460812288", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8845721, + 151.193962 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1579564104/298791_10150846794110444_649310443_21111605_1673590731_n_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 45364382, + "profile_text_color": "333333", + "followers_count": 54, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "45364382", + "profile_background_color": "ACDED6", + "listed_count": 0, + "utc_offset": 3600, + "statuses_count": 4010, + "description": "I had the time of my life fighting dragons with you", + "friends_count": 57, + "location": "Sydney, Australia", + "profile_link_color": "038543", + "profile_image_url": "http://a0.twimg.com/profile_images/1579564104/298791_10150846794110444_649310443_21111605_1673590731_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/317585400/Charleston.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/317585400/Charleston.jpg", + "name": "Fredrika Sjöö", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 177, + "screen_name": "fredrikasjoo", + "notifications": null, + "url": null, + "created_at": "Sun Jun 07 16:07:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Stockholm", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e125f84", + "_rev": "1-7bf34d8029c67914658a3a337b543b71", + "oldid": "4eb38b803de67c5117000246", + "favorited": false, + "in_reply_to_user_id": 324807134, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ktseys okey doke cool I can't wait loll =)", + "created_at": "Fri Nov 04 06:54:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349197025415168", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.93104423, + -33.8627401 + ] + }, + "id": 132349905208475650, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 324807134, + "id_str": "324807134", + "screen_name": "ktseys", + "name": "ksey" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349197025415170, + "in_reply_to_screen_name": "ktseys", + "id_str": "132349905208475649", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8627401, + 150.93104423 + ] + }, + "in_reply_to_user_id_str": "324807134", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1542453637/IMG_0469_normal.jpg", + "profile_sidebar_fill_color": "ff085a", + "id": 132131892, + "profile_text_color": "8fff0f", + "followers_count": 57, + "profile_sidebar_border_color": "df12ff", + "id_str": "132131892", + "profile_background_color": "ff12a0", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 153, + "description": "Every failure is a step to success...\r\n - William Wheivell", + "friends_count": 646, + "location": "Sydney ", + "profile_link_color": "08404a", + "profile_image_url": "http://a2.twimg.com/profile_images/1542453637/IMG_0469_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/279401388/IMG_1021.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/279401388/IMG_1021.jpg", + "name": "samantha marcus", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "iSamSamm", + "notifications": null, + "url": null, + "created_at": "Mon Apr 12 10:59:29 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e126acb", + "_rev": "1-3fd52ced9537995b7798cf66b6672f8b", + "oldid": "4eb38b933de67c5117000247", + "favorited": false, + "in_reply_to_user_id": 22652492, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@rendawgfmx @gopro_news not showing my boys that cause theyll want to upgrade to the new one", + "created_at": "Fri Nov 04 06:54:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132204976297607168", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.92155797, + -33.91982613 + ] + }, + "id": 132349984698925060, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 22652492, + "id_str": "22652492", + "screen_name": "rendawgfmx", + "name": "Ronnie Renner" + }, + { + "indices": [ + 12, + 23 + ], + "id": 32340023, + "id_str": "32340023", + "screen_name": "GoPro_News", + "name": "GoPro®" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132204976297607170, + "in_reply_to_screen_name": "rendawgfmx", + "id_str": "132349984698925057", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.91982613, + 150.92155797 + ] + }, + "in_reply_to_user_id_str": "22652492", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1574568423/jet_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 278668125, + "profile_text_color": "362720", + "followers_count": 5, + "profile_sidebar_border_color": "CC3366", + "id_str": "278668125", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 961, + "description": "I'm from Australia / I love the beach, my family and friends", + "friends_count": 62, + "location": "Sydney Australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1574568423/jet_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "Virginia", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 12, + "screen_name": "Ginny8768", + "notifications": null, + "url": null, + "created_at": "Thu Apr 07 18:40:47 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e127536", + "_rev": "1-d722dada2a3d013f186c13923b79aab6", + "oldid": "4eb38b963de67c5117000248", + "favorited": false, + "in_reply_to_user_id": 168493510, + "contributors": null, + "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", + "text": "@Mingsychen have fun in spore!! ", + "created_at": "Fri Nov 04 06:54:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132262129930747904", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0133, + -27.45357 + ] + }, + "id": 132349999324471300, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 168493510, + "id_str": "168493510", + "screen_name": "Mingsychen", + "name": "Mingsy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132262129930747900, + "in_reply_to_screen_name": "Mingsychen", + "id_str": "132349999324471296", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.45357, + 153.0133 + ] + }, + "in_reply_to_user_id_str": "168493510", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1597461328/5e909ce52aa742fc9c3dd8ebf3a4eafd_7_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 41036304, + "profile_text_color": "362720", + "followers_count": 97, + "profile_sidebar_border_color": "CC3366", + "id_str": "41036304", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1245, + "description": "Hello everybody", + "friends_count": 130, + "location": "Brisbane, Australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a0.twimg.com/profile_images/1597461328/5e909ce52aa742fc9c3dd8ebf3a4eafd_7_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "yen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "huiyen89", + "notifications": null, + "url": null, + "created_at": "Tue May 19 02:38:21 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e128274", + "_rev": "1-5bc6e924df512d11424c5e6be0250f96", + "oldid": "4eb38b9b3de67c5117000249", + "contributors": null, + "truncated": false, + "text": "数日前から無性にスンドゥブが食べたくて、近所の韓国料理店が開くのを待ってやってきました。美味い!! http://t.co/j9AIxtwm", + "in_reply_to_status_id": null, + "id": 132350017552916480, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 50, + 70 + ], + "url": "http://t.co/j9AIxtwm", + "expanded_url": "http://lockerz.com/s/153090544", + "display_url": "lockerz.com/s/153090544" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0578, + -37.88512 + ] + }, + "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350017552916480", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1342904086/419mayusan_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 144859923, + "profile_text_color": "3E4415", + "followers_count": 112, + "profile_sidebar_border_color": "829D5E", + "id_str": "144859923", + "profile_background_color": "352726", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 1172, + "description": "Fate brought me to Melbourne ten years ago. at the time wasn't planning to stay for so long but became a happy camper. I am a fan of 落語 (Rakugo) \r\n\r\n", + "friends_count": 252, + "location": "Melbourne メルボルン", + "profile_link_color": "D02B55", + "profile_image_url": "http://a3.twimg.com/profile_images/1342904086/419mayusan_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Mayumi Cherrytree", + "lang": "ja", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "419mayusan", + "notifications": null, + "url": null, + "created_at": "Mon May 17 14:00:25 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.88512, + 145.0578 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:54:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e128930", + "_rev": "1-5ffccca1e976bc415e416d58acb20e89", + "oldid": "4eb38b9f3de67c511700024a", + "favorited": false, + "in_reply_to_user_id": 30558337, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@muudge oi oi oi oi", + "created_at": "Fri Nov 04 06:54:42 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 148.14692872, + -33.15947163 + ] + }, + "id": 132350035747803140, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 30558337, + "id_str": "30558337", + "screen_name": "muudge", + "name": "James Fucking Mudge" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "muudge", + "id_str": "132350035747803138", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.15947163, + 148.14692872 + ] + }, + "in_reply_to_user_id_str": "30558337", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1487669803/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 352148780, + "profile_text_color": "333333", + "followers_count": 48, + "profile_sidebar_border_color": "C0DEED", + "id_str": "352148780", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 807, + "description": "touch daddys dick ", + "friends_count": 55, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1487669803/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Meg Ryan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "MeggyR_", + "notifications": null, + "url": null, + "created_at": "Wed Aug 10 06:29:02 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e128f03", + "_rev": "1-72cd72a55a71efcb6d8ac09a51d17e92", + "oldid": "4eb38ba03de67c511700024b", + "contributors": null, + "truncated": false, + "text": "The very best way to start your weekend (@ Old Shanghai Massage House) http://t.co/5JEDssnw", + "in_reply_to_status_id": null, + "id": 132350040948740100, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/5JEDssnw", + "expanded_url": "http://4sq.com/uSiP3Y", + "display_url": "4sq.com/uSiP3Y" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.232933, + -33.889138 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350040948740096", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1561937047/kim_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 14062851, + "profile_text_color": "3C3940", + "followers_count": 2834, + "profile_sidebar_border_color": "c55edc", + "id_str": "14062851", + "profile_background_color": "0083b9", + "listed_count": 129, + "utc_offset": 36000, + "statuses_count": 7476, + "description": "During the day I play at Klick Communications (@klickPR). I get excited about travel + tech + PR + social media. ", + "friends_count": 2234, + "location": "sydney, australia", + "profile_link_color": "d119d1", + "profile_image_url": "http://a0.twimg.com/profile_images/1561937047/kim_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/5308842/photo.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/5308842/photo.jpg", + "name": "Kim McKay", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 67, + "screen_name": "redshoes", + "notifications": null, + "url": "http://klick.com.au", + "created_at": "Sat Mar 01 00:24:33 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.889138, + 151.232933 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:54:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e129ddc", + "_rev": "1-5da3c645e2ed998089e5fd5ca02c8840", + "oldid": "4eb38ba13de67c511700024c", + "contributors": null, + "truncated": false, + "text": "“@trudyS: Watch this great video by @rhysatwork 'Let's Tweet Again' http://t.co/fCnLq8Z3 Nice work Rhys :-)” thanks Trudy #tweetmyworld", + "in_reply_to_status_id": null, + "id": 132350042978779140, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 8 + ], + "id": 14904809, + "id_str": "14904809", + "screen_name": "trudyS", + "name": "Trudy Stoddard" + }, + { + "indices": [ + 36, + 47 + ], + "id": 14076230, + "id_str": "14076230", + "screen_name": "rhysatwork", + "name": "Rhys Moult" + } + ], + "hashtags": [ + { + "indices": [ + 125, + 138 + ], + "text": "tweetmyworld" + } + ], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/fCnLq8Z3", + "expanded_url": "http://youtu.be/c--GAAD0ubs", + "display_url": "youtu.be/c--GAAD0ubs" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.50725389, + -34.90411786 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350042978779136", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1581455563/IMG_3102_1__normal.JPG", + "profile_sidebar_fill_color": "a3c35d", + "id": 14076230, + "profile_text_color": "000000", + "followers_count": 794, + "profile_sidebar_border_color": "0a0a09", + "id_str": "14076230", + "profile_background_color": "121111", + "listed_count": 74, + "utc_offset": 34200, + "statuses_count": 4805, + "description": "eBusiness Advisor, online communications advocate and student. Creating, sharing and curating media. also e-learning, websites and business use of online tools", + "friends_count": 639, + "location": "Adelaide, Australia", + "profile_link_color": "3433e6", + "profile_image_url": "http://a0.twimg.com/profile_images/1581455563/IMG_3102_1__normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/23389237/we-learnlogoemail.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/23389237/we-learnlogoemail.png", + "name": "Rhys Moult", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 41, + "screen_name": "rhysatwork", + "notifications": null, + "url": "http://we-learn.com.au", + "created_at": "Tue Mar 04 04:03:39 +0000 2008", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.90411786, + 138.50725389 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:54:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e12a6d4", + "_rev": "1-3ab3e93cd41939cd14d148ddf714f85c", + "oldid": "4eb38ba83de67c511700024d", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Emang. Haha.. RT @IndhiraAgung: Hahaha,, iiih, PPnya kakak yg baru bagus (latarnya aja) \\(˘̩̩̩▽˘̩̩̩)", + "created_at": "Fri Nov 04 06:54:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20441901, + -33.88620477 + ] + }, + "id": 132350074784198660, + "entities": { + "user_mentions": [ + { + "indices": [ + 17, + 30 + ], + "id": 101955558, + "id_str": "101955558", + "screen_name": "IndhiraAgung", + "name": "Arya Putri Agung .I." + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132350074784198656", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88620477, + 151.20441901 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 77386228, + "profile_text_color": "333333", + "followers_count": 229, + "profile_sidebar_border_color": "C0DEED", + "id_str": "77386228", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 14199, + "description": "Football is my life; Internetworking is my world; I am a big fan of @Kaka & Steve Jobs!", + "friends_count": 204, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1577619831/Twitter_Avatar_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/128619184/Sydney.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/128619184/Sydney.jpg", + "name": "Agung Semarajaya", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 30, + "screen_name": "agungsemarajaya", + "notifications": null, + "url": "http://www.facebook.com/agungsemarajaya", + "created_at": "Sat Sep 26 03:30:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12b2c4", + "_rev": "1-b4b118b0319028503aa94dbaad9c7af9", + "oldid": "4eb38ba93de67c511700024e", + "favorited": false, + "in_reply_to_user_id": 41390227, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Missbutterfly76 photos please!", + "created_at": "Fri Nov 04 06:54:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132332498989486080", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.11465996, + -33.7781673 + ] + }, + "id": 132350078273851400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 41390227, + "id_str": "41390227", + "screen_name": "Missbutterfly76", + "name": "Samala" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132332498989486080, + "in_reply_to_screen_name": "Missbutterfly76", + "id_str": "132350078273851393", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.7781673, + 151.11465996 + ] + }, + "in_reply_to_user_id_str": "41390227", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1395032465/14-06-2011_12-18-34_PM_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 19047322, + "profile_text_color": "666666", + "followers_count": 92, + "profile_sidebar_border_color": "181A1E", + "id_str": "19047322", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1992, + "description": "Product Exec, Camping Enthusiast, Lover of fitness and martial arts", + "friends_count": 103, + "location": "Central Coast, NSW", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1395032465/14-06-2011_12-18-34_PM_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Roy Haller", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "royhaller", + "notifications": null, + "url": "http://hallertravels.com", + "created_at": "Fri Jan 16 00:33:27 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12bbfb", + "_rev": "1-480bc28e351c4d5c36f91f5a1acca66d", + "oldid": "4eb38baa3de67c511700024f", + "contributors": null, + "truncated": false, + "text": "I'm at Putt Putt (661 Victoria Rd, Wharf Rd, Ermimgton) http://t.co/zctrEed7", + "in_reply_to_status_id": null, + "id": 132350081562189820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 56, + 76 + ], + "url": "http://t.co/zctrEed7", + "expanded_url": "http://4sq.com/ulfYIB", + "display_url": "4sq.com/ulfYIB" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.06990278, + -33.8080045 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350081562189824", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1364307780/my_love_normal.jpg", + "profile_sidebar_fill_color": "0d0806", + "id": 128201749, + "profile_text_color": "332d23", + "followers_count": 62, + "profile_sidebar_border_color": "4f606e", + "id_str": "128201749", + "profile_background_color": "000000", + "listed_count": 1, + "utc_offset": -36000, + "statuses_count": 424, + "description": "everything is gonna be fine..\r\njust do what you can, and God will do what you can't :)\r\n", + "friends_count": 65, + "location": "sydney", + "profile_link_color": "544c45", + "profile_image_url": "http://a2.twimg.com/profile_images/1364307780/my_love_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/166607499/xd658bd415184c18df7953080da0e8a3.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/166607499/xd658bd415184c18df7953080da0e8a3.jpg", + "name": "farhaddaud", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 43, + "screen_name": "aban_abadi", + "notifications": null, + "url": "http://farhaddaud.blogspot.com/", + "created_at": "Wed Mar 31 12:12:56 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8080045, + 151.06990278 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:54:53 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e12c11c", + "_rev": "1-ac335ea6cddee8b282f75595456e7111", + "oldid": "4eb38bae3de67c5117000250", + "contributors": null, + "truncated": false, + "text": "Starters: Teriyaki prawns with a Thai salad #NomNomNom http://t.co/CllXmSKy", + "in_reply_to_status_id": null, + "id": 132350094417731580, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYztawCIAAFKoc.jpg", + "expanded_url": "http://twitter.com/saraboughton/status/132350094417731585/photo/1", + "display_url": "pic.twitter.com/CllXmSKy", + "url": "http://t.co/CllXmSKy", + "sizes": { + "large": { + "h": 1024, + "w": 768, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132350094421925888", + "indices": [ + 55, + 75 + ], + "type": "photo", + "id": 132350094421925890, + "media_url": "http://p.twimg.com/AdYztawCIAAFKoc.jpg" + } + ], + "hashtags": [ + { + "indices": [ + 44, + 54 + ], + "text": "NomNomNom" + } + ], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20988142, + -33.86264711 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350094417731585", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1268692541/Picture_79_normal.jpg", + "profile_sidebar_fill_color": "e1eda1", + "id": 26588291, + "profile_text_color": "634047", + "followers_count": 322, + "profile_sidebar_border_color": "ac061e", + "id_str": "26588291", + "profile_background_color": "E1EDA1", + "listed_count": 5, + "utc_offset": 0, + "statuses_count": 3141, + "description": "illustrator / PR / writer / blogger / Sydney-sider", + "friends_count": 891, + "location": "Sydney, Australia", + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1268692541/Picture_79_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/61345700/blah1.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/61345700/blah1.jpg", + "name": "Sara Boughton", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "saraboughton", + "notifications": null, + "url": null, + "created_at": "Wed Mar 25 20:53:13 +0000 2009", + "contributors_enabled": false, + "time_zone": "London", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86264711, + 151.20988142 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:54:57 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e12c6ed", + "_rev": "1-b3e181ec967096089788f3936deef8cb", + "oldid": "4eb38bae3de67c5117000251", + "favorited": false, + "in_reply_to_user_id": 240652887, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LaYdI_SwHaRgg lok", + "created_at": "Fri Nov 04 06:54:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349499606700032", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82629934, + -33.75777894 + ] + }, + "id": 132350100059078660, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 240652887, + "id_str": "240652887", + "screen_name": "LaYdI_SwHaRgg", + "name": "Horlaryhermie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349499606700030, + "in_reply_to_screen_name": "LaYdI_SwHaRgg", + "id_str": "132350100059078656", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75777894, + 150.82629934 + ] + }, + "in_reply_to_user_id_str": "240652887", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9272, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12d411", + "_rev": "1-96f026ca787ea1f8eedacf3d0307a128", + "oldid": "4eb38bb43de67c5117000252", + "contributors": null, + "truncated": false, + "text": "I'm at Pocket (13 Burton St., at Crown St., Darlinghurst) http://t.co/eEf5GVOc", + "in_reply_to_status_id": null, + "id": 132350122607652860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 58, + 78 + ], + "url": "http://t.co/eEf5GVOc", + "expanded_url": "http://4sq.com/tilhtr", + "display_url": "4sq.com/tilhtr" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2153, + -33.878549 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350122607652864", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1552948253/5340114_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 24669894, + "profile_text_color": "333333", + "followers_count": 408, + "profile_sidebar_border_color": "eeeeee", + "id_str": "24669894", + "profile_background_color": "f9eec6", + "listed_count": 31, + "utc_offset": 36000, + "statuses_count": 7622, + "description": "Sydney Photographer. BA Internet Communications. Digital Marketer. Girlfriend. Flatmate. Tweets about anything and nothing. Meow.", + "friends_count": 277, + "location": "(Inner West) Sydney, AU", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1552948253/5340114_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/242481000/mosaic1.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/242481000/mosaic1.jpg", + "name": "Mixy Lorenzo", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 164, + "screen_name": "MXYZ_", + "notifications": null, + "url": "http://paulalay.com", + "created_at": "Mon Mar 16 09:21:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.878549, + 151.2153 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:55:02 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e12dd33", + "_rev": "1-a570e6bfcb16c3c3c7118de3fc3d760f", + "oldid": "4eb38bb63de67c5117000253", + "contributors": null, + "truncated": false, + "text": "Chilling at the beach :) summer has came early! http://t.co/xDnPOji8", + "in_reply_to_status_id": null, + "id": 132350127963774980, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYzvXuCIAEcq5f.jpg", + "expanded_url": "http://twitter.com/dave9993/status/132350127963774976/photo/1", + "display_url": "pic.twitter.com/xDnPOji8", + "url": "http://t.co/xDnPOji8", + "sizes": { + "large": { + "h": 765, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 254, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 448, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132350127967969281", + "indices": [ + 48, + 68 + ], + "type": "photo", + "id": 132350127967969280, + "media_url": "http://p.twimg.com/AdYzvXuCIAEcq5f.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.19504514, + -41.15236574 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350127963774976", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1587534938/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 34234240, + "profile_text_color": "333333", + "followers_count": 101, + "profile_sidebar_border_color": "eeeeee", + "id_str": "34234240", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 4354, + "description": "Didge me up ", + "friends_count": 107, + "location": "Ulverstone, Tasmania", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1587534938/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/301457178/916331-wool-knitting-texture-background.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/301457178/916331-wool-knitting-texture-background.jpg", + "name": "Dave Greenwood", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 54, + "screen_name": "dave9993", + "notifications": null, + "url": "http://www.facebook.com/dave9993", + "created_at": "Wed Apr 22 10:07:34 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hobart", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -41.15236574, + 146.19504514 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:55:04 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e12dd7c", + "_rev": "1-df3318a635105121ae4e4f61fb5b7062", + "oldid": "4eb38bb63de67c5117000254", + "contributors": null, + "truncated": false, + "text": "Where is Tom Price on the map? Play the game at http://t.co/sSziE4UW #Tom Price", + "in_reply_to_status_id": null, + "id": 132350133558976510, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 69, + 73 + ], + "text": "Tom" + } + ], + "urls": [ + { + "indices": [ + 48, + 68 + ], + "url": "http://t.co/sSziE4UW", + "expanded_url": "http://www.map-game.com/tom-price", + "display_url": "map-game.com/tom-price" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 117.795, + -22.6941 + ] + }, + "source": "<a href=\"http://www.map-game.com\" rel=\"nofollow\">MapGame</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350133558976512", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1192899672/mapgame-logo_normal.png", + "profile_sidebar_fill_color": "efefef", + "id": 163590921, + "profile_text_color": "333333", + "followers_count": 582, + "profile_sidebar_border_color": "eeeeee", + "id_str": "163590921", + "profile_background_color": "131516", + "listed_count": 16, + "utc_offset": -10800, + "statuses_count": 303953, + "description": "The Map Game is a free geography quiz based on Google Maps. No flash, no need to register, just start finding places on a blind map!", + "friends_count": 311, + "location": "", + "profile_link_color": "386b1e", + "profile_image_url": "http://a1.twimg.com/profile_images/1192899672/mapgame-logo_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/184262168/green_background_image.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/184262168/green_background_image.jpg", + "name": "MapGame", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "Map_Game", + "notifications": null, + "url": "http://www.map-game.com", + "created_at": "Tue Jul 06 20:21:41 +0000 2010", + "contributors_enabled": false, + "time_zone": "Greenland", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -22.6941, + 117.795 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:55:05 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e12e139", + "_rev": "1-80b18ee0fae06b0aaf1cafa9cb1b2511", + "oldid": "4eb38bbb3de67c5117000255", + "contributors": null, + "truncated": false, + "text": "On the bus picking boogers, then wiping them under the seat http://t.co/7hoh45Pk", + "in_reply_to_status_id": null, + "id": 132350149824479230, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYzwpKCAAIK07k.jpg", + "expanded_url": "http://twitter.com/BrunoBBouchet/status/132350149824479232/photo/1", + "display_url": "pic.twitter.com/7hoh45Pk", + "url": "http://t.co/7hoh45Pk", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132350149828673538", + "indices": [ + 60, + 80 + ], + "type": "photo", + "id": 132350149828673540, + "media_url": "http://p.twimg.com/AdYzwpKCAAIK07k.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.15507857, + -33.88772762 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350149824479232", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572195831/IMG_3716_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 204483270, + "profile_text_color": "333333", + "followers_count": 1448, + "profile_sidebar_border_color": "C0DEED", + "id_str": "204483270", + "profile_background_color": "C0DEED", + "listed_count": 14, + "utc_offset": 36000, + "statuses_count": 2184, + "description": "Award-winning Producer with The Kyle & Jackie O Show / Arrogant Frenchman / Once got humped by a Labrador on a beach / Worked front counter at McDonalds", + "friends_count": 1393, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1572195831/IMG_3716_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/282633019/Untitled-1.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/282633019/Untitled-1.jpg", + "name": "Bruno Bouchet", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "BrunoBBouchet", + "notifications": null, + "url": "http://www.brunolovesboobs.com", + "created_at": "Mon Oct 18 20:09:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.88772762, + 151.15507857 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": true, + "created_at": "Fri Nov 04 06:55:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e12e677", + "_rev": "1-9fa96fdeeafb620b2e219623884ae302", + "oldid": "4eb38bc23de67c5117000256", + "favorited": false, + "in_reply_to_user_id": 765786, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@oysta N64 had some great games. Starfox, Golden Eye, Gretzky Hockey, Mariokart, Perfect Dark. #sigh #nostalgia", + "created_at": "Fri Nov 04 06:55:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345004604657665", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20427531, + -33.88652676 + ] + }, + "id": 132350181747331070, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 765786, + "id_str": "765786", + "screen_name": "oysta", + "name": "Christopher Owen" + } + ], + "hashtags": [ + { + "indices": [ + 95, + 100 + ], + "text": "sigh" + }, + { + "indices": [ + 101, + 111 + ], + "text": "nostalgia" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132345004604657660, + "in_reply_to_screen_name": "oysta", + "id_str": "132350181747331072", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88652676, + 151.20427531 + ] + }, + "in_reply_to_user_id_str": "765786", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1274603784/sean_normal.jpg", + "profile_sidebar_fill_color": "e7f29c", + "id": 15274097, + "profile_text_color": "333333", + "followers_count": 246, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "15274097", + "profile_background_color": "435275", + "listed_count": 16, + "utc_offset": 36000, + "statuses_count": 5428, + "description": "Frontend dev, husband, gamer and dad", + "friends_count": 225, + "location": "Sydney. Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1274603784/sean_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/6244262/sc_twitter.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/6244262/sc_twitter.png", + "name": "Sean Curtis", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2381, + "screen_name": "seancurtis", + "notifications": null, + "url": null, + "created_at": "Sun Jun 29 23:06:50 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12f3cd", + "_rev": "1-947840469ef3a724a21d5e3f96b35aa7", + "oldid": "4eb38bc23de67c5117000257", + "favorited": false, + "in_reply_to_user_id": 134747073, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@GisckaSoemitro no, sushi tei :( go to Indonesia for sushi tei no, for you yes haha. Expensive sushi and ticket? Lebih Baik gw makan lemper", + "created_at": "Fri Nov 04 06:55:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349018046074880", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19328478, + -33.93334629 + ] + }, + "id": 132350182653296640, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 134747073, + "id_str": "134747073", + "screen_name": "GisckaSoemitro", + "name": "Shara S. Cathlia" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349018046074880, + "in_reply_to_screen_name": "GisckaSoemitro", + "id_str": "132350182653296641", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93334629, + 151.19328478 + ] + }, + "in_reply_to_user_id_str": "134747073", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 209302946, + "profile_text_color": "666666", + "followers_count": 16, + "profile_sidebar_border_color": "181A1E", + "id_str": "209302946", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 227, + "description": "love many, trust a few", + "friends_count": 14, + "location": "Sydney, australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "T. Emerald M. Windra", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "emeraldkta", + "notifications": null, + "url": null, + "created_at": "Thu Oct 28 22:59:24 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e12fd58", + "_rev": "1-dacfc523d43f3c294568f2b7cf3df164", + "oldid": "4eb38bce3de67c5117000258", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "No respect. Little potty mouth slut brats. #growup this is how chavz are made", + "created_at": "Fri Nov 04 06:55:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.10131716, + -27.62099174 + ] + }, + "id": 132350233911902200, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 43, + 50 + ], + "text": "growup" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132350233911902208", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.62099174, + 153.10131716 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14752906, + "profile_text_color": "333333", + "followers_count": 418, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14752906", + "profile_background_color": "022330", + "listed_count": 45, + "utc_offset": 36000, + "statuses_count": 4841, + "description": "Umbraco HQ staffer.\r\nUmbraco Core Team.\r\nOfficial Umbraco Trainer.\r\n", + "friends_count": 168, + "location": "Gold Coast", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1443164463/bobbles_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Peter Gregory", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "pgregorynz", + "notifications": null, + "url": "http://www.umbraco.org", + "created_at": "Tue May 13 01:37:58 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e130b67", + "_rev": "1-fe20897beedcafa0abc1ceeb2f5da3d9", + "oldid": "4eb38bd13de67c5117000259", + "contributors": null, + "truncated": false, + "text": "I'm at The Local Taphouse (122 Flinders St., at South Dowling St., Darlinghurst) http://t.co/t1KDqvye", + "in_reply_to_status_id": null, + "id": 132350246444478460, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 81, + 101 + ], + "url": "http://t.co/t1KDqvye", + "expanded_url": "http://4sq.com/u2CCqG", + "display_url": "4sq.com/u2CCqG" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.218022, + -33.884665 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350246444478464", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1206502190/25803_358081346662_619541662_4818744_5193106_n_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 24136502, + "profile_text_color": "3D1957", + "followers_count": 1058, + "profile_sidebar_border_color": "65B0DA", + "id_str": "24136502", + "profile_background_color": "642D8B", + "listed_count": 91, + "utc_offset": 36000, + "statuses_count": 63605, + "description": "'the average human is mad and I am proud to consider myself well above average...' - ralph lazar & lisa swerling", + "friends_count": 1104, + "location": "Sydney, Australia", + "profile_link_color": "bf0a0d", + "profile_image_url": "http://a3.twimg.com/profile_images/1206502190/25803_358081346662_619541662_4818744_5193106_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/59057616/PolTemi.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/59057616/PolTemi.jpg", + "name": "ChelleC", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "Rellarc79", + "notifications": null, + "url": null, + "created_at": "Fri Mar 13 05:58:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.884665, + 151.218022 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:55:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e130b81", + "_rev": "1-8d3e35f451e306183113dea9d6fab1c5", + "oldid": "4eb38bd13de67c511700025a", + "contributors": null, + "truncated": false, + "text": "Also replacing the tile I smashed when I fell the other weekend http://t.co/BY3TcpPt", + "in_reply_to_status_id": null, + "id": 132350244930322430, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdYz2LdCAAAIxPr.jpg", + "expanded_url": "http://twitter.com/fictillius/status/132350244930322432/photo/1", + "display_url": "pic.twitter.com/BY3TcpPt", + "url": "http://t.co/BY3TcpPt", + "sizes": { + "large": { + "h": 816, + "w": 612, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132350244934516736", + "indices": [ + 64, + 84 + ], + "type": "photo", + "id": 132350244934516740, + "media_url": "http://p.twimg.com/AdYz2LdCAAAIxPr.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.887965, + -33.768544 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Photos on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350244930322432", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1568829001/silence-ca_normal.png", + "profile_sidebar_fill_color": "ECD078", + "id": 7050962, + "profile_text_color": "542437", + "followers_count": 2414, + "profile_sidebar_border_color": "C02942", + "id_str": "7050962", + "profile_background_color": "53777A", + "listed_count": 218, + "utc_offset": 36000, + "statuses_count": 46821, + "description": "Not interested in you at all. RT is not endorsement. I have my own opinions. Will let you know them occasionally", + "friends_count": 1731, + "location": "Newtown, Sydney, Australia", + "profile_link_color": "D95B43", + "profile_image_url": "http://a3.twimg.com/profile_images/1568829001/silence-ca_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/140174314/IMG_0757.JPG", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/140174314/IMG_0757.JPG", + "name": "Fictillius", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 417, + "screen_name": "fictillius", + "notifications": null, + "url": "http://fictilli.us", + "created_at": "Sun Jun 24 13:50:14 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.768544, + 150.887965 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:55:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e131879", + "_rev": "1-11a09cc22250ec852533ccf01288765f", + "oldid": "4eb38bd63de67c511700025b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Sooo weneva i go into an elevator i was stand wif my bk up against the wall after having seen \"theeye\"", + "created_at": "Fri Nov 04 06:55:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.11542433, + -27.2381924 + ] + }, + "id": 132350265260118020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132350265260118016", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.2381924, + 153.11542433 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1172474627/72572_448092533499_562743499_5514365_1798481_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 114966888, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "114966888", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1174, + "description": "Artist / Gamer / Tree Climber / Loser / Fashion minded / Avid Reader / Music Lover / Professional Dreamer", + "friends_count": 387, + "location": "Brisbane AU", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1172474627/72572_448092533499_562743499_5514365_1798481_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Murray James", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "muddywater_", + "notifications": null, + "url": "http://www.facebook.com/mmm.jjj.ooo", + "created_at": "Wed Feb 17 05:08:58 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e13261e", + "_rev": "1-59b973948662a1fd8b19f192daf91581", + "oldid": "4eb38bd73de67c511700025c", + "contributors": null, + "truncated": false, + "text": "I'm at Cargo Bar (3 Lime St., King St. Wharf, Sydney) http://t.co/lk24zxp4", + "in_reply_to_status_id": null, + "id": 132350269202759680, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 54, + 74 + ], + "url": "http://t.co/lk24zxp4", + "expanded_url": "http://4sq.com/rwa86S", + "display_url": "4sq.com/rwa86S" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20165825, + -33.86864281 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350269202759680", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1196939319/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 207442928, + "profile_text_color": "333333", + "followers_count": 1251, + "profile_sidebar_border_color": "eeeeee", + "id_str": "207442928", + "profile_background_color": "B2DFDA", + "listed_count": 46, + "utc_offset": 36000, + "statuses_count": 2624, + "description": "Tourism and hospitality marketing professional turned social media marketing advocate. Love travel, music, spa, hospitality & Byron Bay. Also at @GoFutureMedia ", + "friends_count": 1360, + "location": "Byron Bay & Coogee", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1196939319/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/213609239/twilk_background_4d72d7616351c.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/213609239/twilk_background_4d72d7616351c.jpg", + "name": "Holly Galbraith", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 340, + "screen_name": "HollyGalbraith", + "notifications": null, + "url": "http://www.gofuturemedia.com", + "created_at": "Mon Oct 25 10:20:21 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86864281, + 151.20165825 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:55:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1329b4", + "_rev": "1-eb802fdb1ab4ca261fb2ce7dc5c55352", + "oldid": "4eb38bdd3de67c511700025d", + "favorited": false, + "in_reply_to_user_id": 59491025, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mista_vyktur thks", + "created_at": "Fri Nov 04 06:55:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350108074385408", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82615173, + -33.75769098 + ] + }, + "id": 132350297619169280, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 59491025, + "id_str": "59491025", + "screen_name": "mista_vyktur", + "name": "Vykturbones" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350108074385400, + "in_reply_to_screen_name": "mista_vyktur", + "id_str": "132350297619169280", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75769098, + 150.82615173 + ] + }, + "in_reply_to_user_id_str": "59491025", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9274, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1332ff", + "_rev": "1-6992a3f776ccb3b3b9d547b5d15398d3", + "oldid": "4eb38be03de67c511700025e", + "favorited": false, + "in_reply_to_user_id": 28095267, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@NereadersDigest !!!!!", + "created_at": "Fri Nov 04 06:55:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350062205485056", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96301681, + -37.81032971 + ] + }, + "id": 132350305030516740, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 28095267, + "id_str": "28095267", + "screen_name": "NereadersDigest", + "name": "Nerida" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350062205485060, + "in_reply_to_screen_name": "NereadersDigest", + "id_str": "132350305030516736", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81032971, + 144.96301681 + ] + }, + "in_reply_to_user_id_str": "28095267", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "profile_sidebar_fill_color": "FFFFFF", + "id": 14111299, + "profile_text_color": "000000", + "followers_count": 998, + "profile_sidebar_border_color": "7B7B7B", + "id_str": "14111299", + "profile_background_color": "FFFBF0", + "listed_count": 55, + "utc_offset": 36000, + "statuses_count": 24834, + "description": "mid-twenties designer+musician http://soundcloud.com/helveticade", + "friends_count": 763, + "location": "Melbourne", + "profile_link_color": "942828", + "profile_image_url": "http://a3.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "name": "HELVETIC★DE", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 368, + "screen_name": "helveticade", + "notifications": null, + "url": "http://cade.com.au", + "created_at": "Mon Mar 10 03:53:46 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e133adc", + "_rev": "1-c42bd9449163359d584386eb77751ad2", + "oldid": "4eb38be13de67c511700025f", + "favorited": false, + "in_reply_to_user_id": 38308112, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Tommy__M I'll be working tonight and tomorrow =]", + "created_at": "Fri Nov 04 06:55:47 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349427477258240", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00320039, + -37.93335428 + ] + }, + "id": 132350310906732540, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 38308112, + "id_str": "38308112", + "screen_name": "Tommy__M", + "name": "Tom Thomas ♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349427477258240, + "in_reply_to_screen_name": "Tommy__M", + "id_str": "132350310906732544", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93335428, + 145.00320039 + ] + }, + "in_reply_to_user_id_str": "38308112", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1298, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26044, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1345d8", + "_rev": "1-56cdf6e7fffdd6e0625c9790856c65b4", + "oldid": "4eb38bfd3de67c5117000260", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF follow? Please", + "created_at": "Fri Nov 04 06:56:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132350431492980740, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132350431492980737", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3311, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 156, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e135419", + "_rev": "1-fd3fdada026c77b8e72015516d97f94f", + "oldid": "4eb38c0e3de67c5117000261", + "contributors": null, + "truncated": false, + "text": "I'm at Hog's Breath Cafe (244 Hawkesbury Valley Way, Richmond Road, Clarendon) http://t.co/UPYAUXbF", + "in_reply_to_status_id": null, + "id": 132350502280245250, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 79, + 99 + ], + "url": "http://t.co/UPYAUXbF", + "expanded_url": "http://4sq.com/sU0n1d", + "display_url": "4sq.com/sU0n1d" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.788575, + -33.608279 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350502280245248", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1560204018/wrench_normal.jpg", + "profile_sidebar_fill_color": "fbcb63", + "id": 26470587, + "profile_text_color": "ff4107", + "followers_count": 25, + "profile_sidebar_border_color": "fbcb63", + "id_str": "26470587", + "profile_background_color": "fb6d7e", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2535, + "description": "nature enthusiast. ", + "friends_count": 107, + "location": "Sydney, Australia", + "profile_link_color": "fb6d7e", + "profile_image_url": "http://a2.twimg.com/profile_images/1560204018/wrench_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/273126214/tropical_twitter_background_free.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/273126214/tropical_twitter_background_free.jpg", + "name": "Emily Smyth", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "em_barrassing", + "notifications": null, + "url": null, + "created_at": "Wed Mar 25 10:47:34 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.608279, + 150.788575 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:56:33 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1362da", + "_rev": "1-b777ec77647f518e77494d6cf5e41739", + "oldid": "4eb38c143de67c5117000262", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": ":)", + "created_at": "Fri Nov 04 06:56:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.09177312, + -33.89195206 + ] + }, + "id": 132350528012304380, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132350528012304384", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89195206, + 151.09177312 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1579589016/stephbrads_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 30865176, + "profile_text_color": "050301", + "followers_count": 23, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "30865176", + "profile_background_color": "ab67bf", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 239, + "description": "", + "friends_count": 24, + "location": "Sydney, Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a3.twimg.com/profile_images/1579589016/stephbrads_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/290930360/peacock.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/290930360/peacock.jpg", + "name": "Laura Bradley", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 22, + "screen_name": "lozbrains", + "notifications": null, + "url": null, + "created_at": "Mon Apr 13 13:37:12 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e13646e", + "_rev": "1-7b751002201d531df879589c1d81230b", + "oldid": "4eb38c153de67c5117000263", + "contributors": null, + "truncated": false, + "text": "Love it. (@ Woolworths) http://t.co/pnbV9I3n", + "in_reply_to_status_id": null, + "id": 132350531971710980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 24, + 44 + ], + "url": "http://t.co/pnbV9I3n", + "expanded_url": "http://4sq.com/sDWPCW", + "display_url": "4sq.com/sDWPCW" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.038117, + -26.391503 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350531971710976", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594089591/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 42511009, + "profile_text_color": "333333", + "followers_count": 151, + "profile_sidebar_border_color": "C0DEED", + "id_str": "42511009", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 1072, + "description": "Chef, dreamer (I like to think entrepreneur!) with an amazing wife and two beautiful daughters. Love to spend more time away from work with my family.", + "friends_count": 283, + "location": "Noosa, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1594089591/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Simon Jackson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 38, + "screen_name": "chef_simon", + "notifications": null, + "url": "http://www.artechefswear.com.au", + "created_at": "Mon May 25 23:18:10 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -26.391503, + 153.038117 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:56:40 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e136fca", + "_rev": "1-e9403e21fa08e634df2c324a65901253", + "oldid": "4eb38c183de67c5117000264", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "So glad I have someone like @Branwyn_666 in my life! We have been through heaps and i trust her with my life", + "created_at": "Fri Nov 04 06:56:42 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.04915184, + -25.51309245 + ] + }, + "id": 132350541769605120, + "entities": { + "user_mentions": [ + { + "indices": [ + 30, + 42 + ], + "id": 127230412, + "id_str": "127230412", + "screen_name": "Branwyn_666", + "name": "Bee Q" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132350541769605120", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -25.51309245, + 152.04915184 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1139008409/mount_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 170351247, + "profile_text_color": "333333", + "followers_count": 100, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "170351247", + "profile_background_color": "EBEBEB", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 10721, + "description": "im a massive sea eagle,chelsea,nsw blues,brumbies,sydney fc, adelaide crows fan!", + "friends_count": 132, + "location": "middlemount", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1139008409/mount_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "name": "block", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "block__star", + "notifications": null, + "url": null, + "created_at": "Sat Jul 24 16:03:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e137a70", + "_rev": "1-92c9bf650dde877ee79700af962067e0", + "oldid": "4eb38c1f3de67c5117000265", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker Macguyver Did something weird...Skype is looking all the more appealing.", + "created_at": "Fri Nov 04 06:56:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350047240192000", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132350571373002750, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350047240192000, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132350571373002752", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20040, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1389d3", + "_rev": "1-cfe9dfc1d1df389a5b50c45febe55574", + "oldid": "4eb38c2a3de67c5117000266", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Venturing into unknown territory...", + "created_at": "Fri Nov 04 06:57:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.02585428, + -37.81069347 + ] + }, + "id": 132350619825606660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132350619825606656", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81069347, + 145.02585428 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1351614652/Photo_on_2010-11-20_at_11.53_normal.jpg", + "profile_sidebar_fill_color": "FFF7CC", + "id": 21714115, + "profile_text_color": "0C3E53", + "followers_count": 77, + "profile_sidebar_border_color": "F2E195", + "id_str": "21714115", + "profile_background_color": "BADFCD", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 4302, + "description": "This is me... deal with it....", + "friends_count": 90, + "location": "Geelong, Australia", + "profile_link_color": "FF0000", + "profile_image_url": "http://a0.twimg.com/profile_images/1351614652/Photo_on_2010-11-20_at_11.53_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme12/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme12/bg.gif", + "name": "Caitlin Pedler", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Caitlin_P_", + "notifications": null, + "url": null, + "created_at": "Tue Feb 24 00:54:00 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e139715", + "_rev": "1-09d863501bb32ac08031831082347cbe", + "oldid": "4eb38c2f3de67c5117000267", + "contributors": null, + "truncated": false, + "text": "I'm at BWS Beer Wine Spirits http://t.co/mri0RkBW", + "in_reply_to_status_id": null, + "id": 132350640641941500, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 29, + 49 + ], + "url": "http://t.co/mri0RkBW", + "expanded_url": "http://4sq.com/vcuMYC", + "display_url": "4sq.com/vcuMYC" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 147.324267, + -42.87321 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350640641941504", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1584481867/Photo_00147_normal.jpg", + "profile_sidebar_fill_color": "757575", + "id": 19652977, + "profile_text_color": "000000", + "followers_count": 784, + "profile_sidebar_border_color": "000000", + "id_str": "19652977", + "profile_background_color": "000000", + "listed_count": 49, + "utc_offset": 36000, + "statuses_count": 45212, + "description": "Follow me you know you want to. I promise to not disappoint. Sports mad Go The Hawks, amateur photographer. Travel and drinking partner of @Lambie007", + "friends_count": 440, + "location": "Hobart, Tasmania, Australia", + "profile_link_color": "0716b8", + "profile_image_url": "http://a0.twimg.com/profile_images/1584481867/Photo_00147_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/188057926/nvcityoflights.br.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/188057926/nvcityoflights.br.jpg", + "name": "Stuart Lovell", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 81, + "screen_name": "SirStirsalot", + "notifications": null, + "url": "http://thetalesofstu.wordpress.com", + "created_at": "Wed Jan 28 14:10:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hobart", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -42.87321, + 147.324267 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:57:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e13a5a2", + "_rev": "1-e7af7a4d6217f40b39ea3f22a977cf65", + "oldid": "4eb38c413de67c5117000268", + "favorited": false, + "in_reply_to_user_id": 197871974, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MrHasNoPenis \n\nHey penis got.a job for you follow back please", + "created_at": "Fri Nov 04 06:57:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132350714285527040, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 197871974, + "id_str": "197871974", + "screen_name": "MrHasNoPenis", + "name": "ブリオンチ ☻" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "MrHasNoPenis", + "id_str": "132350714285527040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": "197871974", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 909, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9574, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1709, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e13aa29", + "_rev": "1-ebad3339ad9a987e975f71f69aa493ea", + "oldid": "4eb38c513de67c5117000269", + "favorited": false, + "in_reply_to_user_id": 301748001, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MSVWine @barossandrew its like delivery drivers in the winery during vintage time", + "created_at": "Fri Nov 04 06:57:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132249897754828800", + "coordinates": { + "type": "Point", + "coordinates": [ + 139.0470891, + -34.49967107 + ] + }, + "id": 132350784477204480, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 301748001, + "id_str": "301748001", + "screen_name": "MSVWine", + "name": "Vanessa Seppelt" + }, + { + "indices": [ + 9, + 22 + ], + "id": 269646905, + "id_str": "269646905", + "screen_name": "barossandrew", + "name": "Andrew Seppelt Wines" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132249897754828800, + "in_reply_to_screen_name": "MSVWine", + "id_str": "132350784477204480", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.49967107, + 139.0470891 + ] + }, + "in_reply_to_user_id_str": "301748001", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1298943960/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 270587343, + "profile_text_color": "333333", + "followers_count": 60, + "profile_sidebar_border_color": "C0DEED", + "id_str": "270587343", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 267, + "description": "Wine Guy, Sports Guy, Cars Guy, Family Guy, Happy Guy, Lucky Guy", + "friends_count": 54, + "location": "Barossa", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1298943960/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Anthony Grundel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "winegrun", + "notifications": null, + "url": null, + "created_at": "Tue Mar 22 22:10:14 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e13b7aa", + "_rev": "1-11c91f59c4df65b849930a23d2f7859b", + "oldid": "4eb38c533de67c511700026a", + "favorited": false, + "in_reply_to_user_id": 21610988, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@calbo I know, right..? I've seen shorts where the pockets are somehow longer.. Incredibly weird. XD", + "created_at": "Fri Nov 04 06:57:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350553853403136", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.87088401, + -31.96057786 + ] + }, + "id": 132350790055641090, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 21610988, + "id_str": "21610988", + "screen_name": "calbo", + "name": "Cal Wilson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350553853403140, + "in_reply_to_screen_name": "calbo", + "id_str": "132350790055641089", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.96057786, + 115.87088401 + ] + }, + "in_reply_to_user_id_str": "21610988", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1464157592/IMG_0314_normal.JPG", + "profile_sidebar_fill_color": "000000", + "id": 21479393, + "profile_text_color": "757070", + "followers_count": 161, + "profile_sidebar_border_color": "253566", + "id_str": "21479393", + "profile_background_color": "000000", + "listed_count": 14, + "utc_offset": 28800, + "statuses_count": 23949, + "description": "What's there to say? I'm 23, an Australian gamer planning to write & design games..\r\nXbox: MattAn24 / Steam: [LRR] Maethorn", + "friends_count": 1225, + "location": "Perth, Australia", + "profile_link_color": "941f1f", + "profile_image_url": "http://a3.twimg.com/profile_images/1464157592/IMG_0314_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131254883/moon-ocean-space-background.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/131254883/moon-ocean-space-background.jpg", + "name": "Matthew Andre", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 76, + "screen_name": "MattAndre", + "notifications": null, + "url": null, + "created_at": "Sat Feb 21 12:16:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e13be8c", + "_rev": "1-1937c577602d7efcb4822eee1fd9751e", + "oldid": "4eb38c583de67c511700026b", + "contributors": null, + "truncated": false, + "text": "On break and planning travel trip for mid November (@ Fabulous Fine Foods) [pic]: http://t.co/Tvj7Ud1f", + "in_reply_to_status_id": null, + "id": 132350811664683000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 82, + 102 + ], + "url": "http://t.co/Tvj7Ud1f", + "expanded_url": "http://4sq.com/rChQ14", + "display_url": "4sq.com/rChQ14" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0384185, + -37.9110795 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350811664683008", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1470495586/GAT_bizcard_back_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 343369316, + "profile_text_color": "333333", + "followers_count": 11, + "profile_sidebar_border_color": "C0DEED", + "id_str": "343369316", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 412, + "description": "Tailored Information for the Gay & Lesbian traveler all over Asia ", + "friends_count": 4, + "location": "Asia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1470495586/GAT_bizcard_back_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "GayAsiaTravel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "GayAsiaTravel", + "notifications": null, + "url": "http://www.gayasiatravel.com", + "created_at": "Wed Jul 27 13:31:16 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.9110795, + 145.0384185 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:57:47 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e13c3f5", + "_rev": "1-56ea25c5f3bf31ddf82ccfa1a8b7e37a", + "oldid": "4eb38c593de67c511700026c", + "contributors": null, + "truncated": false, + "text": "I'm at Sentido Funf w/ @bravonovember http://t.co/dgnnlT6v", + "in_reply_to_status_id": null, + "id": 132350817096310780, + "entities": { + "user_mentions": [ + { + "indices": [ + 23, + 37 + ], + "id": 36315228, + "id_str": "36315228", + "screen_name": "bravonovember", + "name": "Ben Christensen" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 38, + 58 + ], + "url": "http://t.co/dgnnlT6v", + "expanded_url": "http://4sq.com/rwsme2", + "display_url": "4sq.com/rwsme2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.982656, + -37.80613 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350817096310784", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1364285553/Screen_shot_2011-05-22_at_6.56.17_PM_normal.png", + "profile_sidebar_fill_color": "b3d7e0", + "id": 19434881, + "profile_text_color": "383838", + "followers_count": 726, + "profile_sidebar_border_color": "ffffff", + "id_str": "19434881", + "profile_background_color": "ffffff", + "listed_count": 31, + "utc_offset": 36000, + "statuses_count": 13889, + "description": "sandgroper. bon vivant. monash journalism student. tea lady. writes for flippa. lover of pugs, beagles and the avocado smash. ", + "friends_count": 402, + "location": "Melbourne, Australia", + "profile_link_color": "7784ab", + "profile_image_url": "http://a2.twimg.com/profile_images/1364285553/Screen_shot_2011-05-22_at_6.56.17_PM_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/322878611/5792657781_54c6bf1146_o.jpeg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/322878611/5792657781_54c6bf1146_o.jpeg", + "name": "Tim Cooke", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1321, + "screen_name": "tim_cooke", + "notifications": null, + "url": "http://www.timcooke.net", + "created_at": "Sat Jan 24 07:12:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.80613, + 144.982656 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:57:48 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e13cd51", + "_rev": "1-bd2a02aa78d7598e23a14b942eca36eb", + "oldid": "4eb38c5a3de67c511700026d", + "favorited": false, + "in_reply_to_user_id": 230750669, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamieJocson yun nga eh. Haha. Kaya kelangan ko magkasya dun sa dress ko kasi di ako bibilhan ng bago. :P", + "created_at": "Fri Nov 04 06:57:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132307285505617920", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.60081367, + -34.92145543 + ] + }, + "id": 132350821374509060, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 230750669, + "id_str": "230750669", + "screen_name": "JamieJocson", + "name": "Jamie Angela Jocson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132307285505617920, + "in_reply_to_screen_name": "JamieJocson", + "id_str": "132350821374509056", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.92145543, + 138.60081367 + ] + }, + "in_reply_to_user_id_str": "230750669", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1541057587/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 58401489, + "profile_text_color": "333333", + "followers_count": 20, + "profile_sidebar_border_color": "C0DEED", + "id_str": "58401489", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 392, + "description": "", + "friends_count": 40, + "location": "Adelaide", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1541057587/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "rachel jocson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "juniejocson", + "notifications": null, + "url": null, + "created_at": "Mon Jul 20 05:40:53 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e13d721", + "_rev": "1-78cda11013e49b0d84a646285309f771", + "oldid": "4eb38c643de67c511700026e", + "contributors": null, + "truncated": false, + "text": "Just posted a photo @ Pitt Street Mall http://t.co/w6hWanAq", + "in_reply_to_status_id": null, + "id": 132350864194150400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 40, + 60 + ], + "url": "http://t.co/w6hWanAq", + "expanded_url": "http://instagr.am/p/SqWfN/", + "display_url": "instagr.am/p/SqWfN/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20824575, + -33.86986324 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350864194150400", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/628541347/n630961191_287075_3027_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 21298838, + "profile_text_color": "663B12", + "followers_count": 97, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "21298838", + "profile_background_color": "C6E2EE", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 542, + "description": "Just ordinary man with extra-ordinary God", + "friends_count": 125, + "location": "Sydney, New South Wales", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a0.twimg.com/profile_images/628541347/n630961191_287075_3027_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Ferdinand Dinz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Deedinz", + "notifications": null, + "url": null, + "created_at": "Thu Feb 19 13:46:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86986324, + 151.20824575 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:57:59 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e13df14", + "_rev": "1-71635066eae20c30725347875d01f72c", + "oldid": "4eb38c643de67c511700026f", + "favorited": false, + "in_reply_to_user_id": 15688113, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@BrentonHorsell Did you accuse me of being an adult?", + "created_at": "Fri Nov 04 06:57:59 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132297141581381632", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6094657, + -34.922515 + ] + }, + "id": 132350863304962050, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 15688113, + "id_str": "15688113", + "screen_name": "BrentonHorsell", + "name": "Brenton Horsell" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132297141581381630, + "in_reply_to_screen_name": "BrentonHorsell", + "id_str": "132350863304962048", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.922515, + 138.6094657 + ] + }, + "in_reply_to_user_id_str": "15688113", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1300616756/100175906_normal.jpg", + "profile_sidebar_fill_color": "dee2ff", + "id": 28963348, + "profile_text_color": "030202", + "followers_count": 2868, + "profile_sidebar_border_color": "e8e8e8", + "id_str": "28963348", + "profile_background_color": "131516", + "listed_count": 230, + "utc_offset": 34200, + "statuses_count": 11826, + "description": "I'm never under any delusion that who I am is just a delusion.", + "friends_count": 2663, + "location": "Adelayed", + "profile_link_color": "4d527d", + "profile_image_url": "http://a0.twimg.com/profile_images/1300616756/100175906_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/148278500/asherican-psycho.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/148278500/asherican-psycho.jpg", + "name": "Some Idiot", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3577, + "screen_name": "AshSimmonds", + "notifications": null, + "url": "http://favstar.fm/users/AshSimmonds", + "created_at": "Sun Apr 05 08:59:27 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e13ec82", + "_rev": "1-b1759314c3c50dfaf00873992082e273", + "oldid": "4eb38c783de67c5117000270", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1166572100/PhotoMe_normal.jpg", + "profile_sidebar_fill_color": "0c0e0c", + "is_translator": false, + "id": 20828113, + "profile_text_color": "2a7592", + "followers_count": 185, + "protected": false, + "id_str": "20828113", + "default_profile_image": false, + "listed_count": 15, + "utc_offset": 36000, + "statuses_count": 1758, + "description": "Finishing a PhD on role of information as an instrument of national security at UNSW (ADFA).", + "friends_count": 291, + "location": "Canberra, Australia", + "profile_link_color": "FF0000", + "profile_image_url": "http://a3.twimg.com/profile_images/1166572100/PhotoMe_normal.jpg", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/8264482/starfield.jpg", + "profile_background_color": "1d191f", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/8264482/starfield.jpg", + "name": "Jeffrey Malone", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Jester_Jeff", + "url": "http://ausnatsec.tumblr.com/", + "created_at": "Sat Feb 14 03:10:10 +0000 2009", + "contributors_enabled": false, + "time_zone": "Canberra", + "profile_sidebar_border_color": "65B0DA", + "default_profile": false, + "following": null + }, + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "truncated": false, + "text": "Having an après work cider at Pier Bar in Cairns.", + "created_at": "Fri Nov 04 06:58:19 +0000 2011", + "retweeted": false, + "in_reply_to_status_id": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.7702, + -16.91564 + ] + }, + "id": 132350947040047100, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id_str": null, + "place": null, + "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -16.91564, + 145.7702 + ] + }, + "in_reply_to_user_id_str": null, + "id_str": "132350947040047104" + }, + { + "_id": "51f39676462cca21859bd92d8e13fc58", + "_rev": "1-2f11041ed57989072b64c60a684aeaa3", + "oldid": "4eb38c803de67c5117000271", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Going dark. See you in WLG.", + "created_at": "Fri Nov 04 06:58:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.16650193, + -33.93920839 + ] + }, + "id": 132350978476355580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132350978476355584", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93920839, + 151.16650193 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1549905798/shaunledge-500x500_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 14439876, + "profile_text_color": "333333", + "followers_count": 250, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "14439876", + "profile_background_color": "022330", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 2102, + "description": "Professional in the hosted services industry. Love travel, reading, good food and wine, and more :-)", + "friends_count": 214, + "location": "SYD and CBR", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1549905798/shaunledge-500x500_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Shaun Ewing", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "swewing", + "notifications": null, + "url": "http://shaun.net", + "created_at": "Sat Apr 19 02:26:04 +0000 2008", + "contributors_enabled": false, + "time_zone": "Canberra", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1402c0", + "_rev": "1-966d673a0df8cb2f3a578b29248bfd20", + "oldid": "4eb38c843de67c5117000272", + "contributors": null, + "truncated": false, + "text": "'priest', 'theaters', 'closure' & 'pile-up' are now trending in #Sydney http://t.co/mFyRIfjp", + "in_reply_to_status_id": null, + "id": 132350996784496640, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 64, + 71 + ], + "text": "Sydney" + } + ], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/mFyRIfjp", + "expanded_url": "http://trendsmap.com/au/sydney", + "display_url": "trendsmap.com/au/sydney" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.207, + -33.8671 + ] + }, + "source": "<a href=\"http://trendsmap.com/\" rel=\"nofollow\">Trendsmap Alerting</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132350996784496640", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/821109491/tm.icon.large_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 123791748, + "profile_text_color": "333333", + "followers_count": 1857, + "profile_sidebar_border_color": "C0DEED", + "id_str": "123791748", + "profile_background_color": "C0DEED", + "listed_count": 58, + "utc_offset": 36000, + "statuses_count": 8867, + "description": "Real-Time Local Twitter Trends for Sydney.", + "friends_count": 671, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/821109491/tm.icon.large_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/91912987/TrendsSydney.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/91912987/TrendsSydney.png", + "name": "Trendsmap Sydney", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "TrendsSydney", + "notifications": null, + "url": "http://trendsmap.com/local/au/sydney", + "created_at": "Wed Mar 17 06:52:47 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.8671, + 151.207 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:58:31 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e140d0c", + "_rev": "1-31bd3c00f3d43643c7203288f850d6da", + "oldid": "4eb38c853de67c5117000273", + "contributors": null, + "truncated": false, + "text": "I'm at Bridie O'Reilly's (462 Chapel St., South Yarra) http://t.co/lmbxe6C1", + "in_reply_to_status_id": null, + "id": 132351000790052860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 55, + 75 + ], + "url": "http://t.co/lmbxe6C1", + "expanded_url": "http://4sq.com/vLm6Oi", + "display_url": "4sq.com/vLm6Oi" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.994919, + -37.843671 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351000790052864", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592571796/profilenew_normal.jpg", + "profile_sidebar_fill_color": "1d110a", + "id": 4603911, + "profile_text_color": "a98e6f", + "followers_count": 386, + "profile_sidebar_border_color": "94a4ae", + "id_str": "4603911", + "profile_background_color": "251810", + "listed_count": 11, + "utc_offset": 36000, + "statuses_count": 8453, + "description": "MasterChef contestant 2011, Big Brother contestant 2012. Winner of Australia's top model 2013 and #BATGAustralia contestant 2014.", + "friends_count": 530, + "location": "Melbourne, Australia", + "profile_link_color": "94a4ae", + "profile_image_url": "http://a2.twimg.com/profile_images/1592571796/profilenew_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/190093616/x5563f5e63c9f004d67636aa277a2db2.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/190093616/x5563f5e63c9f004d67636aa277a2db2.jpg", + "name": "Chris Brown", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 22, + "screen_name": "chrisbrownie", + "notifications": null, + "url": "http://about.me/chrisbrownie", + "created_at": "Sat Apr 14 14:05:09 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.843671, + 144.994919 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:58:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1418c4", + "_rev": "1-f01f76cd3bee85c6a851c6ffd1e20872", + "oldid": "4eb38c903de67c5117000274", + "contributors": null, + "truncated": false, + "text": "Piket lingkungan .... (@ SMAN 3 Jayapura) http://t.co/k5LtJNzp", + "in_reply_to_status_id": null, + "id": 132351046872862720, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 42, + 62 + ], + "url": "http://t.co/k5LtJNzp", + "expanded_url": "http://4sq.com/veMR36", + "display_url": "4sq.com/veMR36" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 140.6971223, + -2.523695 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351046872862720", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1525671163/C0846pUf_normal", + "profile_sidebar_fill_color": "9A9E9A", + "id": 155693306, + "profile_text_color": "090A0A", + "followers_count": 777, + "profile_sidebar_border_color": "011A1A", + "id_str": "155693306", + "profile_background_color": "272727", + "listed_count": 4, + "utc_offset": 32400, + "statuses_count": 2767, + "description": "the half-blood princess... really luv my brotha @andretaulany74 .. he followed me on july 13th 2011..", + "friends_count": 55, + "location": "ÜT: -3.342194,135.529138", + "profile_link_color": "2c36a3", + "profile_image_url": "http://a0.twimg.com/profile_images/1525671163/C0846pUf_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/284260392/bro.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/284260392/bro.jpg", + "name": "Rechka de Radja", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "rechkataulany_d", + "notifications": null, + "url": "http://www.rechkaderadja.blogspot.com", + "created_at": "Mon Jun 14 21:10:21 +0000 2010", + "contributors_enabled": false, + "time_zone": "Seoul", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -2.523695, + 140.6971223 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:58:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e1425ea", + "_rev": "1-8840d12f22fb9ae20c6b2ac561cbdb02", + "oldid": "4eb38c993de67c5117000275", + "contributors": null, + "truncated": false, + "text": "I'm at JB Hi-Fi (261 Elizabeth St., Melbourne) http://t.co/H2OAfKnj", + "in_reply_to_status_id": null, + "id": 132351083350736900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/H2OAfKnj", + "expanded_url": "http://4sq.com/urr5pH", + "display_url": "4sq.com/urr5pH" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9622, + -37.812225 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351083350736896", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1280347732/portalcake_normal.jpg", + "profile_sidebar_fill_color": "36343d", + "id": 6572902, + "profile_text_color": "666666", + "followers_count": 148, + "profile_sidebar_border_color": "181A1E", + "id_str": "6572902", + "profile_background_color": "000000", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 3503, + "description": "I play some games, I make some videos, I take some photos, and I talk a bunch. Can't get enough of me on YouTube? Follow me on Twitter!", + "friends_count": 89, + "location": "http://www.twitch.tv/sambonz", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1280347732/portalcake_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/320743068/sambonz_twitter_bgroundFixedFont_20110827_vFinalGlowCompressed.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/320743068/sambonz_twitter_bgroundFixedFont_20110827_vFinalGlowCompressed.jpg", + "name": "Sambo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "sambonz", + "notifications": null, + "url": "http://www.youtube.com/sambonz", + "created_at": "Mon Jun 04 15:40:00 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.812225, + 144.9622 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:58:51 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e142d6f", + "_rev": "1-1586620337e0519e5f969652ca84172e", + "oldid": "4eb38c993de67c5117000276", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "*whispers* it came out the other day.... RT @JamesIsFierce: Omg grindr finally came out with another update.", + "created_at": "Fri Nov 04 06:58:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00376367, + -37.93096925 + ] + }, + "id": 132351085603074050, + "entities": { + "user_mentions": [ + { + "indices": [ + 44, + 58 + ], + "id": 25055323, + "id_str": "25055323", + "screen_name": "JamesIsFierce", + "name": "☀James Èdward Minaj" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351085603074048", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93096925, + 145.00376367 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1298, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26045, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e143370", + "_rev": "1-15b72beacca0b3933960108c5961e982", + "oldid": "4eb38ca23de67c5117000277", + "favorited": false, + "in_reply_to_user_id": 301748001, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MSVWine that's a pretty decent list to accompany", + "created_at": "Fri Nov 04 06:59:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132302561133858816", + "coordinates": { + "type": "Point", + "coordinates": [ + 139.0470891, + -34.49967107 + ] + }, + "id": 132351122261282820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 301748001, + "id_str": "301748001", + "screen_name": "MSVWine", + "name": "Vanessa Seppelt" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132302561133858820, + "in_reply_to_screen_name": "MSVWine", + "id_str": "132351122261282817", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.49967107, + 139.0470891 + ] + }, + "in_reply_to_user_id_str": "301748001", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1298943960/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 270587343, + "profile_text_color": "333333", + "followers_count": 60, + "profile_sidebar_border_color": "C0DEED", + "id_str": "270587343", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 268, + "description": "Wine Guy, Sports Guy, Cars Guy, Family Guy, Happy Guy, Lucky Guy", + "friends_count": 54, + "location": "Barossa", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1298943960/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Anthony Grundel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "winegrun", + "notifications": null, + "url": null, + "created_at": "Tue Mar 22 22:10:14 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e143414", + "_rev": "1-6d4198f595db44a9d14b9549ca4205e3", + "oldid": "4eb38caa3de67c5117000278", + "favorited": false, + "in_reply_to_user_id": 54064159, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Clipsal500 thank you for giving me the opportunity a big thrill for someone who hasn't missed a Clipsal 500 yet", + "created_at": "Fri Nov 04 06:59:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350334659072000", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.64716332, + -34.87359948 + ] + }, + "id": 132351154070880260, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 54064159, + "id_str": "54064159", + "screen_name": "Clipsal500", + "name": "Clipsal 500" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350334659072000, + "in_reply_to_screen_name": "Clipsal500", + "id_str": "132351154070880256", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.87359948, + 138.64716332 + ] + }, + "in_reply_to_user_id_str": "54064159", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1573068567/family2011_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 385126030, + "profile_text_color": "333333", + "followers_count": 14, + "profile_sidebar_border_color": "C0DEED", + "id_str": "385126030", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 80, + "description": "love my family, motorsport and getting out", + "friends_count": 91, + "location": "Adelaide", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1573068567/family2011_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robyn McMahon", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "McThrumster", + "notifications": null, + "url": null, + "created_at": "Tue Oct 04 22:44:43 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1442ed", + "_rev": "1-c7494a1417053523fa408f08a43a2022", + "oldid": "4eb38cae3de67c5117000279", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "profile_sidebar_fill_color": "91baf7", + "is_translator": false, + "id": 22474528, + "profile_text_color": "0a0a0a", + "followers_count": 151, + "protected": false, + "id_str": "22474528", + "default_profile_image": false, + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 10240, + "description": "My imagination tells me: Be amazing! \r\nIn the distance, time is calling out: Just get on with it, already!", + "friends_count": 118, + "location": "Melbourne, Australia", + "profile_link_color": "a80d8e", + "profile_image_url": "http://a2.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "profile_background_color": "acded6", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "name": "K", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "Belmoroe", + "url": null, + "created_at": "Mon Mar 02 11:06:31 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "profile_sidebar_border_color": "52bef0", + "default_profile": false, + "following": null + }, + "favorited": false, + "in_reply_to_user_id": 59699957, + "contributors": null, + "truncated": false, + "text": "@lukeyook what is 'voguing'?", + "created_at": "Fri Nov 04 06:59:13 +0000 2011", + "retweeted": false, + "in_reply_to_status_id": 132349862971838460, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9704666, + -37.8160655 + ] + }, + "id": 132351174618791940, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 59699957, + "screen_name": "lukeyook", + "name": "Luke Johnston ", + "id_str": "59699957" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id_str": "132349862971838464", + "place": null, + "source": "<a href=\"http://ubersocial.com\" rel=\"nofollow\">UberSocial for Android</a>", + "in_reply_to_screen_name": "lukeyook", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8160655, + 144.9704666 + ] + }, + "in_reply_to_user_id_str": "59699957", + "id_str": "132351174618791936" + }, + { + "_id": "51f39676462cca21859bd92d8e1449f5", + "_rev": "1-0435441735fd725a300ae9c911171f96", + "oldid": "4eb38cb03de67c511700027a", + "favorited": false, + "in_reply_to_user_id": 192818148, + "contributors": null, + "source": "<a href=\"http://mobileways.de/gravity\" rel=\"nofollow\">Gravity!</a>", + "text": "@ChristinaParie Its \"friday\"", + "created_at": "Fri Nov 04 06:59:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349411345960960", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.08212535, + -33.88679501 + ] + }, + "id": 132351180931219460, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 192818148, + "id_str": "192818148", + "screen_name": "ChristinaParie", + "name": "Christina Parie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349411345960960, + "in_reply_to_screen_name": "ChristinaParie", + "id_str": "132351180931219456", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88679501, + 151.08212535 + ] + }, + "in_reply_to_user_id_str": "192818148", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546519621/mum___bridgette_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 159349033, + "profile_text_color": "3D1957", + "followers_count": 61, + "profile_sidebar_border_color": "65B0DA", + "id_str": "159349033", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 429, + "description": "Mother of 4 kids, in recent times i find myself reliving my teenage years as i accompany my 15yr old as she follows her idols around Sydney when they come.", + "friends_count": 259, + "location": "Sydney, AUSTRALIA", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1546519621/mum___bridgette_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/331427084/318798_211377028916171_100001316250280_537392_2063917_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/331427084/318798_211377028916171_100001316250280_537392_2063917_n.jpg", + "name": "kathryn ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "girl_in_oz72", + "notifications": null, + "url": null, + "created_at": "Fri Jun 25 03:55:00 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e144eeb", + "_rev": "1-e07e89bacc20aab300e33ad19a1df30c", + "oldid": "4eb38cb23de67c511700027b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "RT @ABinzaid: يا أبوي ما للمسافات أعذار .. والشوق يدفعني لحبة يمينك<3", + "created_at": "Fri Nov 04 06:59:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.03097961, + -27.46122771 + ] + }, + "id": 132351187700822020, + "entities": { + "user_mentions": [ + { + "indices": [ + 3, + 12 + ], + "id": 230683562, + "id_str": "230683562", + "screen_name": "ABinzaid", + "name": "عبدالرحمن بن زيد" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351187700822017", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.46122771, + 153.03097961 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616622572/4C0296D2-B7B5-4821-BFF8-A7A8E7219A9D_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 250448669, + "profile_text_color": "333333", + "followers_count": 41, + "profile_sidebar_border_color": "C0DEED", + "id_str": "250448669", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 265, + "description": "I'm from Riyadh, I'm student in Australia , I'll study accounting in QUT university, and I'm photorgfer", + "friends_count": 148, + "location": "Brisbane,Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1616622572/4C0296D2-B7B5-4821-BFF8-A7A8E7219A9D_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Mohammed F Alrasheed", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 27, + "screen_name": "mohammedalrashe", + "notifications": null, + "url": null, + "created_at": "Fri Feb 11 03:21:53 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e145c3c", + "_rev": "1-3b36092def871eece09b1a8530354e60", + "oldid": "4eb38cb23de67c511700027c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Finally watching brides maids. It is f-ing fantastic!!", + "created_at": "Fri Nov 04 06:59:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.53195089, + -32.06061589 + ] + }, + "id": 132351191207260160, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351191207260160", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.06061589, + 152.53195089 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1487679309/image_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 352148918, + "profile_text_color": "634047", + "followers_count": 12, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "352148918", + "profile_background_color": "EDECE9", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 86, + "description": "My name is kate, Im not interesting but i try =)", + "friends_count": 93, + "location": "", + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1487679309/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "kate jugovac", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "KJugovac", + "notifications": null, + "url": null, + "created_at": "Wed Aug 10 06:29:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14663e", + "_rev": "1-5fdbb7ae5cb63ff6740d427e9e6a2be5", + "oldid": "4eb38cb43de67c511700027d", + "favorited": false, + "in_reply_to_user_id": 40608132, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LElizabeth20 Exhausted.", + "created_at": "Fri Nov 04 06:59:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.5676119, + -33.70169366 + ] + }, + "id": 132351200078209020, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 40608132, + "id_str": "40608132", + "screen_name": "LElizabeth20", + "name": "Laura Irwin" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "LElizabeth20", + "id_str": "132351200078209024", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.70169366, + 150.5676119 + ] + }, + "in_reply_to_user_id_str": "40608132", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1024946129/35590_1478675604193_1152862592_1316657_7875497_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 129197246, + "profile_text_color": "333333", + "followers_count": 33, + "profile_sidebar_border_color": "C0DEED", + "id_str": "129197246", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 655, + "description": "OCSC Officer with NSWRFS. Pyrotechnician with H&S Pyrotechnics. Views are my own and do not represent anyone else.", + "friends_count": 105, + "location": "Yarramundi NSW", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1024946129/35590_1478675604193_1152862592_1316657_7875497_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/355411285/photo.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/355411285/photo.JPG", + "name": "Chris Garlick", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "ChrisGarlick12", + "notifications": null, + "url": null, + "created_at": "Sat Apr 03 13:55:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14710d", + "_rev": "1-d389cdbb1460f1c4a72848183a5d42d4", + "oldid": "4eb38cb73de67c511700027e", + "contributors": null, + "truncated": false, + "text": "I'm at University Of Wollongong (Northfields Ave, Wollongong) http://t.co/ASmY5ht4", + "in_reply_to_status_id": null, + "id": 132351210891128830, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 62, + 82 + ], + "url": "http://t.co/ASmY5ht4", + "expanded_url": "http://4sq.com/s5AAU3", + "display_url": "4sq.com/s5AAU3" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.87983608, + -34.40659099 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351210891128834", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "profile_sidebar_fill_color": "252429", + "id": 43884518, + "profile_text_color": "aba8ab", + "followers_count": 420, + "profile_sidebar_border_color": "00f535", + "id_str": "43884518", + "profile_background_color": "1A1B1F", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 19592, + "description": "19, University student and IT sector drone. . I tweet what is on my mind and have an obsession with tech and shiny things. (Views expressed are my own)", + "friends_count": 469, + "location": "Wollongong, NSW", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/248428251/background.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/248428251/background.jpg", + "name": "Mark Caetano", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 37, + "screen_name": "C1VX", + "notifications": null, + "url": "http://www.mc.id.au", + "created_at": "Mon Jun 01 13:35:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.40659099, + 150.87983608 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:59:22 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e147e51", + "_rev": "1-6a3f01c958088d2c986a157b7feee64a", + "oldid": "4eb38cb83de67c511700027f", + "favorited": false, + "in_reply_to_user_id": 9151512, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@wobblywibby I was thinking about this a few weeks ago. Wonder if there's any link between your personality and choice of seat on the bus.", + "created_at": "Fri Nov 04 06:59:23 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "131624197804933120", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.12917667, + -35.2776592 + ] + }, + "id": 132351215408398340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 9151512, + "id_str": "9151512", + "screen_name": "wobblywibby", + "name": "Elizabeth R" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 131624197804933120, + "in_reply_to_screen_name": "wobblywibby", + "id_str": "132351215408398336", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.2776592, + 149.12917667 + ] + }, + "in_reply_to_user_id_str": "9151512", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1162832922/doodle_normal.gif", + "profile_sidebar_fill_color": "DDEEF6", + "id": 140297293, + "profile_text_color": "333333", + "followers_count": 5, + "profile_sidebar_border_color": "C0DEED", + "id_str": "140297293", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 106, + "description": "", + "friends_count": 20, + "location": "Canberra, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1162832922/doodle_normal.gif", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Daniel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "faceofguy", + "notifications": null, + "url": null, + "created_at": "Wed May 05 04:06:24 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14813e", + "_rev": "1-dc4dbf6cec8208985fe20b3148f1fd6f", + "oldid": "4eb38cbb3de67c5117000280", + "contributors": null, + "truncated": false, + "text": "Mylo Xyloto http://t.co/OtDU44XZ", + "in_reply_to_status_id": null, + "id": 132351225940283400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 12, + 32 + ], + "url": "http://t.co/OtDU44XZ", + "expanded_url": "http://weav.rs/tainKA", + "display_url": "weav.rs/tainKA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 130.839988, + -12.464858 + ] + }, + "source": "<a href=\"http://www.weavrs.com\" rel=\"nofollow\">Weavrs</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351225940283392", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1423727063/avatar_normal", + "profile_sidebar_fill_color": "CCC0DE", + "id": 328136694, + "profile_text_color": "64ABFF", + "followers_count": 14, + "profile_sidebar_border_color": "64ABFF", + "id_str": "328136694", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 3862, + "description": null, + "friends_count": 0, + "location": "Darwin, Australia", + "profile_link_color": "976BAD", + "profile_image_url": "http://a3.twimg.com/profile_images/1423727063/avatar_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/357629116/1.gif", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/357629116/1.gif", + "name": "dundee", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "oritethere", + "notifications": null, + "url": null, + "created_at": "Sat Jul 02 20:12:01 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -12.464858, + 130.839988 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:59:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e148e12", + "_rev": "1-9c50b19bd5e1e12be6ab800fb0f9d93b", + "oldid": "4eb38cbc3de67c5117000281", + "contributors": null, + "truncated": false, + "text": "Home. Wine. Cheese and #abcnews24 (@ Berry Street) http://t.co/JZ9BzxSP", + "in_reply_to_status_id": null, + "id": 132351233007681540, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 23, + 33 + ], + "text": "abcnews24" + } + ], + "urls": [ + { + "indices": [ + 51, + 71 + ], + "url": "http://t.co/JZ9BzxSP", + "expanded_url": "http://4sq.com/rxJRpN", + "display_url": "4sq.com/rxJRpN" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.023512, + -27.463565 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351233007681536", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610637906/image_normal.jpg", + "profile_sidebar_fill_color": "000a0a", + "id": 15466135, + "profile_text_color": "3a3347", + "followers_count": 1558, + "profile_sidebar_border_color": "000505", + "id_str": "15466135", + "profile_background_color": "000505", + "listed_count": 107, + "utc_offset": 36000, + "statuses_count": 38204, + "description": "When not working-DIVING! When not diving, on #CityCycle in The Valley, New Farm, the CBD. Digital Purgatory howmanypandas.com\n#hashtagabuse is my middle name", + "friends_count": 869, + "location": "Brisbane, Australia", + "profile_link_color": "0f05d6", + "profile_image_url": "http://a2.twimg.com/profile_images/1610637906/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/5307446/screen-capture-5.png", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/5307446/screen-capture-5.png", + "name": "Taezar", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 93, + "screen_name": "Taezar", + "notifications": null, + "url": "http://taezar.info", + "created_at": "Thu Jul 17 09:57:24 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.463565, + 153.023512 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:59:27 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e14940a", + "_rev": "1-4797088dcfea348e1b944b7bcacc1a4d", + "oldid": "4eb38cbf3de67c5117000282", + "contributors": null, + "truncated": false, + "text": "Does the 5:54 & 6:00 trains displayed in attached pic depart from platform 6 at nth and arrive platform 4 at Footscray http://t.co/KHhAMXak", + "in_reply_to_status_id": null, + "id": 132351242478419970, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY0wPnCAAAqU18.jpg", + "expanded_url": "http://twitter.com/cjdawson/status/132351242478419968/photo/1", + "display_url": "pic.twitter.com/KHhAMXak", + "url": "http://t.co/KHhAMXak", + "sizes": { + "large": { + "h": 480, + "w": 320, + "resize": "fit" + }, + "small": { + "h": 480, + "w": 320, + "resize": "fit" + }, + "medium": { + "h": 480, + "w": 320, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132351242482614272", + "indices": [ + 119, + 139 + ], + "type": "photo", + "id": 132351242482614270, + "media_url": "http://p.twimg.com/AdY0wPnCAAAqU18.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.937162, + -37.807266 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Photos on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351242478419968", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1144995983/me2_normal.JPG", + "profile_sidebar_fill_color": "574B63", + "id": 22840951, + "profile_text_color": "592543", + "followers_count": 45, + "profile_sidebar_border_color": "5A5B70", + "id_str": "22840951", + "profile_background_color": "611305", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1039, + "description": "Biggest Gripe: The Victorian Governments inability to manage Victoria's public transport network. ", + "friends_count": 95, + "location": "Melbourne, Australia", + "profile_link_color": "543754", + "profile_image_url": "http://a3.twimg.com/profile_images/1144995983/me2_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/161724372/x5be60fc4f4c5ac3e6df4971b07da4d1.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/161724372/x5be60fc4f4c5ac3e6df4971b07da4d1.jpg", + "name": "Caleb Dawson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "cjdawson", + "notifications": null, + "url": null, + "created_at": "Wed Mar 04 21:52:48 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.807266, + 144.937162 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:59:30 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e149a0b", + "_rev": "1-707af0f2e91293e83f8f8894b2b54f26", + "oldid": "4eb38cc43de67c5117000283", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#honestyhour I find it hard to open up and talk to people", + "created_at": "Fri Nov 04 06:59:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.04946977, + -25.51320716 + ] + }, + "id": 132351265077329920, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 12 + ], + "text": "honestyhour" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351265077329920", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -25.51320716, + 152.04946977 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1139008409/mount_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 170351247, + "profile_text_color": "333333", + "followers_count": 100, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "170351247", + "profile_background_color": "EBEBEB", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 10722, + "description": "im a massive sea eagle,chelsea,nsw blues,brumbies,sydney fc, adelaide crows fan!", + "friends_count": 132, + "location": "middlemount", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1139008409/mount_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "name": "block", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "block__star", + "notifications": null, + "url": null, + "created_at": "Sat Jul 24 16:03:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14a6e7", + "_rev": "1-18cdc9787880e9251293c29b8dc89b7d", + "oldid": "4eb38cc43de67c5117000284", + "contributors": null, + "truncated": false, + "text": "That's no moon ... @ Bell St Fitzroy http://t.co/LU8FP730", + "in_reply_to_status_id": null, + "id": 132351267325493250, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 38, + 58 + ], + "url": "http://t.co/LU8FP730", + "expanded_url": "http://instagr.am/p/SqWFK/", + "display_url": "instagr.am/p/SqWFK/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9762, + -37.80017 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351267325493248", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618401082/image_normal.jpg", + "profile_sidebar_fill_color": "e0e0e0", + "id": 13079592, + "profile_text_color": "000000", + "followers_count": 104, + "profile_sidebar_border_color": "bdbdbd", + "id_str": "13079592", + "profile_background_color": "ffffff", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 1536, + "description": "Birds Love Fighting / Cat Cat / Orbits / Jimbil", + "friends_count": 144, + "location": "Melbourne, Australia", + "profile_link_color": "d65400", + "profile_image_url": "http://a2.twimg.com/profile_images/1618401082/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/38441813/twitter-bg-jimbil.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/38441813/twitter-bg-jimbil.jpg", + "name": "warwickjwsmith", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "warwickjwsmith", + "notifications": null, + "url": "http://birdslovefighting.com", + "created_at": "Tue Feb 05 04:03:28 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.80017, + 144.9762 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 06:59:35 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e14b294", + "_rev": "1-008d22b61ee963320294c2d1a54b929a", + "oldid": "4eb38ccb3de67c5117000285", + "favorited": false, + "in_reply_to_user_id": 95820819, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ryno250f dead easy. Got my license this arvo. :P", + "created_at": "Fri Nov 04 06:59:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132239429933858818", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19206248, + -33.73622501 + ] + }, + "id": 132351293305012220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 95820819, + "id_str": "95820819", + "screen_name": "ryno250f", + "name": "Ryan " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132239429933858820, + "in_reply_to_screen_name": "ryno250f", + "id_str": "132351293305012224", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.73622501, + 151.19206248 + ] + }, + "in_reply_to_user_id_str": "95820819", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1215324582/IMG_2583_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 27211326, + "profile_text_color": "333333", + "followers_count": 109, + "profile_sidebar_border_color": "C0DEED", + "id_str": "27211326", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1189, + "description": "20. Aussie (including accompanying sense of humour). Sydneysider. Disciple of Jesus. IT Guy. Occasional coffee connoisseur", + "friends_count": 183, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1215324582/IMG_2583_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andy Thompson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "athompson10", + "notifications": null, + "url": null, + "created_at": "Sat Mar 28 11:01:49 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14b6d0", + "_rev": "1-e12c87705d945157bf9cd47fea73a57b", + "oldid": "4eb38cd13de67c5117000286", + "favorited": false, + "in_reply_to_user_id": 37624603, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LoteTuqiri I'd be the only girl there with a beer and a lounge on the sidline. keep watch for me :p", + "created_at": "Fri Nov 04 06:59:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132348830862671873", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.09622012, + -33.85508951 + ] + }, + "id": 132351320127586300, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 37624603, + "id_str": "37624603", + "screen_name": "LoteTuqiri", + "name": "Lote Tuqiri" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348830862671870, + "in_reply_to_screen_name": "LoteTuqiri", + "id_str": "132351320127586305", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85508951, + 151.09622012 + ] + }, + "in_reply_to_user_id_str": "37624603", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1617609342/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 402911580, + "profile_text_color": "333333", + "followers_count": 10, + "profile_sidebar_border_color": "C0DEED", + "id_str": "402911580", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 43, + "description": "professional dancer. who loves motorbikes, whos been a gridgirl for the bx1000, who can make a great kebab.", + "friends_count": 24, + "location": "concord sydney bathurst raised", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1617609342/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Becca Holz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "BeccaHolz91", + "notifications": null, + "url": null, + "created_at": "Tue Nov 01 19:08:39 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14b9e7", + "_rev": "1-2daac67fff7faa134731b1586de396f9", + "oldid": "4eb38cd53de67c5117000287", + "favorited": false, + "in_reply_to_user_id": 9151512, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@wobblywibby also, the left.", + "created_at": "Fri Nov 04 06:59:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "131624197804933120", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.12879089, + -35.27782842 + ] + }, + "id": 132351333943611400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 9151512, + "id_str": "9151512", + "screen_name": "wobblywibby", + "name": "Elizabeth R" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 131624197804933120, + "in_reply_to_screen_name": "wobblywibby", + "id_str": "132351333943611392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.27782842, + 149.12879089 + ] + }, + "in_reply_to_user_id_str": "9151512", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1162832922/doodle_normal.gif", + "profile_sidebar_fill_color": "DDEEF6", + "id": 140297293, + "profile_text_color": "333333", + "followers_count": 5, + "profile_sidebar_border_color": "C0DEED", + "id_str": "140297293", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 107, + "description": "", + "friends_count": 20, + "location": "Canberra, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1162832922/doodle_normal.gif", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Daniel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "faceofguy", + "notifications": null, + "url": null, + "created_at": "Wed May 05 04:06:24 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14c16f", + "_rev": "1-98958dd6c50a2921f7ce253e2f0442bd", + "oldid": "4eb38cd83de67c5117000288", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Massive 8 weeks for retailers, one chance to stop consumer traffic, engage in Visual Impact or risk being past by # VM engaged", + "created_at": "Fri Nov 04 06:59:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.36699045, + -37.75710518 + ] + }, + "id": 132351349160542200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351349160542208", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.75710518, + 145.36699045 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613532910/Xmas_image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 226444639, + "profile_text_color": "333333", + "followers_count": 51, + "profile_sidebar_border_color": "eeeeee", + "id_str": "226444639", + "profile_background_color": "131516", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 274, + "description": "\t\r\nMagnetic ! VM offers retailers and corporate businesses professional consultation & training,VM & strategic marketing services / support ", + "friends_count": 184, + "location": "Melbourne, Victoria", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1613532910/Xmas_image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/281467831/Point_of_difference.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/281467831/Point_of_difference.jpg", + "name": "Magnetic ! VM", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "magneticvm", + "notifications": null, + "url": "http://www.magneticvm.com.au", + "created_at": "Tue Dec 14 04:59:12 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14c72e", + "_rev": "1-3ab39a4aa6f2894a36417e0e4d7bb518", + "oldid": "4eb38ce53de67c5117000289", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.velvetlab.net\" rel=\"nofollow\">Hobart GPO Clock</a>", + "text": "BONG! BONG! BONG! BONG! BONG! BONG!", + "created_at": "Fri Nov 04 07:00:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 147.330281, + -42.882541 + ] + }, + "id": 132351404416315400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351404416315393", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -42.882541, + 147.330281 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621710028/overcast_06_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 93309166, + "profile_text_color": "333333", + "followers_count": 126, + "profile_sidebar_border_color": "C0DEED", + "id_str": "93309166", + "profile_background_color": "C0DEED", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 16627, + "description": "Hobart GPO Clock Tower.", + "friends_count": 4, + "location": "9 Elizabeth St, Hobart.", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1621710028/overcast_06_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Hobart Clock Tower", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "HobartGPOClock", + "notifications": null, + "url": null, + "created_at": "Sun Nov 29 02:40:37 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hobart", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14d184", + "_rev": "1-ff5ba0f702cca083e4f9a61e17d0fde3", + "oldid": "4eb38cef3de67c511700028a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Wow, another QF A380 with engine trouble. Poor Alan Joyce just cant get a break right now.", + "created_at": "Fri Nov 04 07:00:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18768645, + -33.92709629 + ] + }, + "id": 132351445575020540, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351445575020544", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.92709629, + 151.18768645 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1394749914/profile_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 14793974, + "profile_text_color": "333333", + "followers_count": 1479, + "profile_sidebar_border_color": "eeeeee", + "id_str": "14793974", + "profile_background_color": "131516", + "listed_count": 35, + "utc_offset": 36000, + "statuses_count": 9231, + "description": "irish | living in sydney | climbing mountains to the clouds | passionate about food, coffee, whiskey, f1, cloud computing, google & technology", + "friends_count": 1916, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1394749914/profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Daragh Mc Grath", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "daraghmcg", + "notifications": null, + "url": "http://goo.gl/IWMeI", + "created_at": "Fri May 16 02:44:18 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14d819", + "_rev": "1-dd020464143f6dd0a7b6d37bf8d6bc93", + "oldid": "4eb38cf33de67c511700028b", + "favorited": false, + "in_reply_to_user_id": 23920889, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@joshdaveta the love of my life will be dancing at GH tonight.... I think! Heath from SYTYCD =D", + "created_at": "Fri Nov 04 07:00:21 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00389233, + -37.93000955 + ] + }, + "id": 132351460687101950, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 23920889, + "id_str": "23920889", + "screen_name": "joshdaveta", + "name": "Josh R H Daveta" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "joshdaveta", + "id_str": "132351460687101952", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93000955, + 145.00389233 + ] + }, + "in_reply_to_user_id_str": "23920889", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1298, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26046, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14d953", + "_rev": "1-58c2538f2a75547ad69a3584224ef77e", + "oldid": "4eb38cf93de67c511700028c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#honestyhour ask me a question through dm and I will answer it here :)", + "created_at": "Fri Nov 04 07:00:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.04946977, + -25.51320716 + ] + }, + "id": 132351489153835000, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 12 + ], + "text": "honestyhour" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351489153835008", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -25.51320716, + 152.04946977 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1139008409/mount_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 170351247, + "profile_text_color": "333333", + "followers_count": 100, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "170351247", + "profile_background_color": "EBEBEB", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 10723, + "description": "im a massive sea eagle,chelsea,nsw blues,brumbies,sydney fc, adelaide crows fan!", + "friends_count": 132, + "location": "middlemount", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1139008409/mount_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/208241123/WILLOW.jpg", + "name": "block", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "block__star", + "notifications": null, + "url": null, + "created_at": "Sat Jul 24 16:03:48 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14de02", + "_rev": "1-edca0ff79cbd2e284e2a9987cb6a0988", + "oldid": "4eb38d103de67c511700028d", + "contributors": null, + "truncated": false, + "text": "I'm at The Brewery Espresso Bar (64 Erskine St., Sydney) http://t.co/1wF7fhEi", + "in_reply_to_status_id": null, + "id": 132351585014644740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 57, + 77 + ], + "url": "http://t.co/1wF7fhEi", + "expanded_url": "http://4sq.com/ssd5qM", + "display_url": "4sq.com/ssd5qM" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20411247, + -33.86668073 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351585014644736", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1584667461/P1000260_normal.JPG", + "profile_sidebar_fill_color": "efefef", + "id": 27223798, + "profile_text_color": "333333", + "followers_count": 202, + "profile_sidebar_border_color": "eeeeee", + "id_str": "27223798", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 3815, + "description": "Bulldogs Nut, Liverpool Supporter, Sports Fanatic, Cricket Wannabe & Food Eater", + "friends_count": 451, + "location": "Sydney", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1584667461/P1000260_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "William Chau", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 10, + "screen_name": "will_chau", + "notifications": null, + "url": null, + "created_at": "Sat Mar 28 13:01:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86668073, + 151.20411247 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:00:51 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e14e7c8", + "_rev": "1-abed3f3ee03b680f7f1f11579dfc06dd", + "oldid": "4eb38d143de67c511700028e", + "favorited": false, + "in_reply_to_user_id": 37304238, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@peachmagra are you there?", + "created_at": "Fri Nov 04 07:00:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132216340713963521", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18831208, + -33.92649899 + ] + }, + "id": 132351601879945220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 37304238, + "id_str": "37304238", + "screen_name": "peachmagra", + "name": "audrey mcgrath" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132216340713963520, + "in_reply_to_screen_name": "peachmagra", + "id_str": "132351601879945216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.92649899, + 151.18831208 + ] + }, + "in_reply_to_user_id_str": "37304238", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1394749914/profile_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 14793974, + "profile_text_color": "333333", + "followers_count": 1479, + "profile_sidebar_border_color": "eeeeee", + "id_str": "14793974", + "profile_background_color": "131516", + "listed_count": 35, + "utc_offset": 36000, + "statuses_count": 9232, + "description": "irish | living in sydney | climbing mountains to the clouds | passionate about food, coffee, whiskey, f1, cloud computing, google & technology", + "friends_count": 1916, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1394749914/profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Daragh Mc Grath", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "daraghmcg", + "notifications": null, + "url": "http://goo.gl/IWMeI", + "created_at": "Fri May 16 02:44:18 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14ec84", + "_rev": "1-7e8f66544dcc8445222221a6a9b1ee6f", + "oldid": "4eb38d1b3de67c511700028f", + "favorited": false, + "in_reply_to_user_id": 27830835, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@markopanzic looking forward to finally seeing you tonight!!", + "created_at": "Fri Nov 04 07:01:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00390954, + -37.92949827 + ] + }, + "id": 132351628136288260, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 27830835, + "id_str": "27830835", + "screen_name": "markopanzic", + "name": "Marko Panzic" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "markopanzic", + "id_str": "132351628136288256", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.92949827, + 145.00390954 + ] + }, + "in_reply_to_user_id_str": "27830835", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1298, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26046, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e14f84b", + "_rev": "1-8c78d6372e4f7d3c3faea8d309513c3c", + "oldid": "4eb38d1f3de67c5117000290", + "contributors": null, + "truncated": false, + "text": "I'm at Grandma's (Dandenong, VIC) http://t.co/1JYVSe0p", + "in_reply_to_status_id": null, + "id": 132351647283290110, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 34, + 54 + ], + "url": "http://t.co/1JYVSe0p", + "expanded_url": "http://4sq.com/uIsn5l", + "display_url": "4sq.com/uIsn5l" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.198865, + -37.976547 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351647283290113", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1201397509/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 112411933, + "profile_text_color": "333333", + "followers_count": 158, + "profile_sidebar_border_color": "eeeeee", + "id_str": "112411933", + "profile_background_color": "131516", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 2501, + "description": "What you see is what you get!", + "friends_count": 562, + "location": "iPhone: -38.086694,145.286178", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1201397509/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/186786456/Calder_20-11-10_000.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/186786456/Calder_20-11-10_000.jpg", + "name": "Nyc O'Halloran", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 137, + "screen_name": "VK3NYC", + "notifications": null, + "url": "http://www.MotorvateMelbourne.com", + "created_at": "Mon Feb 08 11:59:41 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.976547, + 145.198865 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:01:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e14f919", + "_rev": "1-e642cf66c16c9832abb9d54629f86e09", + "oldid": "4eb38d233de67c5117000291", + "contributors": null, + "truncated": false, + "text": "Dinner :) (@ Dumplings Plus) http://t.co/arGM4D9h", + "in_reply_to_status_id": null, + "id": 132351665037778940, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 29, + 49 + ], + "url": "http://t.co/arGM4D9h", + "expanded_url": "http://4sq.com/vTASXT", + "display_url": "4sq.com/vTASXT" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.964751, + -37.811747 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351665037778945", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615361269/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 150537088, + "profile_text_color": "3E4415", + "followers_count": 84, + "profile_sidebar_border_color": "829D5E", + "id_str": "150537088", + "profile_background_color": "352726", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 5929, + "description": "Raymond Siu. 17. Gamer. Xbox 360. Tennis. Essendon. Australia. \nClick the 'Follow' Button on @Guineaa s profile cause she's quite simply amazing! =]", + "friends_count": 230, + "location": "Melbourne!!", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1615361269/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Raymond Siuッ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 41, + "screen_name": "RayRayy_s", + "notifications": null, + "url": null, + "created_at": "Tue Jun 01 05:16:34 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.811747, + 144.964751 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:01:10 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e14fbae", + "_rev": "1-9633bae9bb23bcfb9fb39841f37e7203", + "oldid": "4eb38d263de67c5117000292", + "contributors": null, + "truncated": false, + "text": "Beer and sunshine! (@ Belgian Beer Cafe Bluestone) http://t.co/HUaVkWfK", + "in_reply_to_status_id": null, + "id": 132351677754912770, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 51, + 71 + ], + "url": "http://t.co/HUaVkWfK", + "expanded_url": "http://4sq.com/t13UO1", + "display_url": "4sq.com/t13UO1" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98086989, + -37.84758714 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351677754912769", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504411463/bok_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15420301, + "profile_text_color": "333333", + "followers_count": 323, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15420301", + "profile_background_color": "C0DEED", + "listed_count": 30, + "utc_offset": 36000, + "statuses_count": 10413, + "description": "Author of iTransit, tramTRACKER for iPhone and other stuff. Developer in Melbourne. All opinions my own.", + "friends_count": 133, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1504411463/bok_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robert Amos", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 36, + "screen_name": "bok_", + "notifications": null, + "url": null, + "created_at": "Sun Jul 13 23:59:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.84758714, + 144.98086989 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:01:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1508f0", + "_rev": "1-588d1b9b6e7ace1070f75a4ce069bf77", + "oldid": "4eb38d293de67c5117000293", + "contributors": null, + "truncated": false, + "text": "Hello wedding reception. (@ Museum of Contemporary Art) http://t.co/b5obMi3J", + "in_reply_to_status_id": null, + "id": 132351690505592830, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 56, + 76 + ], + "url": "http://t.co/b5obMi3J", + "expanded_url": "http://4sq.com/ugFerL", + "display_url": "4sq.com/ugFerL" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.209592, + -33.86025398 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351690505592833", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1175112271/me_normal.gif", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14556874, + "profile_text_color": "333333", + "followers_count": 1207, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14556874", + "profile_background_color": "C0DEED", + "listed_count": 57, + "utc_offset": 36000, + "statuses_count": 18715, + "description": "Marketing. Music. Sport. Travel. Also have a running blog: http://thetonetrains.com.", + "friends_count": 960, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1175112271/me_normal.gif", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/173957036/moenjodaro.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/173957036/moenjodaro.jpg", + "name": "Tony", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "thetone", + "notifications": null, + "url": "http://itsgoodos.com", + "created_at": "Sun Apr 27 10:09:13 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86025398, + 151.209592 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:01:16 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e150a4d", + "_rev": "1-32633e16685d534125b4eac1e5922679", + "oldid": "4eb38d2b3de67c5117000294", + "favorited": false, + "in_reply_to_user_id": 302337943, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Why_AH haha don't hate the player?! Lmaooo #YouKnowTheRest", + "created_at": "Fri Nov 04 07:01:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132331752042668032", + "coordinates": { + "type": "Point", + "coordinates": [ + 152.99964088, + -27.47748237 + ] + }, + "id": 132351695551332350, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 302337943, + "id_str": "302337943", + "screen_name": "Why_AH", + "name": "Uaea Apu'ula" + } + ], + "hashtags": [ + { + "indices": [ + 44, + 59 + ], + "text": "YouKnowTheRest" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132331752042668030, + "in_reply_to_screen_name": "Why_AH", + "id_str": "132351695551332352", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.47748237, + 152.99964088 + ] + }, + "in_reply_to_user_id_str": "302337943", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1548470664/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 375645715, + "profile_text_color": "333333", + "followers_count": 54, + "profile_sidebar_border_color": "C0DEED", + "id_str": "375645715", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 698, + "description": "PROUD BRONCO, QLD MAROON, CHELSEA FC, BRISBANE ROAR,LE MANU, WALLABY, AND QUEENSLAND REDS SUPPORTER!! \r\n", + "friends_count": 176, + "location": "Brisbane", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1548470664/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bruce Pomate", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "pomate711", + "notifications": null, + "url": null, + "created_at": "Sun Sep 18 14:03:21 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e151579", + "_rev": "1-130601b76cc990fe573415e3ad1497a3", + "oldid": "4eb38d313de67c5117000295", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1370753873/showerteaser_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 57250289, + "profile_text_color": "333333", + "followers_count": 150, + "protected": false, + "location": "Australia", + "default_profile_image": false, + "id_str": "57250289", + "utc_offset": 28800, + "statuses_count": 3734, + "description": "Wannabe writer & artist, stuck in Australia. Sometimes I may say slightly NSFW things...working on not", + "friends_count": 138, + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1370753873/showerteaser_normal.jpg", + "following": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/195865420/Torture.png", + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/195865420/Torture.png", + "screen_name": "Aresues", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "name": "Aresues", + "notifications": null, + "url": "http://www.furaffinity.net/user/aresues", + "created_at": "Thu Jul 16 05:10:48 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "profile_sidebar_border_color": "C0DEED", + "default_profile": false, + "is_translator": false, + "listed_count": 1 + }, + "favorited": false, + "contributors": null, + "truncated": false, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@laceaurora @pdawgydog aww that's so sweet of you!!", + "created_at": "Fri Nov 04 07:01:23 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": "132348052261445632", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.96731203, + -32.07602977 + ] + }, + "id": 132351720482279420, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 79579762, + "screen_name": "laceaurora", + "id_str": "79579762", + "name": "Lace or Roan" + }, + { + "indices": [ + 12, + 22 + ], + "id": 23996170, + "screen_name": "Pdawgydog", + "id_str": "23996170", + "name": "Dog" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132348052261445630, + "place": null, + "id_str": "132351720482279424", + "in_reply_to_screen_name": "laceaurora", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07602977, + 115.96731203 + ] + }, + "in_reply_to_user_id_str": "79579762", + "in_reply_to_user_id": 79579762 + }, + { + "_id": "51f39676462cca21859bd92d8e1516ff", + "_rev": "1-fe6a2f7d7a22346f77cc12f15e4057fc", + "oldid": "4eb38d383de67c5117000296", + "favorited": false, + "in_reply_to_user_id": 45328589, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@lilijeanberry @joshdaveta he's sex on legs!!!", + "created_at": "Fri Nov 04 07:01:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351659253825536", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00388254, + -37.92916032 + ] + }, + "id": 132351752740675580, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 45328589, + "id_str": "45328589", + "screen_name": "lilijeanberry", + "name": "Lili Jean Berry" + }, + { + "indices": [ + 15, + 26 + ], + "id": 23920889, + "id_str": "23920889", + "screen_name": "joshdaveta", + "name": "Josh R H Daveta" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132351659253825540, + "in_reply_to_screen_name": "lilijeanberry", + "id_str": "132351752740675584", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.92916032, + 145.00388254 + ] + }, + "in_reply_to_user_id_str": "45328589", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596815916/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22840845, + "profile_text_color": "333333", + "followers_count": 1298, + "profile_sidebar_border_color": "eeeeee", + "id_str": "22840845", + "profile_background_color": "B2DFDA", + "listed_count": 21, + "utc_offset": 36000, + "statuses_count": 26047, + "description": "Pop culture & concert lover. Huge @katyperry fan! Seen KP live 8 times, met 4 times, and danced on stage with her 3 times! KatyCat for life =]", + "friends_count": 483, + "location": "Melbourne, Victoria", + "profile_link_color": "93A644", + "profile_image_url": "http://a2.twimg.com/profile_images/1596815916/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Oliver-Todd Hunter", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "OliverTwist26", + "notifications": null, + "url": "http://www.youtube.com/user/OTwist26", + "created_at": "Wed Mar 04 21:52:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e151b1c", + "_rev": "1-b810fd550413ccf33272633567aeade2", + "oldid": "4eb38d3c3de67c5117000297", + "favorited": false, + "in_reply_to_user_id": 242458906, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@evilCookiemaker He just escaped a Turkish prison and gave an orphanage a bunch of money.", + "created_at": "Fri Nov 04 07:01:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351150266654720", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9189282, + -32.07726836 + ] + }, + "id": 132351769270423550, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 242458906, + "id_str": "242458906", + "screen_name": "evilCookiemaker", + "name": "Amanda-kun" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132351150266654720, + "in_reply_to_screen_name": "evilCookiemaker", + "id_str": "132351769270423552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07726836, + 115.9189282 + ] + }, + "in_reply_to_user_id_str": "242458906", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "profile_sidebar_fill_color": "0fbffa", + "id": 187192166, + "profile_text_color": "000000", + "followers_count": 158, + "profile_sidebar_border_color": "000000", + "id_str": "187192166", + "profile_background_color": "a8a3c9", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 20039, + "description": "God complex, Comedy Complex, Complex Complex, Complexion Complex and Apartment Complex.", + "friends_count": 97, + "location": "Australia", + "profile_link_color": "294dc2", + "profile_image_url": "http://a1.twimg.com/profile_images/1610321915/Anuma_1_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/223345686/Hella_Yukari.png", + "name": "Rory Ma-Ch-Ell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 134, + "screen_name": "RoryMachell", + "notifications": null, + "url": null, + "created_at": "Sun Sep 05 14:47:45 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e152848", + "_rev": "1-b98585c1970e86a252d57581136f8698", + "oldid": "4eb38d3f3de67c5117000298", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 4 km/h SSE. Barometer 999.3 hPa, Falling. Temperature 22.0 °C. Rain today 0.0 mm. Humidity 65%", + "created_at": "Fri Nov 04 07:01:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 154.23138889, + -37.99416667 + ] + }, + "id": 132351780980932600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351780980932608", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.99416667, + 154.23138889 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1270431771/weatherstn_normal_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 198412791, + "profile_text_color": "663B12", + "followers_count": 22, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "198412791", + "profile_background_color": "C6E2EE", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 14531, + "description": "Hallam Station shows the current and forecast weather, daily rainfall and temperature records,and a live display of the Melbourne pages updated every 10 minutes", + "friends_count": 58, + "location": "Hallam Melbourne Australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a0.twimg.com/profile_images/1270431771/weatherstn_normal_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Gary ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "HallamWeather", + "notifications": null, + "url": "http://www.aussiedownunder.net/", + "created_at": "Mon Oct 04 06:59:08 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e153150", + "_rev": "1-0831dcf586fc6c4556ee333bccbc4f8a", + "oldid": "4eb38d453de67c5117000299", + "favorited": false, + "in_reply_to_user_id": 17800512, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@gordongraham @TonyAbbottMHR is fast becoming a liability. Should be much sooner than that. #auspol", + "created_at": "Fri Nov 04 07:01:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350967512449024", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.96539795, + -32.07902133 + ] + }, + "id": 132351805572128770, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 17800512, + "id_str": "17800512", + "screen_name": "gordongraham", + "name": "Gordon Graham" + }, + { + "indices": [ + 14, + 28 + ], + "id": 93766096, + "id_str": "93766096", + "screen_name": "TonyAbbottMHR", + "name": "Tony Abbott" + } + ], + "hashtags": [ + { + "indices": [ + 92, + 99 + ], + "text": "auspol" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132350967512449020, + "in_reply_to_screen_name": "gordongraham", + "id_str": "132351805572128769", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.07902133, + 115.96539795 + ] + }, + "in_reply_to_user_id_str": "17800512", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572527461/6YMU7283_normal", + "profile_sidebar_fill_color": "ffffff", + "id": 46613797, + "profile_text_color": "333333", + "followers_count": 47, + "profile_sidebar_border_color": "eeeeee", + "id_str": "46613797", + "profile_background_color": "B2DFDA", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 976, + "description": "An interested observer, and participant of life. ", + "friends_count": 156, + "location": "Perth, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/1572527461/6YMU7283_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Simone ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "InMyOpinion01", + "notifications": null, + "url": null, + "created_at": "Fri Jun 12 08:49:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e153a8a", + "_rev": "1-7ff3f543160e5e66c5e4482a4fc465ab", + "oldid": "4eb38d453de67c511700029a", + "favorited": false, + "in_reply_to_user_id": 51305605, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@chris_bloke enables v6", + "created_at": "Fri Nov 04 07:01:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351677243203584", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.89563658, + -37.79514795 + ] + }, + "id": 132351806280962050, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 51305605, + "id_str": "51305605", + "screen_name": "chris_bloke", + "name": "Chris Samuel" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132351677243203580, + "in_reply_to_screen_name": "chris_bloke", + "id_str": "132351806280962048", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79514795, + 144.89563658 + ] + }, + "in_reply_to_user_id_str": "51305605", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1452836827/IMG_0030_-_20110721-small_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 777055, + "profile_text_color": "333333", + "followers_count": 258, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "777055", + "profile_background_color": "022330", + "listed_count": 23, + "utc_offset": 36000, + "statuses_count": 8624, + "description": "You can't know you're right if you're never wrong.", + "friends_count": 179, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1452836827/IMG_0030_-_20110721-small_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Wade Roberts", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "incorrect", + "notifications": null, + "url": null, + "created_at": "Sat Feb 17 06:33:16 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e153cd5", + "_rev": "1-97aed8f518e4e7acb9863e3773beff61", + "oldid": "4eb38d463de67c511700029b", + "contributors": null, + "truncated": false, + "text": "Pick up time.... (@ Victoria Park Primary School) http://t.co/MLy7vrAl", + "in_reply_to_status_id": null, + "id": 132351807673475070, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 50, + 70 + ], + "url": "http://t.co/MLy7vrAl", + "expanded_url": "http://4sq.com/rOsQl5", + "display_url": "4sq.com/rOsQl5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.892003, + -31.972158 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132351807673475072", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1506099587/kFTkP3k5_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 216131818, + "profile_text_color": "333333", + "followers_count": 45, + "profile_sidebar_border_color": "C0DEED", + "id_str": "216131818", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 2028, + "description": "Father of two gorgeous kids, husband of beautiful wife....", + "friends_count": 51, + "location": "S 30°44' 0'' / E 121°28' 0''", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1506099587/kFTkP3k5_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Monza Sukadis", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "monzaskd", + "notifications": null, + "url": null, + "created_at": "Mon Nov 15 21:45:47 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.972158, + 115.892003 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:01:44 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1545dd", + "_rev": "1-7ebe2eb3963db1f813b1677d1848292f", + "oldid": "4eb38d4f3de67c511700029c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "There's two little boys who are Japanese twins next to me on the train. Oh my gosh, so cute!", + "created_at": "Fri Nov 04 07:01:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9084482, + -37.7747433 + ] + }, + "id": 132351847120904200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351847120904192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.7747433, + 144.9084482 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 393046239, + "profile_text_color": "333333", + "followers_count": 23, + "profile_sidebar_border_color": "C0DEED", + "id_str": "393046239", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 364, + "description": "Hi there, I'm Mandy. I'm average. I like things and love someone, and yeah.", + "friends_count": 45, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Mandy Gu", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 132, + "screen_name": "mandyguzza", + "notifications": null, + "url": "http://mandy-blah-xox.tumblr.com/", + "created_at": "Mon Oct 17 23:12:51 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1549ad", + "_rev": "1-f49199f57fb3610b0de6d6d9c6bda57b", + "oldid": "4eb38d603de67c511700029d", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "OH: \"Hey, let's sit on the back seat and play hip hop on our telephones!\"", + "created_at": "Fri Nov 04 07:02:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.88173661, + -34.41208993 + ] + }, + "id": 132351918210158600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351918210158592", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.41208993, + 150.88173661 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "profile_sidebar_fill_color": "252429", + "id": 43884518, + "profile_text_color": "aba8ab", + "followers_count": 420, + "profile_sidebar_border_color": "00f535", + "id_str": "43884518", + "profile_background_color": "1A1B1F", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 19592, + "description": "19, University student and IT sector drone. . I tweet what is on my mind and have an obsession with tech and shiny things. (Views expressed are my own)", + "friends_count": 469, + "location": "Wollongong, NSW", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/248428251/background.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/248428251/background.jpg", + "name": "Mark Caetano", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 37, + "screen_name": "C1VX", + "notifications": null, + "url": "http://www.mc.id.au", + "created_at": "Mon Jun 01 13:35:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1549d9", + "_rev": "1-61946fec4892d59c49294aec725c7358", + "oldid": "4eb38d623de67c511700029e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Bought tomorrow's outfit on my lunchbreak. Will try it on again when i get home. Sana kahit nagmadali ako mag-shop, di ako magsisi. Hehe", + "created_at": "Fri Nov 04 07:02:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.59850524, + -34.92235719 + ] + }, + "id": 132351929803218940, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132351929803218945", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.92235719, + 138.59850524 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1541057587/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 58401489, + "profile_text_color": "333333", + "followers_count": 20, + "profile_sidebar_border_color": "C0DEED", + "id_str": "58401489", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 393, + "description": "", + "friends_count": 40, + "location": "Adelaide", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1541057587/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "rachel jocson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "juniejocson", + "notifications": null, + "url": null, + "created_at": "Mon Jul 20 05:40:53 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e155945", + "_rev": "1-0ffcb223875379d1bb58675fe2bb7eb2", + "oldid": "4eb38d653de67c511700029f", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF ? Follow me please?", + "created_at": "Fri Nov 04 07:02:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132351940389646340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132351940389646337", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3312, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 156, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e155f42", + "_rev": "1-33c8523669108289fcd1f4b52480a90b", + "oldid": "4eb38d753de67c51170002a0", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF :(", + "created_at": "Fri Nov 04 07:02:32 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351651217539072", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132352009583075330, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132351651217539070, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132352009583075329", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3313, + "description": "Kaylene. year 10. Belieber.Dancer.Singer.\r\n", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 156, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e156d83", + "_rev": "1-10d5b30e6807f1c8d22b5d2f0657cb32", + "oldid": "4eb38d793de67c51170002a1", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1573101697/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 155789518, + "profile_text_color": "666666", + "followers_count": 22, + "protected": false, + "location": "Pyrmont, Australia", + "default_profile_image": false, + "id_str": "155789518", + "utc_offset": 36000, + "statuses_count": 209, + "description": "I am the designer of my own catastrophe.", + "friends_count": 31, + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1573101697/image_normal.jpg", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_color": "1A1B1F", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "screen_name": "rarrchelle", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "name": "Jean-Rochelle", + "notifications": null, + "url": "http://rarr.wordpress.com", + "created_at": "Tue Jun 15 02:52:10 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "profile_sidebar_border_color": "181A1E", + "default_profile": false, + "is_translator": false, + "listed_count": 0 + }, + "favorited": false, + "contributors": null, + "truncated": false, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#ffs let's make this official, never catching the bus again have waited half an hour I could have walked home twice!!", + "created_at": "Fri Nov 04 07:02:35 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20717747, + -33.86839675 + ] + }, + "id": 132352022740606980, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 4 + ], + "text": "ffs" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "place": null, + "id_str": "132352022740606976", + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86839675, + 151.20717747 + ] + }, + "in_reply_to_user_id_str": null, + "in_reply_to_user_id": null + }, + { + "_id": "51f39676462cca21859bd92d8e157c7d", + "_rev": "1-e6010609b4af3c060fc0771a4af81c76", + "oldid": "4eb38d7a3de67c51170002a2", + "contributors": null, + "truncated": false, + "text": "Looks like its going to be a stunning weekend! http://t.co/D5UWz3EM", + "in_reply_to_status_id": null, + "id": 132352025450131460, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY1d0aCMAEdMmz.jpg", + "expanded_url": "http://twitter.com/jimsmac/status/132352025450131456/photo/1", + "display_url": "pic.twitter.com/D5UWz3EM", + "url": "http://t.co/D5UWz3EM", + "sizes": { + "large": { + "h": 240, + "w": 160, + "resize": "fit" + }, + "small": { + "h": 240, + "w": 160, + "resize": "fit" + }, + "medium": { + "h": 240, + "w": 160, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132352025454325761", + "indices": [ + 47, + 67 + ], + "type": "photo", + "id": 132352025454325760, + "media_url": "http://p.twimg.com/AdY1d0aCMAEdMmz.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.112187, + -38.200079 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Photos on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352025450131456", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/57625970/mypictr_100x150_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 10513362, + "profile_text_color": "333333", + "followers_count": 41, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "10513362", + "profile_background_color": "ACDED6", + "listed_count": 0, + "utc_offset": 0, + "statuses_count": 130, + "description": "", + "friends_count": 82, + "location": "", + "profile_link_color": "038543", + "profile_image_url": "http://a1.twimg.com/profile_images/57625970/mypictr_100x150_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme18/bg.gif", + "name": "James Budd", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "jimsmac", + "notifications": null, + "url": null, + "created_at": "Sat Nov 24 08:55:11 +0000 2007", + "contributors_enabled": false, + "time_zone": "London", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.200079, + 145.112187 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:02:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e158185", + "_rev": "1-40be366d7bfd491a9ba93d865ed730c4", + "oldid": "4eb38d813de67c51170002a3", + "contributors": null, + "truncated": false, + "text": "I'm at Taste & Graze (15/16 Mandurah Tce, Mandurah) http://t.co/Jx0LiqOI", + "in_reply_to_status_id": null, + "id": 132352059637895170, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 52, + 72 + ], + "url": "http://t.co/Jx0LiqOI", + "expanded_url": "http://4sq.com/tZrnm4", + "display_url": "4sq.com/tZrnm4" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.7190354, + -32.5335432 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352059637895168", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1520458385/DSC048232_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 20663263, + "profile_text_color": "EEF0DA", + "followers_count": 415, + "profile_sidebar_border_color": "05090A", + "id_str": "20663263", + "profile_background_color": "D7E0A7", + "listed_count": 18, + "utc_offset": 28800, + "statuses_count": 6671, + "description": "PR & marketing communications dude by day; UWA rower, Murdoch student and aviator by moonlight. Studying PR, HR & tourism and hospitality. ", + "friends_count": 579, + "location": "Perth, Western Australia", + "profile_link_color": "092032", + "profile_image_url": "http://a0.twimg.com/profile_images/1520458385/DSC048232_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/326006576/x88618a6e68d5834a835674f9db01b7c.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/326006576/x88618a6e68d5834a835674f9db01b7c.jpg", + "name": "Sean McMahon", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "SeanBMcMahon", + "notifications": null, + "url": "http://about.me/sean.mcmahon", + "created_at": "Thu Feb 12 09:03:10 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.5335432, + 115.7190354 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:02:44 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e158f82", + "_rev": "1-3d601b248d9d4357c5154c6f53b3b0c6", + "oldid": "4eb38d863de67c51170002a4", + "contributors": null, + "truncated": false, + "text": "I'm at Waverley Gardens Shopping Centre (271-325 Police Rd, At Jacksons Rd, Mulgrave) http://t.co/ldpBdboK", + "in_reply_to_status_id": null, + "id": 132352080470999040, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 86, + 106 + ], + "url": "http://t.co/ldpBdboK", + "expanded_url": "http://4sq.com/tcqgDw", + "display_url": "4sq.com/tcqgDw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.18975496, + -37.93554999 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352080470999042", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1412239001/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 24153998, + "profile_text_color": "333333", + "followers_count": 36, + "profile_sidebar_border_color": "C0DEED", + "id_str": "24153998", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 1291, + "description": "", + "friends_count": 141, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1412239001/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Nathan Larkin", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "abocNathan", + "notifications": null, + "url": "http://fixiedouchebag.blogspot.com", + "created_at": "Fri Mar 13 10:37:08 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.93554999, + 145.18975496 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:02:49 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e159c71", + "_rev": "1-5387ebb0f10a10a06e20d381307d5415", + "oldid": "4eb38d923de67c51170002a5", + "favorited": false, + "in_reply_to_user_id": 9347472, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "heading @yorkbutter when @mildlycurious comes to take over baby minding duty... Might be a bit tardy cc @tysonlundbech", + "created_at": "Fri Nov 04 07:03:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344153563611136", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.88856507, + -37.81246071 + ] + }, + "id": 132352128214765570, + "entities": { + "user_mentions": [ + { + "indices": [ + 9, + 20 + ], + "id": 349170833, + "id_str": "349170833", + "screen_name": "YorkButter", + "name": "York Butter Factory" + }, + { + "indices": [ + 26, + 40 + ], + "id": 14540235, + "id_str": "14540235", + "screen_name": "mildlycurious", + "name": "mildlycurious" + }, + { + "indices": [ + 105, + 119 + ], + "id": 9347472, + "id_str": "9347472", + "screen_name": "tysonlundbech", + "name": "makes stuff." + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344153563611140, + "in_reply_to_screen_name": "tysonlundbech", + "id_str": "132352128214765569", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81246071, + 144.88856507 + ] + }, + "in_reply_to_user_id_str": "9347472", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1258349738/Steve_Sammartino_-_close_up_normal.png", + "profile_sidebar_fill_color": "d9d9ce", + "id": 12021112, + "profile_text_color": "333333", + "followers_count": 2695, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "12021112", + "profile_background_color": "ffffff", + "listed_count": 165, + "utc_offset": 36000, + "statuses_count": 14864, + "description": "Person. www.stevesammartino.com", + "friends_count": 399, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1258349738/Steve_Sammartino_-_close_up_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/97648644/Picture_133.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/97648644/Picture_133.jpg", + "name": "Steve Sammartino", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1491, + "screen_name": "sammartino", + "notifications": null, + "url": "http://www.rentoid.com", + "created_at": "Wed Jan 09 10:52:42 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e15a509", + "_rev": "1-3333c4f1b2d107e55380789edaac3e51", + "oldid": "4eb38d983de67c51170002a6", + "contributors": null, + "truncated": false, + "text": "The best dumplings in Sydney. (@ New Shanghai (新上海)) [pic]: http://t.co/sX8cZ6wl", + "in_reply_to_status_id": null, + "id": 132352153242173440, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 60, + 80 + ], + "url": "http://t.co/sX8cZ6wl", + "expanded_url": "http://4sq.com/vnWwCc", + "display_url": "4sq.com/vnWwCc" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18607998, + -33.79509064 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352153242173440", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1192940316/image_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 124049639, + "profile_text_color": "634047", + "followers_count": 195, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "124049639", + "profile_background_color": "EDECE9", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 581, + "description": "Making it all about Love, Laughter, Music, Friendship, Passion, Food, Wine, Dance, Honesty, Faith, Hope, Rainbows, Trees, Gardenia's and Vintage Dresses....", + "friends_count": 384, + "location": "Sydney", + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1192940316/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "Iolanda Trovatello", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "SoulSpiritSass", + "notifications": null, + "url": "http://on.fb.me/i1oazW", + "created_at": "Thu Mar 18 02:45:56 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.79509064, + 151.18607998 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:03:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e15b196", + "_rev": "1-ed3b61e5fd60e488f06f0a09061d73ac", + "oldid": "4eb38dab3de67c51170002a7", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "BOYS BOYS BOYS FUXK FEST IS RAGING. BRING YOUR CUTE BOY CUNTS AND CUMM FILLED COCKS FOLLOW ME RAPE MY DM CUMM IN FREE FUCKS FOR NEW BOYS", + "created_at": "Fri Nov 04 07:03:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132352235635093500, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352235635093504", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 909, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9575, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1709, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e15b91d", + "_rev": "1-e2abe49ac44176c5d6d12e5bf373a445", + "oldid": "4eb38db03de67c51170002a8", + "favorited": false, + "in_reply_to_user_id": 271854163, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@savagedd sucker", + "created_at": "Fri Nov 04 07:03:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350591367262208", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.17973317, + -33.93386674 + ] + }, + "id": 132352255524470780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 271854163, + "id_str": "271854163", + "screen_name": "savagedd", + "name": "Thomas Savage" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350591367262200, + "in_reply_to_screen_name": "savagedd", + "id_str": "132352255524470784", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93386674, + 151.17973317 + ] + }, + "in_reply_to_user_id_str": "271854163", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595399771/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16257578, + "profile_text_color": "333333", + "followers_count": 227, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16257578", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 6575, + "description": "Twitter account of sean mildred. word to big bird", + "friends_count": 123, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1595399771/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sean Patrick Mildred", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "SeanMildred", + "notifications": null, + "url": "http://seanyptyp.tumblr.com", + "created_at": "Fri Sep 12 15:16:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e15c2eb", + "_rev": "1-2bbd488d531da540318113e64033d00a", + "oldid": "4eb38db23de67c51170002a9", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@brntstpl7: Where the fuck is all the weed hiding in this city” thats a serious problem in my life right now", + "created_at": "Fri Nov 04 07:03:32 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.77088009, + -31.78929569 + ] + }, + "id": 132352261807550460, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 11 + ], + "id": 246241419, + "id_str": "246241419", + "screen_name": "brntstpl7", + "name": "brnt stapes" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352261807550464", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.78929569, + 115.77088009 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607213395/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 346537909, + "profile_text_color": "333333", + "followers_count": 124, + "profile_sidebar_border_color": "C0DEED", + "id_str": "346537909", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 409, + "description": "Im just a shady cunt who like's hip hop & Masterchef. #followback #dontbescaredhomie", + "friends_count": 687, + "location": "Perth City, Western Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1607213395/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Micky-Dee", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "ShadyMckee", + "notifications": null, + "url": null, + "created_at": "Mon Aug 01 12:39:42 +0000 2011", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e15ce17", + "_rev": "1-809b20b2141b58efeaaed692f4ff5869", + "oldid": "4eb38db23de67c51170002aa", + "contributors": null, + "truncated": false, + "text": "I'm at Cabana Bar & Lounge (80 Christie St., Nicholson St., St Leonards) http://t.co/lCurHGhj", + "in_reply_to_status_id": null, + "id": 132352260444397570, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 73, + 93 + ], + "url": "http://t.co/lCurHGhj", + "expanded_url": "http://4sq.com/s1Bpbd", + "display_url": "4sq.com/s1Bpbd" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19564025, + -33.824463 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352260444397568", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/131585879/motorbikekylie_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 30178594, + "profile_text_color": "333333", + "followers_count": 271, + "profile_sidebar_border_color": "C0DEED", + "id_str": "30178594", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 2062, + "description": "I am a fabulous homosexual, recently mentioned on qanda", + "friends_count": 1003, + "location": "sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/131585879/motorbikekylie_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Christopher Douglas", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "kylieminge", + "notifications": null, + "url": null, + "created_at": "Fri Apr 10 06:56:04 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.824463, + 151.19564025 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:03:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e15d5d0", + "_rev": "1-ae8ef9c8e04a12b7d76a162836f8bcdf", + "oldid": "4eb38db23de67c51170002ab", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "An outstretched hand isn't meant to be slapped.", + "created_at": "Fri Nov 04 07:03:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.11080749, + -37.85511103 + ] + }, + "id": 132352263862751230, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352263862751232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85511103, + 145.11080749 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12624, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e15e0c7", + "_rev": "1-70f1f50420d38040cf7c91eede886c0e", + "oldid": "4eb38db53de67c51170002ac", + "favorited": false, + "in_reply_to_user_id": 159104243, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@The_Man_Mundine", + "created_at": "Fri Nov 04 07:03:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.0564892, + -32.73836758 + ] + }, + "id": 132352274830856200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 159104243, + "id_str": "159104243", + "screen_name": "The_Man_Mundine", + "name": "Anthony Mundine " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "The_Man_Mundine", + "id_str": "132352274830856192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.73836758, + 152.0564892 + ] + }, + "in_reply_to_user_id_str": "159104243", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1611200272/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 400294815, + "profile_text_color": "333333", + "followers_count": 8, + "profile_sidebar_border_color": "C0DEED", + "id_str": "400294815", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 6, + "description": "Love life, family,friends,sport,music, movies and reading. Life is a journey, enjoy your time and use it well!", + "friends_count": 51, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1611200272/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sue Smith", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Suezee61", + "notifications": null, + "url": null, + "created_at": "Fri Oct 28 20:11:08 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e15ebda", + "_rev": "1-5d951bafd81769ab5f896f06dd10a7a5", + "oldid": "4eb38db53de67c51170002ad", + "favorited": false, + "in_reply_to_user_id": 7050962, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@fictillius good job, Ev.", + "created_at": "Fri Nov 04 07:03:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350244930322432", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.87994306, + -34.41007178 + ] + }, + "id": 132352276852523000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 7050962, + "id_str": "7050962", + "screen_name": "fictillius", + "name": "Fictillius" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350244930322430, + "in_reply_to_screen_name": "fictillius", + "id_str": "132352276852523008", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.41007178, + 150.87994306 + ] + }, + "in_reply_to_user_id_str": "7050962", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "profile_sidebar_fill_color": "252429", + "id": 43884518, + "profile_text_color": "aba8ab", + "followers_count": 420, + "profile_sidebar_border_color": "00f535", + "id_str": "43884518", + "profile_background_color": "1A1B1F", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 19594, + "description": "19, University student and IT sector drone. . I tweet what is on my mind and have an obsession with tech and shiny things. (Views expressed are my own)", + "friends_count": 469, + "location": "Wollongong, NSW", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/248428251/background.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/248428251/background.jpg", + "name": "Mark Caetano", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 37, + "screen_name": "C1VX", + "notifications": null, + "url": "http://www.mc.id.au", + "created_at": "Mon Jun 01 13:35:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e15f7e3", + "_rev": "1-42ebb03dca5a218c68ec10a2b432776b", + "oldid": "4eb38db73de67c51170002ae", + "contributors": null, + "truncated": false, + "text": "Pick upv my bday boy :) (@ Victoria Park Primary School w/ @monzaskd) http://t.co/5LZrQVyL", + "in_reply_to_status_id": null, + "id": 132352284402253820, + "entities": { + "user_mentions": [ + { + "indices": [ + 59, + 68 + ], + "id": 216131818, + "id_str": "216131818", + "screen_name": "monzaskd", + "name": "Monza Sukadis" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/5LZrQVyL", + "expanded_url": "http://4sq.com/twXFKb", + "display_url": "4sq.com/twXFKb" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.892003, + -31.972158 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352284402253824", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615575748/J5qrO8j6_normal", + "profile_sidebar_fill_color": "E5507E", + "id": 16428669, + "profile_text_color": "362720", + "followers_count": 91, + "profile_sidebar_border_color": "CC3366", + "id_str": "16428669", + "profile_background_color": "FF6699", + "listed_count": 4, + "utc_offset": 28800, + "statuses_count": 5160, + "description": "Mother of two gorgeous kiddos...wife of handsome husband..full time mommy :)", + "friends_count": 97, + "location": "perth, australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a1.twimg.com/profile_images/1615575748/J5qrO8j6_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "Leni Monza", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "azevaperth", + "notifications": null, + "url": null, + "created_at": "Wed Sep 24 01:29:53 +0000 2008", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.972158, + 115.892003 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:03:38 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e15ffd4", + "_rev": "1-488fe98046d1b6d52a25587836b97643", + "oldid": "4eb38dbc3de67c51170002af", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Bridesmaids? @CharMcShane", + "created_at": "Fri Nov 04 07:03:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 147.61650253, + -37.80448732 + ] + }, + "id": 132352305398943740, + "entities": { + "user_mentions": [ + { + "indices": [ + 13, + 25 + ], + "id": 76586496, + "id_str": "76586496", + "screen_name": "CharMcShane", + "name": "Charlotte McShane" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352305398943745", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80448732, + 147.61650253 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1484426543/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 45290075, + "profile_text_color": "989898", + "followers_count": 166, + "profile_sidebar_border_color": "C484AE", + "id_str": "45290075", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1114, + "description": "♥ myfurbubs ♥ thebeach ♥ mybubs ♥ cake ♥ myfamily ♥ home ♥ myfriends ♥ vegan ♥ mylife ♥", + "friends_count": 192, + "location": "Metung Australia ✈", + "profile_link_color": "D1A7CE", + "profile_image_url": "http://a2.twimg.com/profile_images/1484426543/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/144599706/xadc7cf0c069b02321d2746ee2453b2e.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/144599706/xadc7cf0c069b02321d2746ee2453b2e.png", + "name": "Stephanie McShane ♥", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "steffmcshane", + "notifications": null, + "url": "http://www.facebook.com/steph.mcshane", + "created_at": "Sun Jun 07 05:23:07 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1602ac", + "_rev": "1-2cd140ff049c47f1059e635e89072685", + "oldid": "4eb38dbd3de67c51170002b0", + "contributors": null, + "truncated": false, + "text": "I'm at Public Service Club http://t.co/T0dq8LY1", + "in_reply_to_status_id": null, + "id": 132352308746006530, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 27, + 47 + ], + "url": "http://t.co/T0dq8LY1", + "expanded_url": "http://4sq.com/t43EZ6", + "display_url": "4sq.com/t43EZ6" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02446, + -27.473217 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352308746006529", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1469173847/image_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 31054589, + "profile_text_color": "333333", + "followers_count": 235, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "31054589", + "profile_background_color": "ACDED6", + "listed_count": 11, + "utc_offset": 36000, + "statuses_count": 7489, + "description": "super happy magical taco rape", + "friends_count": 120, + "location": "Brisbane", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1469173847/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme18/bg.gif", + "name": "Ryder Reid", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "ryyder", + "notifications": null, + "url": null, + "created_at": "Tue Apr 14 04:13:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.473217, + 153.02446 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:03:44 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e160a21", + "_rev": "1-44291dd8e9ec85682a7d876b6ff5ca98", + "oldid": "4eb38dc23de67c51170002b1", + "contributors": null, + "truncated": false, + "text": "I'm at Gordons Bay (Battery St, Sydney) [pic]: http://t.co/YNIlol5e", + "in_reply_to_status_id": null, + "id": 132352328618622980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/YNIlol5e", + "expanded_url": "http://4sq.com/sAwpX8", + "display_url": "4sq.com/sAwpX8" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.26405716, + -33.91555014 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352328618622976", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1614915364/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 17230121, + "profile_text_color": "333333", + "followers_count": 390, + "profile_sidebar_border_color": "C0DEED", + "id_str": "17230121", + "profile_background_color": "C0DEED", + "listed_count": 13, + "utc_offset": 3600, + "statuses_count": 20531, + "description": "vleesgeworden blaséheid", + "friends_count": 312, + "location": "sydney\n", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1614915364/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "niels", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "dialupkid", + "notifications": null, + "url": "http://www.dialupkid.nl", + "created_at": "Fri Nov 07 12:24:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Amsterdam", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.91555014, + 151.26405716 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:03:48 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1610ff", + "_rev": "1-350c2dbf93f688453bb610c39569b7de", + "oldid": "4eb38dc23de67c51170002b2", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Very very frisky tonight .. #firstworldproblems", + "created_at": "Fri Nov 04 07:03:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2042416, + -33.8708861 + ] + }, + "id": 132352328522141700, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 28, + 47 + ], + "text": "firstworldproblems" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352328522141696", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8708861, + 151.2042416 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615281895/6jiwgd_normal.jpg", + "profile_sidebar_fill_color": "E6F6F9", + "id": 397908272, + "profile_text_color": "333333", + "followers_count": 94, + "profile_sidebar_border_color": "DBE9ED", + "id_str": "397908272", + "profile_background_color": "DBE9ED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 375, + "description": "Professional and discreet male companion for professional women. #libertine #hedonist #epicurean #BFE #escort #Companion", + "friends_count": 343, + "location": "Sydney and Melbourne", + "profile_link_color": "CC3366", + "profile_image_url": "http://a2.twimg.com/profile_images/1615281895/6jiwgd_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme17/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme17/bg.gif", + "name": "ConcupiscentGuy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "ConcupiscentGuy", + "notifications": null, + "url": null, + "created_at": "Tue Oct 25 09:41:53 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e161ba3", + "_rev": "1-7a9b1bf4e44415310149752ccbca76c7", + "oldid": "4eb38dc73de67c51170002b3", + "favorited": false, + "in_reply_to_user_id": 26032912, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ronanofficial so innocent of Ali :-) lol", + "created_at": "Fri Nov 04 07:03:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347721414750208", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.51503425, + -23.32558745 + ] + }, + "id": 132352348059222020, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 26032912, + "id_str": "26032912", + "screen_name": "ronanofficial", + "name": "Ronan Keating" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347721414750200, + "in_reply_to_screen_name": "ronanofficial", + "id_str": "132352348059222016", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -23.32558745, + 150.51503425 + ] + }, + "in_reply_to_user_id_str": "26032912", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1597187353/DSC02486_normal.JPG", + "profile_sidebar_fill_color": "7AC3EE", + "id": 230672264, + "profile_text_color": "3D1957", + "followers_count": 4, + "profile_sidebar_border_color": "65B0DA", + "id_str": "230672264", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 110, + "description": "You see things and say WHY?, but I dream things and say WHY NOT?.", + "friends_count": 57, + "location": "Down Under", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1597187353/DSC02486_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/349577724/DSC02486.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/349577724/DSC02486.JPG", + "name": "ItsMeJhingAtAussie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 17, + "screen_name": "iLoveYouHoney18", + "notifications": null, + "url": null, + "created_at": "Sun Dec 26 08:50:44 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16227c", + "_rev": "1-c14825f4ff4f417c432af6779058e057", + "oldid": "4eb38dc73de67c51170002b4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "About to do a photo shoot for a pretty girly before her formal. :)", + "created_at": "Fri Nov 04 07:03:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.39014047, + -36.3642105 + ] + }, + "id": 132352352358371330, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352352358371328", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.3642105, + 145.39014047 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607565259/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 34073503, + "profile_text_color": "8a8686", + "followers_count": 101, + "profile_sidebar_border_color": "000000", + "id_str": "34073503", + "profile_background_color": "000000", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 5542, + "description": "18, female, bendigo - victoria. art student. never anything special. i like art.", + "friends_count": 106, + "location": "Australia.", + "profile_link_color": "f5b1e7", + "profile_image_url": "http://a2.twimg.com/profile_images/1607565259/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/123931604/zwall2.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/123931604/zwall2.jpg", + "name": "Alecia Jean Minotti", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 140, + "screen_name": "LEIISHAJEAN", + "notifications": null, + "url": "http://capturemeplease.tumblr.com", + "created_at": "Tue Apr 21 22:41:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e163273", + "_rev": "1-b067a664d6b88e601d4470fd8af62267", + "oldid": "4eb38dd03de67c51170002b5", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "My flight’s status: FINAL CALL QF631 from BNE (4:55 PM AEST) to MEL (8:15 PM AEDT)...see you soon #Melbourne", + "created_at": "Fri Nov 04 07:04:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.1231083, + -27.3874864 + ] + }, + "id": 132352391164076030, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 98, + 108 + ], + "text": "Melbourne" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352391164076032", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.3874864, + 153.1231083 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1286150426/They_Call_Him_Ginger_normal.png", + "profile_sidebar_fill_color": "DDFFCC", + "id": 15337199, + "profile_text_color": "333333", + "followers_count": 286, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "15337199", + "profile_background_color": "9AE4E8", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 2426, + "description": "Financial services product builder and business developer", + "friends_count": 431, + "location": "Victoria, St Kilda", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1286150426/They_Call_Him_Ginger_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4927342/FreeTwitterDesigner.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/4927342/FreeTwitterDesigner.jpg", + "name": "Ian Aspinall", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "iaspinall", + "notifications": null, + "url": "http://www.expounderwithcheese.com", + "created_at": "Mon Jul 07 00:42:12 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16358a", + "_rev": "1-39e4b4cb577bb0d703d58db61111c4f7", + "oldid": "4eb38dd33de67c51170002b6", + "favorited": false, + "in_reply_to_user_id": 106275079, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@TomPTYP what are your plans tomorrow night?", + "created_at": "Fri Nov 04 07:04:06 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132343634312962048", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.17975874, + -33.93382952 + ] + }, + "id": 132352402681626620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 106275079, + "id_str": "106275079", + "screen_name": "TomPTYP", + "name": "Thomas Salkowski" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132343634312962050, + "in_reply_to_screen_name": "TomPTYP", + "id_str": "132352402681626624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93382952, + 151.17975874 + ] + }, + "in_reply_to_user_id_str": "106275079", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595399771/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16257578, + "profile_text_color": "333333", + "followers_count": 227, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16257578", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 6576, + "description": "Twitter account of sean mildred. word to big bird", + "friends_count": 123, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1595399771/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sean Patrick Mildred", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "SeanMildred", + "notifications": null, + "url": "http://seanyptyp.tumblr.com", + "created_at": "Fri Sep 12 15:16:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1635a0", + "_rev": "1-a25b415e0be8a42708680557b591cf75", + "oldid": "4eb38dd63de67c51170002b7", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Sometimes you just need someone to make you smile :)", + "created_at": "Fri Nov 04 07:04:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.03382936, + -33.99949592 + ] + }, + "id": 132352412630523900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352412630523905", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.99949592, + 151.03382936 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1545174975/315554_10150368118630470_668290469_10213957_633976_n-1_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 25809230, + "profile_text_color": "362720", + "followers_count": 98, + "profile_sidebar_border_color": "CC3366", + "id_str": "25809230", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 1740, + "description": "Give a girl a pair of shoes and she can rule the world - Marilyn Monroe\r\nFashion and Music are my only loves", + "friends_count": 85, + "location": "Sydney, Australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a3.twimg.com/profile_images/1545174975/315554_10150368118630470_668290469_10213957_633976_n-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "Jess Fox", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "missfox18", + "notifications": null, + "url": "http://musicmademedoit1.blogspot.com", + "created_at": "Sun Mar 22 11:53:48 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e163bb4", + "_rev": "1-0ab70572477007b884f3fe00ba017105", + "oldid": "4eb38ddc3de67c51170002b8", + "contributors": null, + "truncated": false, + "text": "I'm at Tallebudgera Recreation Centre (1525 Gold Coast Hwy., Palm Beach) http://t.co/ln1IN7dQ", + "in_reply_to_status_id": null, + "id": 132352437561466880, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 73, + 93 + ], + "url": "http://t.co/ln1IN7dQ", + "expanded_url": "http://4sq.com/u97YMJ", + "display_url": "4sq.com/u97YMJ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.4594962, + -28.09900423 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352437561466880", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1604197393/IMG_0429_normal.JPG", + "profile_sidebar_fill_color": "fff700", + "id": 27605991, + "profile_text_color": "006a8a", + "followers_count": 103, + "profile_sidebar_border_color": "009fc7", + "id_str": "27605991", + "profile_background_color": "ffffff", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 8400, + "description": "sports nut, parramatta eels tragic, education, general fun loving goof ball, random tweets too! or was that just all made up to confuse you?!?", + "friends_count": 152, + "location": "Gold Coast, Australia", + "profile_link_color": "00c0f0", + "profile_image_url": "http://a2.twimg.com/profile_images/1604197393/IMG_0429_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/285831674/4c4a7f2919261.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/285831674/4c4a7f2919261.jpg", + "name": "Bradley Watts", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "thewattsy", + "notifications": null, + "url": null, + "created_at": "Mon Mar 30 08:32:36 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.09900423, + 153.4594962 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:04:14 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1642c0", + "_rev": "1-72233a4c998cd33098c4c966703d5d06", + "oldid": "4eb38de83de67c51170002b9", + "favorited": false, + "in_reply_to_user_id": 84278658, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@benhyphenrowe old skool big L zen officery.", + "created_at": "Fri Nov 04 07:04:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351206113812480", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.88852105, + -37.81244455 + ] + }, + "id": 132352486307667970, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 84278658, + "id_str": "84278658", + "screen_name": "benhyphenrowe", + "name": "Ben Rowe" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132351206113812480, + "in_reply_to_screen_name": "benhyphenrowe", + "id_str": "132352486307667969", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81244455, + 144.88852105 + ] + }, + "in_reply_to_user_id_str": "84278658", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1258349738/Steve_Sammartino_-_close_up_normal.png", + "profile_sidebar_fill_color": "d9d9ce", + "id": 12021112, + "profile_text_color": "333333", + "followers_count": 2695, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "12021112", + "profile_background_color": "ffffff", + "listed_count": 165, + "utc_offset": 36000, + "statuses_count": 14865, + "description": "Person. www.stevesammartino.com", + "friends_count": 399, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1258349738/Steve_Sammartino_-_close_up_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/97648644/Picture_133.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/97648644/Picture_133.jpg", + "name": "Steve Sammartino", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1491, + "screen_name": "sammartino", + "notifications": null, + "url": "http://www.rentoid.com", + "created_at": "Wed Jan 09 10:52:42 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1645ba", + "_rev": "1-41c6138096b7d32fa1b236329c3b1914", + "oldid": "4eb38df03de67c51170002ba", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "To be honest, my outfit inspiration was \"how I like to dress up my jack russell when I'm high\". Ion: @gully12 here I come!", + "created_at": "Fri Nov 04 07:04:35 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99884643, + -37.84223714 + ] + }, + "id": 132352524886880260, + "entities": { + "user_mentions": [ + { + "indices": [ + 101, + 109 + ], + "id": 20719649, + "id_str": "20719649", + "screen_name": "gully12", + "name": "Michael" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352524886880256", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84223714, + 144.99884643 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619913671/wyld-stallyns-1_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 15262515, + "profile_text_color": "666666", + "followers_count": 269, + "profile_sidebar_border_color": "e8a215", + "id_str": "15262515", + "profile_background_color": "e8a215", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 2906, + "description": "I'm hotter than Google.", + "friends_count": 101, + "location": "Melbourne, Australia", + "profile_link_color": "b02117", + "profile_image_url": "http://a0.twimg.com/profile_images/1619913671/wyld-stallyns-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Fox Woods", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 239, + "screen_name": "foxmwoods", + "notifications": null, + "url": "http://foxwoods.me", + "created_at": "Sat Jun 28 12:03:48 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e164e26", + "_rev": "1-57ea8950eddd33c4862c80bcd8820743", + "oldid": "4eb38df53de67c51170002bb", + "favorited": false, + "in_reply_to_user_id": 28095267, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@NereadersDigest @OfficialSuze aw shit let's do it", + "created_at": "Fri Nov 04 07:04:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349494292512768", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96304917, + -37.81026815 + ] + }, + "id": 132352542595223550, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 28095267, + "id_str": "28095267", + "screen_name": "NereadersDigest", + "name": "Nerida" + }, + { + "indices": [ + 17, + 30 + ], + "id": 60039837, + "id_str": "60039837", + "screen_name": "OfficialSuze", + "name": "SuzanneSteinbruckner" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349494292512770, + "in_reply_to_screen_name": "NereadersDigest", + "id_str": "132352542595223552", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81026815, + 144.96304917 + ] + }, + "in_reply_to_user_id_str": "28095267", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "profile_sidebar_fill_color": "FFFFFF", + "id": 14111299, + "profile_text_color": "000000", + "followers_count": 998, + "profile_sidebar_border_color": "7B7B7B", + "id_str": "14111299", + "profile_background_color": "FFFBF0", + "listed_count": 55, + "utc_offset": 36000, + "statuses_count": 24835, + "description": "mid-twenties designer+musician http://soundcloud.com/helveticade", + "friends_count": 763, + "location": "Melbourne", + "profile_link_color": "942828", + "profile_image_url": "http://a3.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "name": "HELVETIC★DE", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 368, + "screen_name": "helveticade", + "notifications": null, + "url": "http://cade.com.au", + "created_at": "Mon Mar 10 03:53:46 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e165791", + "_rev": "1-0180e597e308bec87b88ccdeaa26f6e5", + "oldid": "4eb38dfc3de67c51170002bc", + "contributors": null, + "truncated": false, + "text": "A long walk on the longest jetty. #busselton #family #westaustralia #australia #roadtrip @ Busselton Jetty http://t.co/2wFoJ1et", + "in_reply_to_status_id": null, + "id": 132352574958485500, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 34, + 44 + ], + "text": "busselton" + }, + { + "indices": [ + 45, + 52 + ], + "text": "family" + }, + { + "indices": [ + 53, + 67 + ], + "text": "westaustralia" + }, + { + "indices": [ + 68, + 78 + ], + "text": "australia" + }, + { + "indices": [ + 79, + 88 + ], + "text": "roadtrip" + } + ], + "urls": [ + { + "indices": [ + 109, + 129 + ], + "url": "http://t.co/2wFoJ1et", + "expanded_url": "http://instagr.am/p/SqX8v/", + "display_url": "instagr.am/p/SqX8v/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.34469724, + -33.64388013 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352574958485504", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1401172477/K1_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 311142825, + "profile_text_color": "333333", + "followers_count": 285, + "profile_sidebar_border_color": "eeeeee", + "id_str": "311142825", + "profile_background_color": "B2DFDA", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 3382, + "description": "Mama, wife, organic farmer, baker, crocheter, knitter, stitcher, washer-woman, blogger, crapper onerer...currently dragging a big old caravan around Australia.", + "friends_count": 134, + "location": "", + "profile_link_color": "93A644", + "profile_image_url": "http://a3.twimg.com/profile_images/1401172477/K1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Foxs Lane", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "foxslane", + "notifications": null, + "url": "http://foxslane.blogspot.com/", + "created_at": "Sat Jun 04 23:45:59 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.64388013, + 115.34469724 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:04:47 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e166518", + "_rev": "1-3eb7869b867bf364eb78888253318117", + "oldid": "4eb38dfe3de67c51170002bd", + "favorited": false, + "in_reply_to_user_id": 210174637, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@TW_ParadeLOVEx oh don't they :(( saad", + "created_at": "Fri Nov 04 07:04:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347547569238016", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.8161241, + -33.7354837 + ] + }, + "id": 132352583854604290, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 210174637, + "id_str": "210174637", + "screen_name": "TW_ParadeLOVEx", + "name": "Siva I love you :)" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347547569238020, + "in_reply_to_screen_name": "TW_ParadeLOVEx", + "id_str": "132352583854604288", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.7354837, + 150.8161241 + ] + }, + "in_reply_to_user_id_str": "210174637", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1611977350/snapshot129.1_normal.jpg", + "profile_sidebar_fill_color": "E6F6F9", + "id": 142256194, + "profile_text_color": "333333", + "followers_count": 846, + "profile_sidebar_border_color": "DBE9ED", + "id_str": "142256194", + "profile_background_color": "DBE9ED", + "listed_count": 0, + "utc_offset": -21600, + "statuses_count": 4098, + "description": "KaitlynDonaldson|16♥\r\n#TheWanted `♥\r\nNathanSykes is a Babe ! ;)\r\nFollowedBy @JackVidgen @CodySimpson @wylliscapree @justice_scrappy @instant_bun ", + "friends_count": 1554, + "location": "Sydney, Australia", + "profile_link_color": "CC3366", + "profile_image_url": "http://a2.twimg.com/profile_images/1611977350/snapshot129.1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/354766155/The-Wanted.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/354766155/The-Wanted.jpg", + "name": "KaitlynDonalson♥", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2410, + "screen_name": "Kaite_TheWanted", + "notifications": null, + "url": "http://www.facebook.com/home.php%2525252523!/kayecookiedee", + "created_at": "Mon May 10 11:37:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Central America", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1666b3", + "_rev": "1-1b5b0fd3babcb9599fcc379b73476eb8", + "oldid": "4eb38dff3de67c51170002be", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "Why does the rear desto on an out of service bus have a horse on it?", + "created_at": "Fri Nov 04 07:04:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.87792633, + -34.40778493 + ] + }, + "id": 132352586236964860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352586236964864", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.40778493, + 150.87792633 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "profile_sidebar_fill_color": "252429", + "id": 43884518, + "profile_text_color": "aba8ab", + "followers_count": 420, + "profile_sidebar_border_color": "00f535", + "id_str": "43884518", + "profile_background_color": "1A1B1F", + "listed_count": 20, + "utc_offset": 36000, + "statuses_count": 19595, + "description": "19, University student and IT sector drone. . I tweet what is on my mind and have an obsession with tech and shiny things. (Views expressed are my own)", + "friends_count": 469, + "location": "Wollongong, NSW", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1602674261/907CF688-D14E-415F-B792-123E32FCFE96_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/248428251/background.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/248428251/background.jpg", + "name": "Mark Caetano", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 37, + "screen_name": "C1VX", + "notifications": null, + "url": "http://www.mc.id.au", + "created_at": "Mon Jun 01 13:35:55 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1672e2", + "_rev": "1-5b30b9af7e1deb971950192a36a3782a", + "oldid": "4eb38e023de67c51170002bf", + "contributors": null, + "truncated": false, + "text": "Removalists Perth - How to Downsize Belongings And Items Before a Move http://t.co/Aq3l88a1", + "in_reply_to_status_id": null, + "id": 132352599704862720, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/Aq3l88a1", + "expanded_url": "http://bit.ly/udMsNZ", + "display_url": "bit.ly/udMsNZ" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9069955, + -32.0622535 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352599704862721", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610321583/Twitter_Logo_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 395216091, + "profile_text_color": "333333", + "followers_count": 91, + "profile_sidebar_border_color": "C0DEED", + "id_str": "395216091", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 28800, + "statuses_count": 4, + "description": "Whether you need a removalist like Keys Bros to help you move across the street, interstate around Australia or overseas from Perth. Reach Us At: 08 6555 3635.", + "friends_count": 143, + "location": "WA", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1610321583/Twitter_Logo_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/354182034/Background_Tile_3.png", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/354182034/Background_Tile_3.png", + "name": "Keys Bros", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "keysbros", + "notifications": null, + "url": "http://www.keysbrosremovalists.com.au", + "created_at": "Fri Oct 21 09:52:56 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.0622535, + 115.9069955 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:04:53 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e16741e", + "_rev": "1-6a17d920e47251347dc84b00442ecd0d", + "oldid": "4eb38e0b3de67c51170002c0", + "contributors": null, + "truncated": false, + "text": "Good repurpose of a 300 dollar fail of a print job - travel pin map :) http://t.co/1HXxWF4A", + "in_reply_to_status_id": null, + "id": 132352632755994620, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY2BKzCQAAHa7q.jpg", + "expanded_url": "http://twitter.com/Ed2558/status/132352632755994624/photo/1", + "display_url": "pic.twitter.com/1HXxWF4A", + "url": "http://t.co/1HXxWF4A", + "sizes": { + "large": { + "h": 765, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 254, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 448, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132352632760188928", + "indices": [ + 71, + 91 + ], + "type": "photo", + "id": 132352632760188930, + "media_url": "http://p.twimg.com/AdY2BKzCQAAHa7q.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 147.13704755, + -41.45022425 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352632755994624", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1537983594/216217_10150270499258998_682098997_9249154_6608837_n_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 37594859, + "profile_text_color": "333333", + "followers_count": 66, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "37594859", + "profile_background_color": "EBEBEB", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 227, + "description": "studies masters of architecture, whilst dreaming of performing in a low budget/poor quality theatre restaurant. ", + "friends_count": 259, + "location": "Launceston, Tasmania", + "profile_link_color": "990000", + "profile_image_url": "http://a0.twimg.com/profile_images/1537983594/216217_10150270499258998_682098997_9249154_6608837_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Ed Bourke", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 51, + "screen_name": "Ed2558", + "notifications": null, + "url": "http://www.facebook.com/ed.bourke", + "created_at": "Mon May 04 04:32:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hobart", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -41.45022425, + 147.13704755 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:05:02 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e167fc3", + "_rev": "1-10641fd03d4b50ca62f0a2b3fc896c5f", + "oldid": "4eb38e0d3de67c51170002c1", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.handmark.com\" rel=\"nofollow\">TweetCaster for iOS</a>", + "text": "Just gigged 4 James Packer Kerry Stokes Eddie McGuire Malcolm mckusker Andrew Forrest Peter Cosgrove George Jones + archbishops no pressure!", + "created_at": "Fri Nov 04 07:05:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.96145, + -31.933222 + ] + }, + "id": 132352644177080320, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352644177080321", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.933222, + 115.96145 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1583032969/qrcode_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 97608407, + "profile_text_color": "333333", + "followers_count": 88, + "profile_sidebar_border_color": "C0DEED", + "id_str": "97608407", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 69, + "description": "I'm a British comedian who was getting bored with my predictable life in the UK so moved to Melbourne to see if I could start it all again. ", + "friends_count": 5, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1583032969/qrcode_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Jeff Green", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "jeffgreen007", + "notifications": null, + "url": "http://jeffgreen.net", + "created_at": "Fri Dec 18 05:48:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1685b0", + "_rev": "1-b17fc052a5160efc312feb713577d817", + "oldid": "4eb38e0d3de67c51170002c2", + "favorited": false, + "in_reply_to_user_id": 89205723, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mapguy83 @shansta82 @bradav @mapmaori just use google projection system. Close enough is good enough right?", + "created_at": "Fri Nov 04 07:05:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132341386107297792", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.86752557, + -31.96489399 + ] + }, + "id": 132352645938675710, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 89205723, + "id_str": "89205723", + "screen_name": "mapguy83", + "name": "Nicholas Flett" + }, + { + "indices": [ + 10, + 20 + ], + "id": 62806614, + "id_str": "62806614", + "screen_name": "shansta82", + "name": "Shannon Carter" + }, + { + "indices": [ + 21, + 28 + ], + "id": 7587202, + "id_str": "7587202", + "screen_name": "bradav", + "name": "David" + }, + { + "indices": [ + 29, + 38 + ], + "id": 17959972, + "id_str": "17959972", + "screen_name": "MapMaori", + "name": "Joseph McGehan" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132341386107297800, + "in_reply_to_screen_name": "mapguy83", + "id_str": "132352645938675712", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.96489399, + 115.86752557 + ] + }, + "in_reply_to_user_id_str": "89205723", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1275511635/eightbit-00e91926-e12f-4cfc-ac14-f0162e3ea0c9_normal.png", + "profile_sidebar_fill_color": "949494", + "id": 86896697, + "profile_text_color": "333333", + "followers_count": 284, + "profile_sidebar_border_color": "000000", + "id_str": "86896697", + "profile_background_color": "79b076", + "listed_count": 24, + "utc_offset": 28800, + "statuses_count": 1888, + "description": "Man about town where social media and mapping technologies explode into one!", + "friends_count": 242, + "location": "Darch, WA, Australia", + "profile_link_color": "0000fa", + "profile_image_url": "http://a0.twimg.com/profile_images/1275511635/eightbit-00e91926-e12f-4cfc-ac14-f0162e3ea0c9_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/53928591/Kyoto_-_Heinji_Temple_Gardens-4.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/53928591/Kyoto_-_Heinji_Temple_Gardens-4.jpg", + "name": "Darren Mottolini", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "dmottolini", + "notifications": null, + "url": "http://projectspatial.wordpress.com", + "created_at": "Mon Nov 02 07:53:35 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e168f26", + "_rev": "1-736b48be49bce471d4cbbe48fe48cdfc", + "oldid": "4eb38e103de67c51170002c3", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I wonder what normal 9-5 people do on a Friday afternoon... Think I'll go to the gym.", + "created_at": "Fri Nov 04 07:05:06 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.87044465, + -31.98813777 + ] + }, + "id": 132352656135041020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352656135041024", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.98813777, + 115.87044465 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1270834585/science_me_normal.jpg", + "profile_sidebar_fill_color": "000b17", + "id": 221660408, + "profile_text_color": "004358", + "followers_count": 86, + "profile_sidebar_border_color": "f7b565", + "id_str": "221660408", + "profile_background_color": "001329", + "listed_count": 2, + "utc_offset": 28800, + "statuses_count": 543, + "description": "Big gay scientist and fitness freak.", + "friends_count": 133, + "location": "Perth, Australia", + "profile_link_color": "448668", + "profile_image_url": "http://a2.twimg.com/profile_images/1270834585/science_me_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/181737094/xcff10c6fc9be20db6e4c6106a9ac943.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/181737094/xcff10c6fc9be20db6e4c6106a9ac943.jpg", + "name": "Rob Walker", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Rhizoboy", + "notifications": null, + "url": null, + "created_at": "Wed Dec 01 07:36:52 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16913b", + "_rev": "1-5665f6483604624319b41423d67de336", + "oldid": "4eb38e123de67c51170002c4", + "contributors": null, + "truncated": false, + "text": "Hilarious! I prefer mine without facial hair though! Lol. Only in Newtown! http://t.co/7P7ZcNYy", + "in_reply_to_status_id": null, + "id": 132352661499543550, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY2C14CAAAxE8B.jpg", + "expanded_url": "http://twitter.com/ortenzi/status/132352661499543552/photo/1", + "display_url": "pic.twitter.com/7P7ZcNYy", + "url": "http://t.co/7P7ZcNYy", + "sizes": { + "large": { + "h": 1296, + "w": 968, + "resize": "fit" + }, + "small": { + "h": 455, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 803, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132352661503737856", + "indices": [ + 75, + 95 + ], + "type": "photo", + "id": 132352661503737860, + "media_url": "http://p.twimg.com/AdY2C14CAAAxE8B.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.179082, + -33.897327 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Camera on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352661499543552", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/63141885/ID_01_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 17054558, + "profile_text_color": "666666", + "followers_count": 144, + "profile_sidebar_border_color": "181A1E", + "id_str": "17054558", + "profile_background_color": "1A1B1F", + "listed_count": 12, + "utc_offset": 36000, + "statuses_count": 285, + "description": "User Experience geek in Sydney, interested in standards, UCD, accessibility, creative technology, collaboration, semantic markup, cycling and laksa ", + "friends_count": 216, + "location": "Sydney, @wheelyweb", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/63141885/ID_01_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Joseph Ortenzi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "ortenzi", + "notifications": null, + "url": null, + "created_at": "Wed Oct 29 23:01:34 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.897327, + 151.179082 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:05:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1692ad", + "_rev": "1-30fe1d7dbcbbea324bb6432f3ef1bab2", + "oldid": "4eb38e143de67c51170002c5", + "contributors": null, + "truncated": false, + "text": "Baby blowing saliva bubbles http://t.co/P0fEqGLR", + "in_reply_to_status_id": null, + "id": 132352675172986880, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 28, + 48 + ], + "url": "http://t.co/P0fEqGLR", + "expanded_url": "http://www.youtube.com/watch?v=PqDLhg8n0Vo&feature=youtube_gdata_player", + "display_url": "youtube.com/watch?v=PqDLhg…" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.333901, + -28.001287 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">YouTube on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352675172986881", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615430158/Halloween_2011_5_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 76320659, + "profile_text_color": "333333", + "followers_count": 24, + "profile_sidebar_border_color": "C0DEED", + "id_str": "76320659", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 735, + "description": "", + "friends_count": 31, + "location": "Gold Coast", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1615430158/Halloween_2011_5_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/57811138/twitterbg_tyflm1.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/57811138/twitterbg_tyflm1.jpg", + "name": "temajin", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "temajin", + "notifications": null, + "url": "http://www.facebook.com/home.php#!/Temajin", + "created_at": "Tue Sep 22 12:33:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.001287, + 153.333901 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:05:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e169b30", + "_rev": "1-a0ff96c47cef35a34b9cf3bea547bc00", + "oldid": "4eb38e1d3de67c51170002c6", + "contributors": null, + "truncated": false, + "text": "I'm at The Plaza (Melbourne, Victoria) http://t.co/A3bXeOqe", + "in_reply_to_status_id": null, + "id": 132352712040923140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 39, + 59 + ], + "url": "http://t.co/A3bXeOqe", + "expanded_url": "http://4sq.com/rNipSo", + "display_url": "4sq.com/rNipSo" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.969358, + -37.830804 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352712040923136", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1369030860/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 276238299, + "profile_text_color": "333333", + "followers_count": 22, + "profile_sidebar_border_color": "C0DEED", + "id_str": "276238299", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 345, + "description": "Aussie guy in Melbourne! Love to travel, learn new things, eat, drink, gossip, talk trash and dance to wannabe pop princesses!", + "friends_count": 45, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1369030860/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Brent Thomson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Brent_au", + "notifications": null, + "url": "http://www.facebook.com/Brent.Thomson", + "created_at": "Sat Apr 02 23:27:06 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.830804, + 144.969358 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:05:20 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e16a9e3", + "_rev": "1-b703bb789bdec14cdca7aa6c26e6060b", + "oldid": "4eb38e1f3de67c51170002c7", + "contributors": null, + "truncated": false, + "text": "I'm at Aquarena YMCA http://t.co/W1eomwlI", + "in_reply_to_status_id": null, + "id": 132352719779397630, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 21, + 41 + ], + "url": "http://t.co/W1eomwlI", + "expanded_url": "http://4sq.com/rLuwqL", + "display_url": "4sq.com/rLuwqL" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.125475, + -37.773818 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352719779397632", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1371812434/image_normal.jpg", + "profile_sidebar_fill_color": "99CC33", + "id": 26196201, + "profile_text_color": "3E4415", + "followers_count": 35, + "profile_sidebar_border_color": "829D5E", + "id_str": "26196201", + "profile_background_color": "352726", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 574, + "description": "", + "friends_count": 94, + "location": "Melbourne", + "profile_link_color": "D02B55", + "profile_image_url": "http://a2.twimg.com/profile_images/1371812434/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme5/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme5/bg.gif", + "name": "Adrian", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "adriancata", + "notifications": null, + "url": null, + "created_at": "Tue Mar 24 07:31:10 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.773818, + 145.125475 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:05:22 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e16b778", + "_rev": "1-44fc02497bd632ce7766a566ac38ae46", + "oldid": "4eb38e253de67c51170002c8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "susah dah artis.. RT“@NikitaMirzani: :D RT @KissGossip: Jajal Nyanyi, Nikita Mirzani Janjikan Aksi Panggung Seksi”", + "created_at": "Fri Nov 04 07:05:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20841808, + -33.87659458 + ] + }, + "id": 132352745205284860, + "entities": { + "user_mentions": [ + { + "indices": [ + 21, + 35 + ], + "id": 162680556, + "id_str": "162680556", + "screen_name": "NikitaMirzani", + "name": "Nikita Mirzani" + }, + { + "indices": [ + 43, + 54 + ], + "id": 68979389, + "id_str": "68979389", + "screen_name": "KissGossip", + "name": "Kisah Seputar Celeb" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352745205284864", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87659458, + 151.20841808 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594437784/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 44334824, + "profile_text_color": "666666", + "followers_count": 136, + "profile_sidebar_border_color": "181A1E", + "id_str": "44334824", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 645, + "description": "mu fan! chef! n tebet the place to be.", + "friends_count": 313, + "location": "toilet", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1594437784/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "DefliYMCMB", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "deflibarbar", + "notifications": null, + "url": "http://indonesiakapanmaju.net", + "created_at": "Wed Jun 03 10:42:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16bb24", + "_rev": "1-66a174c3fb0ce25e4ae38a348ca964c0", + "oldid": "4eb38e263de67c51170002c9", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615281895/6jiwgd_normal.jpg", + "profile_sidebar_fill_color": "E6F6F9", + "id": 397908272, + "profile_text_color": "333333", + "followers_count": 94, + "protected": false, + "location": "Sydney and Melbourne", + "default_profile_image": false, + "id_str": "397908272", + "utc_offset": 36000, + "statuses_count": 376, + "description": "Professional and discreet male companion for professional women. #libertine #hedonist #epicurean #BFE #escort #Companion", + "friends_count": 343, + "profile_link_color": "CC3366", + "profile_image_url": "http://a2.twimg.com/profile_images/1615281895/6jiwgd_normal.jpg", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme17/bg.gif", + "profile_background_color": "DBE9ED", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme17/bg.gif", + "screen_name": "ConcupiscentGuy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "name": "ConcupiscentGuy", + "notifications": null, + "url": null, + "created_at": "Tue Oct 25 09:41:53 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "profile_sidebar_border_color": "DBE9ED", + "default_profile": false, + "is_translator": false, + "listed_count": 0 + }, + "favorited": false, + "contributors": null, + "truncated": false, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@SiobhanBaillieu mostly. Want to move back to bne but I halve my income ...", + "created_at": "Fri Nov 04 07:05:28 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": "132352340262010880", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2039372, + -33.87098367 + ] + }, + "id": 132352748351004670, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 302437850, + "screen_name": "SiobhanBaillieu", + "id_str": "302437850", + "name": "Siobhan" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352340262010880, + "place": null, + "id_str": "132352748351004672", + "in_reply_to_screen_name": "SiobhanBaillieu", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87098367, + 151.2039372 + ] + }, + "in_reply_to_user_id_str": "302437850", + "in_reply_to_user_id": 302437850 + }, + { + "_id": "51f39676462cca21859bd92d8e16c28d", + "_rev": "1-dc1ef5bd834d486a5f32679d8970ab77", + "oldid": "4eb38e273de67c51170002ca", + "favorited": false, + "in_reply_to_user_id": 8275752, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@miscdebris wow did you make this? And how. It's a pretty plate x", + "created_at": "Fri Nov 04 07:05:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342990525046784", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.61650253, + -37.80448732 + ] + }, + "id": 132352750993416200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 8275752, + "id_str": "8275752", + "screen_name": "miscdebris", + "name": "Belinda" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342990525046780, + "in_reply_to_screen_name": "miscdebris", + "id_str": "132352750993416192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80448732, + 147.61650253 + ] + }, + "in_reply_to_user_id_str": "8275752", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1484426543/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 45290075, + "profile_text_color": "989898", + "followers_count": 166, + "profile_sidebar_border_color": "C484AE", + "id_str": "45290075", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1115, + "description": "♥ myfurbubs ♥ thebeach ♥ mybubs ♥ cake ♥ myfamily ♥ home ♥ myfriends ♥ vegan ♥ mylife ♥", + "friends_count": 192, + "location": "Metung Australia ✈", + "profile_link_color": "D1A7CE", + "profile_image_url": "http://a2.twimg.com/profile_images/1484426543/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/144599706/xadc7cf0c069b02321d2746ee2453b2e.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/144599706/xadc7cf0c069b02321d2746ee2453b2e.png", + "name": "Stephanie McShane ♥", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "steffmcshane", + "notifications": null, + "url": "http://www.facebook.com/steph.mcshane", + "created_at": "Sun Jun 07 05:23:07 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16c483", + "_rev": "1-fca97effa3a0c0bb81b3ecf771ba924d", + "oldid": "4eb38e2d3de67c51170002cb", + "contributors": null, + "truncated": false, + "text": "Taking the dog for a walk http://t.co/F3titmaY", + "in_reply_to_status_id": null, + "id": 132352775811104770, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY2JfuCAAAYjtZ.jpg", + "expanded_url": "http://twitter.com/gossman81/status/132352775811104768/photo/1", + "display_url": "pic.twitter.com/F3titmaY", + "url": "http://t.co/F3titmaY", + "sizes": { + "large": { + "h": 768, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 255, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 450, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132352775815299072", + "indices": [ + 26, + 46 + ], + "type": "photo", + "id": 132352775815299070, + "media_url": "http://p.twimg.com/AdY2JfuCAAAYjtZ.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.29042587, + -38.19913604 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352775811104768", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1584718946/252260_10150608900970360_810725359_18614787_5184423_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 199513764, + "profile_text_color": "333333", + "followers_count": 155, + "profile_sidebar_border_color": "C0DEED", + "id_str": "199513764", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3003, + "description": "Geelong Cats, Ferrari, cricket, UFC, Carlton Draught, Social Media. I have a favourite sport team in every sport!", + "friends_count": 520, + "location": "Geelong", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1584718946/252260_10150608900970360_810725359_18614787_5184423_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dale Goss", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "gossman81", + "notifications": null, + "url": null, + "created_at": "Thu Oct 07 01:54:37 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.19913604, + 144.29042587 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:05:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e16c6b1", + "_rev": "1-fac87bead29d2ca646fa1d0c3af419df", + "oldid": "4eb38e2d3de67c51170002cc", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@MickeyG2980: Fark!!” my sentiments exactly! Sydney bus fail", + "created_at": "Fri Nov 04 07:05:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20717633, + -33.86836128 + ] + }, + "id": 132352779552432130, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 13 + ], + "id": 28084802, + "id_str": "28084802", + "screen_name": "MickeyG2980", + "name": "Michael Fernandez" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352779552432128", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86836128, + 151.20717633 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1573101697/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 155789518, + "profile_text_color": "666666", + "followers_count": 22, + "profile_sidebar_border_color": "181A1E", + "id_str": "155789518", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 211, + "description": "I am the designer of my own catastrophe.", + "friends_count": 31, + "location": "Pyrmont, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1573101697/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Jean-Rochelle", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "rarrchelle", + "notifications": null, + "url": "http://rarr.wordpress.com", + "created_at": "Tue Jun 15 02:52:10 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16ca6f", + "_rev": "1-a865e7a135c677c0ef07f4135f864447", + "oldid": "4eb38e333de67c51170002cd", + "favorited": false, + "in_reply_to_user_id": 44835347, + "contributors": null, + "source": "<a href=\"http://mobileways.de/gravity\" rel=\"nofollow\">Gravity!</a>", + "text": "@theprojecttv Id agree if u had @dave_thorno & @BondiVet Dr Chris on together", + "created_at": "Fri Nov 04 07:05:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350669318406144", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.08212535, + -33.88679501 + ] + }, + "id": 132352803120230400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 44835347, + "id_str": "44835347", + "screen_name": "theprojecttv", + "name": "The Project" + }, + { + "indices": [ + 32, + 44 + ], + "id": 143605709, + "id_str": "143605709", + "screen_name": "dave_thorno", + "name": "Dave Thornton" + }, + { + "indices": [ + 47, + 56 + ], + "id": 23177562, + "id_str": "23177562", + "screen_name": "BondiVet", + "name": "Dr Chris Brown" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350669318406140, + "in_reply_to_screen_name": "theprojecttv", + "id_str": "132352803120230400", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88679501, + 151.08212535 + ] + }, + "in_reply_to_user_id_str": "44835347", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1546519621/mum___bridgette_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 159349033, + "profile_text_color": "3D1957", + "followers_count": 61, + "profile_sidebar_border_color": "65B0DA", + "id_str": "159349033", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 430, + "description": "Mother of 4 kids, in recent times i find myself reliving my teenage years as i accompany my 15yr old as she follows her idols around Sydney when they come.", + "friends_count": 259, + "location": "Sydney, AUSTRALIA", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1546519621/mum___bridgette_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/331427084/318798_211377028916171_100001316250280_537392_2063917_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/331427084/318798_211377028916171_100001316250280_537392_2063917_n.jpg", + "name": "kathryn ", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "girl_in_oz72", + "notifications": null, + "url": null, + "created_at": "Fri Jun 25 03:55:00 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16cb34", + "_rev": "1-be8e9cb89ab144d466107cb4fd455ab7", + "oldid": "4eb38e3c3de67c51170002ce", + "contributors": null, + "truncated": false, + "text": "Swiss roll anyone? #food #instagram #iphone4s #iphonesia #iphone @ William Angliss Institute http://t.co/xQxQrUej", + "in_reply_to_status_id": null, + "id": 132352840453730300, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 19, + 24 + ], + "text": "food" + }, + { + "indices": [ + 25, + 35 + ], + "text": "instagram" + }, + { + "indices": [ + 36, + 45 + ], + "text": "iphone4s" + }, + { + "indices": [ + 46, + 56 + ], + "text": "iphonesia" + }, + { + "indices": [ + 57, + 64 + ], + "text": "iphone" + } + ], + "urls": [ + { + "indices": [ + 95, + 115 + ], + "url": "http://t.co/xQxQrUej", + "expanded_url": "http://instagr.am/p/SqYMe/", + "display_url": "instagr.am/p/SqYMe/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9537432, + -37.812878 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132352840453730304", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1333943852/290418316_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 149362029, + "profile_text_color": "333333", + "followers_count": 193, + "profile_sidebar_border_color": "C0DEED", + "id_str": "149362029", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 25200, + "statuses_count": 2231, + "description": "Big dreamer!", + "friends_count": 175, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1333943852/290418316_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Elwin yohan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 59, + "screen_name": "ElwinYohan", + "notifications": null, + "url": null, + "created_at": "Sat May 29 03:03:39 +0000 2010", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.812878, + 144.9537432 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:05:50 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e16d72b", + "_rev": "1-865ff50c7d9c2088e09b5fadcf140778", + "oldid": "4eb38e4a3de67c51170002cf", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 1.1 km/h SE. Barometer 1017.7 hPa, Rising slowly. Temperature 20.4 °C. Rain today 0.0 mm. Humidity 60%", + "created_at": "Fri Nov 04 07:06:04 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.29111111, + -33.75277778 + ] + }, + "id": 132352899853455360, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132352899853455360", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75277778, + 151.29111111 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1130165718/ffff_normal.png", + "profile_sidebar_fill_color": "DAECF4", + "id": 194494717, + "profile_text_color": "663B12", + "followers_count": 20, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "194494717", + "profile_background_color": "C6E2EE", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 8469, + "description": "WH2081 wx @ sydney", + "friends_count": 0, + "location": "sydney", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a3.twimg.com/profile_images/1130165718/ffff_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "dw5869", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "dw5869", + "notifications": null, + "url": null, + "created_at": "Fri Sep 24 08:03:13 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16e185", + "_rev": "1-6d263ccb4297dd648477b9b251c40019", + "oldid": "4eb38e623de67c51170002d0", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#first week at the #newjob done! Pretty happy got another early mark #winning !!", + "created_at": "Fri Nov 04 07:06:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20593154, + -33.87452197 + ] + }, + "id": 132353001959600130, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 6 + ], + "text": "first" + }, + { + "indices": [ + 19, + 26 + ], + "text": "newjob" + }, + { + "indices": [ + 69, + 77 + ], + "text": "winning" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353001959600128", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87452197, + 151.20593154 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1600429357/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 277807006, + "profile_text_color": "333333", + "followers_count": 46, + "profile_sidebar_border_color": "C0DEED", + "id_str": "277807006", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 943, + "description": "All the things I really like to do are either immoral, illegal, or fattening..", + "friends_count": 135, + "location": "sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1600429357/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Desiree Frydmann", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 35, + "screen_name": "desiree_von_d", + "notifications": null, + "url": "http://www.facebook.com/desireefrydmann", + "created_at": "Wed Apr 06 02:25:19 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16eeb6", + "_rev": "1-bf8c9ff8c47e4b2226af872ec946dfd9", + "oldid": "4eb38e633de67c51170002d1", + "favorited": false, + "in_reply_to_user_id": 27539542, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Bamagirl75 what's 9371 miles between old friends?! Sending you the good vibes from Melbourne, Australia. xx", + "created_at": "Fri Nov 04 07:06:30 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132261565515837440", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98574019, + -37.81358298 + ] + }, + "id": 132353005860294660, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 27539542, + "id_str": "27539542", + "screen_name": "Bamagirl75", + "name": "Shana" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132261565515837440, + "in_reply_to_screen_name": "Bamagirl75", + "id_str": "132353005860294656", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81358298, + 144.98574019 + ] + }, + "in_reply_to_user_id_str": "27539542", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592652135/22_sepia_normal.JPG", + "profile_sidebar_fill_color": "616161", + "id": 21015130, + "profile_text_color": "000000", + "followers_count": 3703, + "profile_sidebar_border_color": "000000", + "id_str": "21015130", + "profile_background_color": "000000", + "listed_count": 150, + "utc_offset": -36000, + "statuses_count": 6723, + "description": "Presenter Riverland Today 1062 ABC Riverland & Mallee\r\nFormer Dubai Today presenter - All views expressed are my own", + "friends_count": 1795, + "location": "Head/body Oz, heart Arabia", + "profile_link_color": "b6b6b9", + "profile_image_url": "http://a0.twimg.com/profile_images/1592652135/22_sepia_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/158690056/ballerina_project.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/158690056/ballerina_project.jpg", + "name": "Jessica Swann", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 302, + "screen_name": "JessicaSwann", + "notifications": null, + "url": "http://www.abc.net.au/profiles/content/s3188817.htm?site=riverland", + "created_at": "Mon Feb 16 19:12:44 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e16f4bf", + "_rev": "1-ef62da571ba8eeb5aa6838044c8c3bd5", + "oldid": "4eb38e733de67c51170002d2", + "favorited": false, + "in_reply_to_user_id": 24684877, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@craigdeveson far from it, the guy was genius over the last week in particular, but had been ever since he took office.", + "created_at": "Fri Nov 04 07:06:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352715044028416", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18942796, + -33.92517733 + ] + }, + "id": 132353071002042370, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 24684877, + "id_str": "24684877", + "screen_name": "craigdeveson", + "name": "Craig Deveson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352715044028420, + "in_reply_to_screen_name": "craigdeveson", + "id_str": "132353071002042368", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.92517733, + 151.18942796 + ] + }, + "in_reply_to_user_id_str": "24684877", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1394749914/profile_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 14793974, + "profile_text_color": "333333", + "followers_count": 1479, + "profile_sidebar_border_color": "eeeeee", + "id_str": "14793974", + "profile_background_color": "131516", + "listed_count": 35, + "utc_offset": 36000, + "statuses_count": 9233, + "description": "irish | living in sydney | climbing mountains to the clouds | passionate about food, coffee, whiskey, f1, cloud computing, google & technology", + "friends_count": 1916, + "location": "Sydney, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1394749914/profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Daragh Mc Grath", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "daraghmcg", + "notifications": null, + "url": "http://goo.gl/IWMeI", + "created_at": "Fri May 16 02:44:18 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1702fe", + "_rev": "1-863b8804ba35d6cf974f9a05cae0641a", + "oldid": "4eb38e773de67c51170002d3", + "favorited": false, + "in_reply_to_user_id": 51305605, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@chris_bloke enables it by default, no need to prepend realm with 'ipv6.'.", + "created_at": "Fri Nov 04 07:06:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352066583658497", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.8957375, + -37.79511621 + ] + }, + "id": 132353087343038460, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 51305605, + "id_str": "51305605", + "screen_name": "chris_bloke", + "name": "Chris Samuel" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352066583658500, + "in_reply_to_screen_name": "chris_bloke", + "id_str": "132353087343038464", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79511621, + 144.8957375 + ] + }, + "in_reply_to_user_id_str": "51305605", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1452836827/IMG_0030_-_20110721-small_normal.png", + "profile_sidebar_fill_color": "C0DFEC", + "id": 777055, + "profile_text_color": "333333", + "followers_count": 258, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "777055", + "profile_background_color": "022330", + "listed_count": 23, + "utc_offset": 36000, + "statuses_count": 8625, + "description": "You can't know you're right if you're never wrong.", + "friends_count": 179, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1452836827/IMG_0030_-_20110721-small_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Wade Roberts", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "incorrect", + "notifications": null, + "url": null, + "created_at": "Sat Feb 17 06:33:16 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e170d1c", + "_rev": "1-3e7467591a5e15f8f26e3c3e26829569", + "oldid": "4eb38e7f3de67c51170002d4", + "favorited": false, + "in_reply_to_user_id": 341341934, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@jenny_ohh omg yes! They looked small but they are perfect! And incredibly comfortable", + "created_at": "Fri Nov 04 07:06:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352529064394752", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.33342868, + -38.03079324 + ] + }, + "id": 132353121274961920, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 341341934, + "id_str": "341341934", + "screen_name": "jenny_ohh", + "name": "Jenny O" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352529064394750, + "in_reply_to_screen_name": "jenny_ohh", + "id_str": "132353121274961921", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.03079324, + 145.33342868 + ] + }, + "in_reply_to_user_id_str": "341341934", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1563651422/image_normal.jpg", + "profile_sidebar_fill_color": "4C8D5D", + "id": 122647803, + "profile_text_color": "000000", + "followers_count": 62, + "profile_sidebar_border_color": "FAEE6E", + "id_str": "122647803", + "profile_background_color": "98F838", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2637, + "description": "just chillin' mate :) ", + "friends_count": 178, + "location": "", + "profile_link_color": "000000", + "profile_image_url": "http://a2.twimg.com/profile_images/1563651422/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/169179203/x788b13f6c54a7c16d3cc41661964366.jpg", + "name": "Danni Adrien", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 24, + "screen_name": "danni_frances", + "notifications": null, + "url": "http://danni-frances.tumblr.com/", + "created_at": "Sat Mar 13 12:03:43 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e170e9e", + "_rev": "1-3581622be592c5eb0bcd4a40de5f77be", + "oldid": "4eb38e7f3de67c51170002d5", + "contributors": null, + "truncated": false, + "text": "Hey @bistroceello happy 2nd birthday !\n http://t.co/fTMAPrpk", + "in_reply_to_status_id": null, + "id": 132353122382254080, + "entities": { + "user_mentions": [ + { + "indices": [ + 4, + 17 + ], + "id": 47278764, + "id_str": "47278764", + "screen_name": "bistroceello", + "name": "Scott Want" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 40, + 60 + ], + "url": "http://t.co/fTMAPrpk", + "expanded_url": "http://yfrog.com/kkrlcpgj", + "display_url": "yfrog.com/kkrlcpgj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.09796562, + -33.28605241 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353122382254081", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1103871976/WOMW_logo_-cmyk_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 177436090, + "profile_text_color": "333333", + "followers_count": 38, + "profile_sidebar_border_color": "C0DEED", + "id_str": "177436090", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 18, + "description": "", + "friends_count": 11, + "location": "Orange, NSW", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1103871976/WOMW_logo_-cmyk_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/135889833/Snow_over_dam.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/135889833/Snow_over_dam.jpg", + "name": "Word of Mouth Wines", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "wordofmouthwine", + "notifications": null, + "url": null, + "created_at": "Thu Aug 12 03:37:01 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.28605241, + 149.09796562 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:06:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e171195", + "_rev": "1-4c1667bbd46828a48771747919685afa", + "oldid": "4eb38e813de67c51170002d6", + "contributors": null, + "truncated": false, + "text": "I'm at Jade Buddha (1 Eagle St., Brisbane) http://t.co/mV1qW3j1", + "in_reply_to_status_id": null, + "id": 132353130649227260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 43, + 63 + ], + "url": "http://t.co/mV1qW3j1", + "expanded_url": "http://4sq.com/uBggns", + "display_url": "4sq.com/uBggns" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.030852, + -27.468437 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353130649227264", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1597210306/321261_515926384431_220000624_30746910_1020735381_n_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 170955599, + "profile_text_color": "333333", + "followers_count": 47, + "profile_sidebar_border_color": "c7c7c7", + "id_str": "170955599", + "profile_background_color": "ACDED6", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 191, + "description": "Contrary to popular belief, I cannot play ping pong. I, however do like music, football and eating.", + "friends_count": 190, + "location": "Brisbane, Australia", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1597210306/321261_515926384431_220000624_30746910_1020735381_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/320739163/photowall_resized_4.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/320739163/photowall_resized_4.jpg", + "name": "David Do Quy", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "daviddoq", + "notifications": null, + "url": null, + "created_at": "Mon Jul 26 05:50:23 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.468437, + 153.030852 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:07:00 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e17182f", + "_rev": "1-f130ee41554582beb38da5bf948040e1", + "oldid": "4eb38e883de67c51170002d7", + "contributors": null, + "truncated": false, + "text": "After work bevies -- celebrating & commiserating (@ Alma Tavern) http://t.co/Becn3hqP", + "in_reply_to_status_id": null, + "id": 132353159149531140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 65, + 85 + ], + "url": "http://t.co/Becn3hqP", + "expanded_url": "http://4sq.com/u3cB9E", + "display_url": "4sq.com/u3cB9E" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.627373, + -34.915794 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353159149531137", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1585456848/image_normal.jpg", + "profile_sidebar_fill_color": "f6ffd1", + "id": 16367266, + "profile_text_color": "333333", + "followers_count": 423, + "profile_sidebar_border_color": "fff8ad", + "id_str": "16367266", + "profile_background_color": "FFF04D", + "listed_count": 13, + "utc_offset": -18000, + "statuses_count": 1565, + "description": "Passionate Wine Lover, Tenacious Brand Manager, Massive Muse Admirer, Curious Globe Trotter and Food Fancier. ", + "friends_count": 607, + "location": "Adelaide, South Australia", + "profile_link_color": "0099CC", + "profile_image_url": "http://a2.twimg.com/profile_images/1585456848/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/161571426/i_love_wine.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/161571426/i_love_wine.png", + "name": "Sharon Wilkinson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "sharonwilkinson", + "notifications": null, + "url": "https://about.me/sharonwilkinson", + "created_at": "Fri Sep 19 18:29:00 +0000 2008", + "contributors_enabled": false, + "time_zone": "Eastern Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.915794, + 138.627373 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:07:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e172720", + "_rev": "1-fc8edf2766ffbb0aa6bd529a965b1e2e", + "oldid": "4eb38e8d3de67c51170002d8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Well that was an extremely interesting conversation with my father to say the least :P", + "created_at": "Fri Nov 04 07:07:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.94313836, + -33.81087876 + ] + }, + "id": 132353181651972100, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353181651972096", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.81087876, + 150.94313836 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1524606842/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 28040234, + "profile_text_color": "666666", + "followers_count": 70, + "profile_sidebar_border_color": "181A1E", + "id_str": "28040234", + "profile_background_color": "1A1B1F", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 448, + "description": "DJ at Sydney's biggest party venues", + "friends_count": 115, + "location": "Sydney", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1524606842/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Mick Meehan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "DJMickey1", + "notifications": null, + "url": "http://www.facebook.com/mrmeehan", + "created_at": "Wed Apr 01 03:22:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e172e9e", + "_rev": "1-1765968d34d4d02a7c21985d48b12702", + "oldid": "4eb38e903de67c51170002d9", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Love people trapped in the 90's. Beige chinos, black v neck t-shirt and a beige sports coat. Something out of bing bang theory. #fashionfail", + "created_at": "Fri Nov 04 07:07:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 133.90308998, + -23.80198383 + ] + }, + "id": 132353191739273220, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 128, + 140 + ], + "text": "fashionfail" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353191739273216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -23.80198383, + 133.90308998 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1427466813/11_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 329607463, + "profile_text_color": "333333", + "followers_count": 7, + "profile_sidebar_border_color": "C0DEED", + "id_str": "329607463", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 27, + "description": "", + "friends_count": 24, + "location": "Darwin, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1427466813/11_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Martin Klopper", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "martin_klopper", + "notifications": null, + "url": null, + "created_at": "Tue Jul 05 10:46:01 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e173bd0", + "_rev": "1-8a578af9958b7c50cdbca61400fe1094", + "oldid": "4eb38ea63de67c51170002da", + "contributors": null, + "truncated": false, + "text": "Hello weekend! Moshi moshi! That's the name of this lovely cocktail! @ Sokyo at The Star http://t.co/7IKYoeNV", + "in_reply_to_status_id": null, + "id": 132353285007998980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 90, + 110 + ], + "url": "http://t.co/7IKYoeNV", + "expanded_url": "http://instagr.am/p/SqY5w/", + "display_url": "instagr.am/p/SqY5w/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.195358, + -33.87091 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353285007998976", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592371361/xiaohan_shen_normal.jpg", + "profile_sidebar_fill_color": "f0f0f0", + "id": 135352289, + "profile_text_color": "252525", + "followers_count": 939, + "profile_sidebar_border_color": "008dde", + "id_str": "135352289", + "profile_background_color": "252525", + "listed_count": 35, + "utc_offset": 36000, + "statuses_count": 3917, + "description": "Photographer. Girl with a camera, a blog and an eye for all things stylish, capturing street fashion from Sydney and beyond. http://xiaohan.net/photography.htm", + "friends_count": 1478, + "location": "Sydney", + "profile_link_color": "008dde", + "profile_image_url": "http://a0.twimg.com/profile_images/1592371361/xiaohan_shen_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/338327705/twitter_bg_2011.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/338327705/twitter_bg_2011.jpg", + "name": "Xiaohan Shen", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 12, + "screen_name": "xssat", + "notifications": null, + "url": "http://www.xssatstreetfashion.com/", + "created_at": "Wed Apr 21 02:21:10 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.87091, + 151.195358 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:07:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1747c8", + "_rev": "1-6a4500e6232ba90f16396ee1edbd42b3", + "oldid": "4eb38eab3de67c51170002db", + "favorited": false, + "in_reply_to_user_id": 12681662, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@raymond110168 机身内也有?倒是没发现。目前用lihgthroom。正打算向PS进军,还是ps强大", + "created_at": "Fri Nov 04 07:07:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352421883158528", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.08478853, + -33.83451398 + ] + }, + "id": 132353306667384830, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 12681662, + "id_str": "12681662", + "screen_name": "raymond110168", + "name": "Raymond ZHAO" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352421883158530, + "in_reply_to_screen_name": "raymond110168", + "id_str": "132353306667384832", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.83451398, + 151.08478853 + ] + }, + "in_reply_to_user_id_str": "12681662", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1597827429/Avatar_normal.jpg", + "profile_sidebar_fill_color": "efdcc5", + "id": 48994798, + "profile_text_color": "977c61", + "followers_count": 324, + "profile_sidebar_border_color": "d4b494", + "id_str": "48994798", + "profile_background_color": "fffdf3", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 8356, + "description": "80后,人在悉尼。对周围充满了好奇,什么都想学,经常三分钟热度,经常放弃,想起来又捡起来折腾。希望一天能够环球旅行。热衷数码产品,喜欢拍照。http://about.me/Kino", + "friends_count": 256, + "location": "31.039571,120.659407", + "profile_link_color": "c75741", + "profile_image_url": "http://a2.twimg.com/profile_images/1597827429/Avatar_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/165158361/x8f4dcc9fdee277f5f31fe600b02ff8d.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/165158361/x8f4dcc9fdee277f5f31fe600b02ff8d.jpg", + "name": "Jinuo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 89, + "screen_name": "Kino_cc", + "notifications": null, + "url": "http://nuo.im", + "created_at": "Sat Jun 20 12:31:35 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e174a54", + "_rev": "1-e3c44a1c040d6847a49e3467a2cc70bb", + "oldid": "4eb38eb03de67c51170002dc", + "favorited": false, + "in_reply_to_user_id": 159104243, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@The_Man_Mundine hey Choc my \nhusband and I saw your win at Newcastle we had a great night.", + "created_at": "Fri Nov 04 07:07:47 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 152.05665319, + -32.73853102 + ] + }, + "id": 132353329668947970, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 159104243, + "id_str": "159104243", + "screen_name": "The_Man_Mundine", + "name": "Anthony Mundine " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "The_Man_Mundine", + "id_str": "132353329668947968", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.73853102, + 152.05665319 + ] + }, + "in_reply_to_user_id_str": "159104243", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1611200272/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 400294815, + "profile_text_color": "333333", + "followers_count": 8, + "profile_sidebar_border_color": "C0DEED", + "id_str": "400294815", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 7, + "description": "Love life, family,friends,sport,music, movies and reading. Life is a journey, enjoy your time and use it well!", + "friends_count": 51, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1611200272/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sue Smith", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Suezee61", + "notifications": null, + "url": null, + "created_at": "Fri Oct 28 20:11:08 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e175206", + "_rev": "1-e230a05c4a65ad9cd2a456f9e820178a", + "oldid": "4eb38eb13de67c51170002dd", + "favorited": false, + "in_reply_to_user_id": 23372326, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@LucyCurtin ahh that's crap sticks... I could have dinked you! #redfernrebels", + "created_at": "Fri Nov 04 07:07:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351740241645568", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19917185, + -33.8927244 + ] + }, + "id": 132353333376712700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 23372326, + "id_str": "23372326", + "screen_name": "LucyCurtin", + "name": "Lucy Curtin" + } + ], + "hashtags": [ + { + "indices": [ + 63, + 77 + ], + "text": "redfernrebels" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132351740241645570, + "in_reply_to_screen_name": "LucyCurtin", + "id_str": "132353333376712705", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8927244, + 151.19917185 + ] + }, + "in_reply_to_user_id_str": "23372326", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570271424/image_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 37651786, + "profile_text_color": "333333", + "followers_count": 312, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "37651786", + "profile_background_color": "EBEBEB", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1656, + "description": "Liquidite with a keen interest in all things food, booze, fashion, social media and sport.", + "friends_count": 543, + "location": "Sydney", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1570271424/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Peta Barclay", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "peta_barclay", + "notifications": null, + "url": null, + "created_at": "Mon May 04 12:45:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e175696", + "_rev": "1-3b80f76143102dd58df862c26b56ea54", + "oldid": "4eb38eb93de67c51170002de", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF you can talk to me? :(", + "created_at": "Fri Nov 04 07:07:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352141451984896", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132353367879069700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352141451984900, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132353367879069696", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3314, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 156, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e175db3", + "_rev": "1-a5b6a3ae893d93fa3cfdc3a28b752338", + "oldid": "4eb38ebd3de67c51170002df", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Got a call from grandma and kuboys. I cried! Hooooo! I miss homeeeee;(", + "created_at": "Fri Nov 04 07:08:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00924381, + -37.72034528 + ] + }, + "id": 132353384144584700, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353384144584704", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.72034528, + 145.00924381 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1337122452/image_normal.jpg", + "profile_sidebar_fill_color": "1c1c1c", + "id": 61212379, + "profile_text_color": "666666", + "followers_count": 99, + "profile_sidebar_border_color": "404040", + "id_str": "61212379", + "profile_background_color": "0f0f0f", + "listed_count": 1, + "utc_offset": -32400, + "statuses_count": 3557, + "description": "a graduate of BSBA-Human Resource Management at De La Salle-College of Saint Benilde. I've been bumming for 6 mos. I'm not a musician or anything:)", + "friends_count": 240, + "location": "Melbourne, Australia", + "profile_link_color": "627e91", + "profile_image_url": "http://a2.twimg.com/profile_images/1337122452/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/227952346/x38faf3995e0b45ea5d04c54d93ada63.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/227952346/x38faf3995e0b45ea5d04c54d93ada63.jpg", + "name": "Timothy John", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "Timoooy", + "notifications": null, + "url": null, + "created_at": "Wed Jul 29 14:53:06 +0000 2009", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e176468", + "_rev": "1-4d38baded8d815f2c26036b9e2f66440", + "oldid": "4eb38ebe3de67c51170002e0", + "favorited": false, + "in_reply_to_user_id": 122863937, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@HaryTriono jetsettttt", + "created_at": "Fri Nov 04 07:08:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352714725265408", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20845445, + -33.87654137 + ] + }, + "id": 132353384891162620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 122863937, + "id_str": "122863937", + "screen_name": "HaryTriono", + "name": "Hary Triono" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352714725265400, + "in_reply_to_screen_name": "HaryTriono", + "id_str": "132353384891162624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87654137, + 151.20845445 + ] + }, + "in_reply_to_user_id_str": "122863937", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594437784/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 44334824, + "profile_text_color": "666666", + "followers_count": 136, + "profile_sidebar_border_color": "181A1E", + "id_str": "44334824", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 646, + "description": "mu fan! chef! n tebet the place to be.", + "friends_count": 313, + "location": "toilet", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1594437784/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "DefliYMCMB", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "deflibarbar", + "notifications": null, + "url": "http://indonesiakapanmaju.net", + "created_at": "Wed Jun 03 10:42:30 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17671e", + "_rev": "1-ea21c00911118fb741d1e3d682703acf", + "oldid": "4eb38ebf3de67c51170002e1", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1487669803/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "is_translator": false, + "id": 352148780, + "profile_text_color": "333333", + "followers_count": 48, + "protected": false, + "id_str": "352148780", + "default_profile_image": false, + "listed_count": 0, + "utc_offset": null, + "statuses_count": 808, + "description": "touch daddys dick ", + "friends_count": 55, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1487669803/image_normal.jpg", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Meg Ryan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "MeggyR_", + "url": null, + "created_at": "Wed Aug 10 06:29:02 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "profile_sidebar_border_color": "C0DEED", + "default_profile": true, + "following": null + }, + "favorited": false, + "in_reply_to_user_id": 223401631, + "contributors": null, + "truncated": false, + "text": "@BreannaCollins_ here for you babe.. Xxx", + "created_at": "Fri Nov 04 07:08:01 +0000 2011", + "retweeted": false, + "in_reply_to_status_id": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 148.16451317, + -33.13990759 + ] + }, + "id": 132353388959633400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 223401631, + "screen_name": "BreannaCollins_", + "name": "Breanna Collins", + "id_str": "223401631" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id_str": null, + "place": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "BreannaCollins_", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.13990759, + 148.16451317 + ] + }, + "in_reply_to_user_id_str": "223401631", + "id_str": "132353388959633408" + }, + { + "_id": "51f39676462cca21859bd92d8e176dbd", + "_rev": "1-f71ae5a24e6c4839b6255aa83be88c4d", + "oldid": "4eb38ec93de67c51170002e2", + "contributors": null, + "truncated": false, + "text": "I'm at Madame Brussels w/ @nikkers5 http://t.co/4E3tKppV", + "in_reply_to_status_id": null, + "id": 132353434237141000, + "entities": { + "user_mentions": [ + { + "indices": [ + 26, + 35 + ], + "id": 20897610, + "id_str": "20897610", + "screen_name": "nikkers5", + "name": "Nicole Brockhouse" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 36, + 56 + ], + "url": "http://t.co/4E3tKppV", + "expanded_url": "http://4sq.com/sTq41t", + "display_url": "4sq.com/sTq41t" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.971508, + -37.811851 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353434237140992", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1597646106/image_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 32359063, + "profile_text_color": "8b2ca3", + "followers_count": 92, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "32359063", + "profile_background_color": "C6E2EE", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2055, + "description": "Sprhero in disguise. Luv being silly with me' friends! esp. @ Rubgy matches! Go Knights! Luv my English Bully Cino too..cheeky! xxx Luv my Joey too!", + "friends_count": 195, + "location": "Melbourne, born Newcastle", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a2.twimg.com/profile_images/1597646106/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Stella Nicolas", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 64, + "screen_name": "ShiinesBright", + "notifications": null, + "url": null, + "created_at": "Fri Apr 17 10:02:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.811851, + 144.971508 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:08:12 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e177ce6", + "_rev": "1-0569c64b488626c23aef92fb1971e415", + "oldid": "4eb38ece3de67c51170002e3", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF I'm here for you if you need to talk to okaaai? Xo", + "created_at": "Fri Nov 04 07:08:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352141451984896", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132353453539340290, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352141451984900, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132353453539340288", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3315, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 156, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1788e6", + "_rev": "1-0dbfc66f18aa230ea10dc2d16a70d71c", + "oldid": "4eb38ed03de67c51170002e4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", + "text": "Bored #nofriendssadiknow", + "created_at": "Fri Nov 04 07:08:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.612, + -32.93498 + ] + }, + "id": 132353462028607490, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 6, + 24 + ], + "text": "nofriendssadiknow" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353462028607488", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.93498, + 151.612 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1596120398/427641743_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 148360974, + "profile_text_color": "666666", + "followers_count": 182, + "profile_sidebar_border_color": "181A1E", + "id_str": "148360974", + "profile_background_color": "1A1B1F", + "listed_count": 2, + "utc_offset": -25200, + "statuses_count": 18924, + "description": "“What a beautiful, sunny morning. It makes you happy to be alive, doesn’t it? We can’t let the sun outshine us! We have to beam, too!”", + "friends_count": 140, + "location": "Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1596120398/427641743_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Mel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "mellee1102", + "notifications": null, + "url": "http://estheranderson.net", + "created_at": "Wed May 26 14:14:42 +0000 2010", + "contributors_enabled": false, + "time_zone": "Mountain Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e179778", + "_rev": "1-c67f7e4316186e78149bcb70cf2aa1db", + "oldid": "4eb38ed13de67c51170002e5", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "CYDM @Ayoryemi", + "created_at": "Fri Nov 04 07:08:20 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.82629934, + -33.75777894 + ] + }, + "id": 132353466814304260, + "entities": { + "user_mentions": [ + { + "indices": [ + 5, + 14 + ], + "id": 287435820, + "id_str": "287435820", + "screen_name": "Ayoryemi", + "name": "Aduloju odunayo sho" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353466814304256", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.75777894, + 150.82629934 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619465109/image_normal.jpg", + "profile_sidebar_fill_color": "EADEAA", + "id": 152993584, + "profile_text_color": "333333", + "followers_count": 106, + "profile_sidebar_border_color": "D9B17E", + "id_str": "152993584", + "profile_background_color": "8B542B", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 9276, + "description": "I am a lady of few words", + "friends_count": 108, + "location": "", + "profile_link_color": "9D582E", + "profile_image_url": "http://a2.twimg.com/profile_images/1619465109/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme8/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme8/bg.gif", + "name": "Akanbi Olayemi", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "sholayemi", + "notifications": null, + "url": null, + "created_at": "Mon Jun 07 12:04:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e179e68", + "_rev": "1-02a0425d7713eeddd041a16360a3fe58", + "oldid": "4eb38ed33de67c51170002e6", + "contributors": null, + "truncated": false, + "text": "@_tatew I'm here! (@ KFC) http://t.co/ZQ2ODAQk", + "in_reply_to_status_id": null, + "id": 132353476943552510, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 26211473, + "id_str": "26211473", + "screen_name": "_Tatew", + "name": "Tate Wilson" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 26, + 46 + ], + "url": "http://t.co/ZQ2ODAQk", + "expanded_url": "http://4sq.com/rqI3Gz", + "display_url": "4sq.com/rqI3Gz" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.777732, + -32.926466 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": "_Tatew", + "in_reply_to_user_id": 26211473, + "retweet_count": 0, + "id_str": "132353476943552512", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1371983456/tumblr_llspbgaCx11qcndkbo1_250_normal.jpg", + "profile_sidebar_fill_color": "c7c7c7", + "id": 44102683, + "profile_text_color": "333333", + "followers_count": 265, + "profile_sidebar_border_color": "5b5b5b", + "id_str": "44102683", + "profile_background_color": "ffffff", + "listed_count": 8, + "utc_offset": 36000, + "statuses_count": 23546, + "description": "18. Pop-punk. Australia. City. I like The Story So Far more than you.", + "friends_count": 234, + "location": "NSW Australia", + "profile_link_color": "696969", + "profile_image_url": "http://a3.twimg.com/profile_images/1371983456/tumblr_llspbgaCx11qcndkbo1_250_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/216477635/Brisbane_City_1680x1050_by_MrChuang.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/216477635/Brisbane_City_1680x1050_by_MrChuang.jpg", + "name": "Jonathon Lillia", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 85, + "screen_name": "_jonny93", + "notifications": null, + "url": null, + "created_at": "Tue Jun 02 11:37:17 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.926466, + 151.777732 + ] + }, + "in_reply_to_user_id_str": "26211473", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:08:22 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e17ab6f", + "_rev": "1-237e70f551e9d873bbb8a51a301521ef", + "oldid": "4eb38ed43de67c51170002e7", + "contributors": null, + "truncated": false, + "text": "I'm at Chadstone Shopping Centre (1341 Dandenong Rd., Chadstone) w/ 5 others http://t.co/zECb6yMw", + "in_reply_to_status_id": null, + "id": 132353481704083460, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 77, + 97 + ], + "url": "http://t.co/zECb6yMw", + "expanded_url": "http://4sq.com/v4ppAk", + "display_url": "4sq.com/v4ppAk" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.08347511, + -37.8865056 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353481704083456", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1472445894/282730_2242059736197_1389206970_32559928_559359_n_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 68079898, + "profile_text_color": "3C3940", + "followers_count": 185, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "68079898", + "profile_background_color": "0099B9", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 17750, + "description": "I'm good, but I'm not an angel. I do sin, but I'm not a devil. ;)", + "friends_count": 255, + "location": "ÜT: -37.8834309,145.0912628", + "profile_link_color": "0099B9", + "profile_image_url": "http://a3.twimg.com/profile_images/1472445894/282730_2242059736197_1389206970_32559928_559359_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "Wilson Pangestu", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "byuuuu", + "notifications": null, + "url": null, + "created_at": "Sun Aug 23 05:20:09 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8865056, + 145.08347511 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:08:23 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e17ae2a", + "_rev": "1-986bd4a9aabc3ab707b6395e67a945c6", + "oldid": "4eb38ed63de67c51170002e8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.tweetcaster.com\" rel=\"nofollow\">TweetCaster for Android</a>", + "text": "Why do I feel guilty after every shopping spree? Is that normal? #postshoppingsyndrome", + "created_at": "Fri Nov 04 07:08:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2103928, + -33.8412428 + ] + }, + "id": 132353486749827070, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 65, + 86 + ], + "text": "postshoppingsyndrome" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353486749827072", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8412428, + 151.2103928 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1538104395/image_normal.jpg", + "profile_sidebar_fill_color": "f2b5b7", + "id": 110844456, + "profile_text_color": "b34d76", + "followers_count": 70, + "profile_sidebar_border_color": "113adb", + "id_str": "110844456", + "profile_background_color": "080000", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 557, + "description": "believes in Moving cameras! ", + "friends_count": 147, + "location": "Sydney", + "profile_link_color": "e67591", + "profile_image_url": "http://a2.twimg.com/profile_images/1538104395/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/328422026/Photo_11-09-11_16_38_04.jpeg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/328422026/Photo_11-09-11_16_38_04.jpeg", + "name": "Swati Limaye", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "SwatiLimaye", + "notifications": null, + "url": "http://swatilimaye.blogspot.com/", + "created_at": "Tue Feb 02 23:39:09 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17bc77", + "_rev": "1-274d436ba7f2b225095f40dd6a31435a", + "oldid": "4eb38ed63de67c51170002e9", + "contributors": null, + "truncated": false, + "text": "I'm at UniLodge (Melbourne, VIC) http://t.co/wt30fpFq", + "in_reply_to_status_id": null, + "id": 132353489786511360, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 33, + 53 + ], + "url": "http://t.co/wt30fpFq", + "expanded_url": "http://4sq.com/tafkOc", + "display_url": "4sq.com/tafkOc" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97115, + -37.809961 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353489786511360", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1597630777/peng_tw_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 91724675, + "profile_text_color": "333333", + "followers_count": 71, + "profile_sidebar_border_color": "C0DEED", + "id_str": "91724675", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 10795, + "description": "DJ & Artist", + "friends_count": 27, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1597630777/peng_tw_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Peng S | เป้ง", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "djPeng", + "notifications": null, + "url": "http://www.facebook.com/peng6uad", + "created_at": "Sun Nov 22 04:41:08 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.809961, + 144.97115 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:08:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e17bf0e", + "_rev": "1-8ec49e585fa13c574a7fc9452d0ae751", + "oldid": "4eb38ed93de67c51170002ea", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "\"I just need a little of your time to say the words I never said .\"", + "created_at": "Fri Nov 04 07:08:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.90698939, + -33.77053027 + ] + }, + "id": 132353499391471620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353499391471616", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77053027, + 150.90698939 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613337644/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 158339561, + "profile_text_color": "adadad", + "followers_count": 152, + "profile_sidebar_border_color": "e87f7f", + "id_str": "158339561", + "profile_background_color": "bff2c4", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 4597, + "description": "to put random thoughts and stalk favourite people of all time + show some pretty pictures . so please, don't mind me . :)", + "friends_count": 203, + "location": "", + "profile_link_color": "e38484", + "profile_image_url": "http://a2.twimg.com/profile_images/1613337644/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/157565606/77words_patt7_198.gif", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/157565606/77words_patt7_198.gif", + "name": "jewlz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 188, + "screen_name": "akuruii", + "notifications": null, + "url": "http://akuruii-wishes.deviantart.com", + "created_at": "Tue Jun 22 11:40:09 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17cccb", + "_rev": "1-0d89cf6fb34db52573eae54eeac11a58", + "oldid": "4eb38eda3de67c51170002eb", + "favorited": false, + "in_reply_to_user_id": 718713, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@decryption SwitchResX", + "created_at": "Fri Nov 04 07:08:29 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132306157451739136", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.191776, + -37.80239935 + ] + }, + "id": 132353505313820670, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 718713, + "id_str": "718713", + "screen_name": "decryption", + "name": "Anthony Agius" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132306157451739140, + "in_reply_to_screen_name": "decryption", + "id_str": "132353505313820672", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80239935, + 145.191776 + ] + }, + "in_reply_to_user_id_str": "718713", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "profile_sidebar_fill_color": "252429", + "id": 16662767, + "profile_text_color": "666666", + "followers_count": 186, + "profile_sidebar_border_color": "181A1E", + "id_str": "16662767", + "profile_background_color": "1A1B1F", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 5440, + "description": "DJ, Video Editor, & All round Geek", + "friends_count": 285, + "location": "Bulleen, Victoria", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "James Smith", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "smithjw", + "notifications": null, + "url": "http://smithjw.me", + "created_at": "Thu Oct 09 05:47:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17d734", + "_rev": "1-26dd1933a736197698118c06df593435", + "oldid": "4eb38ee43de67c51170002ec", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Fuck yeah! Finish work!", + "created_at": "Fri Nov 04 07:08:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19328478, + -33.93334629 + ] + }, + "id": 132353547944730620, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353547944730624", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93334629, + 151.19328478 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 209302946, + "profile_text_color": "666666", + "followers_count": 16, + "profile_sidebar_border_color": "181A1E", + "id_str": "209302946", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 228, + "description": "love many, trust a few", + "friends_count": 14, + "location": "Sydney, australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "T. Emerald M. Windra", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "emeraldkta", + "notifications": null, + "url": null, + "created_at": "Thu Oct 28 22:59:24 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17dacd", + "_rev": "1-924915fd23e474c4d2104c2366134b5a", + "oldid": "4eb38ef23de67c51170002ed", + "contributors": null, + "truncated": false, + "text": "I've been told its good, I best not have been misinformed. (@ Newtown Thai II express) http://t.co/hyaQZca1", + "in_reply_to_status_id": null, + "id": 132353606283309060, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 87, + 107 + ], + "url": "http://t.co/hyaQZca1", + "expanded_url": "http://4sq.com/v8H62G", + "display_url": "4sq.com/v8H62G" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.1782868, + -33.89825 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353606283309056", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570490390/image_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 149495489, + "profile_text_color": "333333", + "followers_count": 360, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "149495489", + "profile_background_color": "022330", + "listed_count": 20, + "utc_offset": -36000, + "statuses_count": 3104, + "description": "New to Sydney, work in Telco, read too much about design and urban planning. Lover of shiny things, drinker of coffee, aged to 24 years and rather tall.", + "friends_count": 445, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1570490390/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Kieran Mc", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 97, + "screen_name": "kjmci", + "notifications": null, + "url": null, + "created_at": "Sat May 29 12:44:47 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.89825, + 151.1782868 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:08:53 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e17e302", + "_rev": "1-a27d2f08932a01839e7b2effda3b4395", + "oldid": "4eb38efc3de67c51170002ee", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Finally finished my HSC. bought my speakers for my computer as well, yayayay. Good afternoon with @miguelbringas_", + "created_at": "Fri Nov 04 07:09:03 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.89927923, + -33.97101604 + ] + }, + "id": 132353646766718980, + "entities": { + "user_mentions": [ + { + "indices": [ + 98, + 113 + ], + "id": 314940050, + "id_str": "314940050", + "screen_name": "miguelbringas_", + "name": "Miguel Bringas" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353646766718979", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.97101604, + 150.89927923 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1619948208/295721_2429711063348_1268753954_2896120_137551165_n_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 403876760, + "profile_text_color": "333333", + "followers_count": 12, + "profile_sidebar_border_color": "eeeeee", + "id_str": "403876760", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 15, + "description": "", + "friends_count": 27, + "location": "", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1619948208/295721_2429711063348_1268753954_2896120_137551165_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Georgia", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "georgiacarterr", + "notifications": null, + "url": null, + "created_at": "Thu Nov 03 03:45:01 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17ee54", + "_rev": "1-d52955bd57fa5e7637c1d6cbecfd49ff", + "oldid": "4eb38f023de67c51170002ef", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "Why is it that skeezy people ALWAYS have a bumbag/fannypack slung over their shoulder?", + "created_at": "Fri Nov 04 07:09:09 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.16698333, + -33.91399161 + ] + }, + "id": 132353672536526850, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353672536526849", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.91399161, + 151.16698333 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1479090319/op-1_normal.png", + "profile_sidebar_fill_color": "313131", + "id": 652953, + "profile_text_color": "ffffff", + "followers_count": 2104, + "profile_sidebar_border_color": "212121", + "id_str": "652953", + "profile_background_color": "212121", + "listed_count": 191, + "utc_offset": 36000, + "statuses_count": 10162, + "description": "Sydney-based freelance interface designer with a meticulous eye for detail. I also lead the Campaign Monitor design team; pushing pixels and wrangling code.", + "friends_count": 392, + "location": "Sydney, Australia", + "profile_link_color": "ff395a", + "profile_image_url": "http://a0.twimg.com/profile_images/1479090319/op-1_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/252099476/emaharishi_background.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/252099476/emaharishi_background.jpg", + "name": "Jesse Dodds", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 86, + "screen_name": "jessedodds", + "notifications": null, + "url": "http://jessedodds.com", + "created_at": "Wed Jan 17 07:34:33 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17f5a4", + "_rev": "1-6e0992e1f70c7f0a5750d31d2a4ce466", + "oldid": "4eb38f063de67c51170002f0", + "contributors": null, + "truncated": false, + "text": "Taking my Bub to Phuket Thailand for his birthday & maya beach where The Beach was filmed. #imaspectaculargirlfriend http://t.co/RLsZCWeB", + "in_reply_to_status_id": null, + "id": 132353688437129220, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY2-niCAAA_snt.jpg", + "expanded_url": "http://twitter.com/steffmcshane/status/132353688437129216/photo/1", + "display_url": "pic.twitter.com/RLsZCWeB", + "url": "http://t.co/RLsZCWeB", + "sizes": { + "large": { + "h": 960, + "w": 640, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132353688445517824", + "indices": [ + 117, + 137 + ], + "type": "photo", + "id": 132353688445517820, + "media_url": "http://p.twimg.com/AdY2-niCAAA_snt.jpg" + } + ], + "hashtags": [ + { + "indices": [ + 91, + 116 + ], + "text": "imaspectaculargirlfriend" + } + ], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 147.64991386, + -37.81880597 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353688437129216", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1484426543/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 45290075, + "profile_text_color": "989898", + "followers_count": 166, + "profile_sidebar_border_color": "C484AE", + "id_str": "45290075", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 1116, + "description": "♥ myfurbubs ♥ thebeach ♥ mybubs ♥ cake ♥ myfamily ♥ home ♥ myfriends ♥ vegan ♥ mylife ♥", + "friends_count": 192, + "location": "Metung Australia ✈", + "profile_link_color": "D1A7CE", + "profile_image_url": "http://a2.twimg.com/profile_images/1484426543/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/144599706/xadc7cf0c069b02321d2746ee2453b2e.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/144599706/xadc7cf0c069b02321d2746ee2453b2e.png", + "name": "Stephanie McShane ♥", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "steffmcshane", + "notifications": null, + "url": "http://www.facebook.com/steph.mcshane", + "created_at": "Sun Jun 07 05:23:07 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81880597, + 147.64991386 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:09:13 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e17fecc", + "_rev": "1-d257e5ded2eabb718a2ca67f4497ce76", + "oldid": "4eb38f073de67c51170002f1", + "favorited": false, + "in_reply_to_user_id": 34551435, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Camsincs beats getting up at 6 for work!!!", + "created_at": "Fri Nov 04 07:09:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132252397815865344", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.92155797, + -33.91982613 + ] + }, + "id": 132353693273169920, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 34551435, + "id_str": "34551435", + "screen_name": "Camsincs", + "name": "Cam Sinclair" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132252397815865340, + "in_reply_to_screen_name": "Camsincs", + "id_str": "132353693273169920", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.91982613, + 150.92155797 + ] + }, + "in_reply_to_user_id_str": "34551435", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1574568423/jet_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 278668125, + "profile_text_color": "362720", + "followers_count": 5, + "profile_sidebar_border_color": "CC3366", + "id_str": "278668125", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 962, + "description": "I'm from Australia / I love the beach, my family and friends", + "friends_count": 62, + "location": "Sydney Australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1574568423/jet_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "Virginia", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 12, + "screen_name": "Ginny8768", + "notifications": null, + "url": null, + "created_at": "Thu Apr 07 18:40:47 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e17fee1", + "_rev": "1-458333cac59081e48ee2aad269e2589d", + "oldid": "4eb38f083de67c51170002f2", + "favorited": false, + "in_reply_to_user_id": 296619290, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@dannmauro well when you get here I will be happy to show you around", + "created_at": "Fri Nov 04 07:09:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132194836278296576", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42802101, + -27.99910297 + ] + }, + "id": 132353695903006720, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 296619290, + "id_str": "296619290", + "screen_name": "dannmauro", + "name": "Daniel Mauro" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132194836278296580, + "in_reply_to_screen_name": "dannmauro", + "id_str": "132353695903006720", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.99910297, + 153.42802101 + ] + }, + "in_reply_to_user_id_str": "296619290", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527157009/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 366934445, + "profile_text_color": "333333", + "followers_count": 224, + "profile_sidebar_border_color": "C0DEED", + "id_str": "366934445", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 264, + "description": "loves AFL and the @Brisbanelions Also do not mind a good party.. Recently moved to Sydney for work", + "friends_count": 1121, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1527157009/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Brad Schutz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "bradjloveafl", + "notifications": null, + "url": null, + "created_at": "Sat Sep 03 02:45:39 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18079b", + "_rev": "1-633f3a04e010a5e5fe6c592d09a5de49", + "oldid": "4eb38f083de67c51170002f3", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Single :/", + "created_at": "Fri Nov 04 07:09:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132353697245179900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353697245179904", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3315, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 157, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e181449", + "_rev": "1-504a805cf661318bd1549ca84ad4aa31", + "oldid": "4eb38f083de67c51170002f4", + "favorited": false, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Halo night with the boys !", + "created_at": "Fri Nov 04 07:09:15 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0901658, + -33.7249481 + ] + }, + "in_reply_to_user_id_str": null, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "id_str": "132353699182944256", + "place": null, + "in_reply_to_user_id": null, + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.7249481, + 151.0901658 + ] + }, + "id": 132353699182944260, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "id": 404058696, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620317257/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "geo_enabled": true, + "profile_text_color": "333333", + "followers_count": 3, + "protected": false, + "location": null, + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 4, + "description": null, + "friends_count": 10, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1620317257/image_normal.jpg", + "following": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "id_str": "404058696", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Jarryd Kearns ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Jarrydok99", + "notifications": null, + "url": null, + "created_at": "Thu Nov 03 11:36:34 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "profile_sidebar_border_color": "C0DEED", + "default_profile": true, + "is_translator": false + } + }, + { + "_id": "51f39676462cca21859bd92d8e1817a4", + "_rev": "1-b51169b4557b098a869af39882c0bce1", + "oldid": "4eb38f0a3de67c51170002f5", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "description": "", + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1541057587/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "is_translator": false, + "id": 58401489, + "profile_text_color": "333333", + "followers_count": 20, + "profile_sidebar_border_color": "C0DEED", + "location": "Adelaide", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 394, + "default_profile_image": false, + "friends_count": 40, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1541057587/image_normal.jpg", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "id_str": "58401489", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "screen_name": "juniejocson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "name": "rachel jocson", + "url": null, + "created_at": "Mon Jul 20 05:40:53 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "favorited": false, + "contributors": null, + "truncated": false, + "text": "@JamieJocson yup, ni-fit ko naman pero madalian din. Haha. Kinakabahan tuloy ako. I'll find out pag-uwi. Fit ko uli with my shoes. :D", + "created_at": "Fri Nov 04 07:09:17 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": "132353323914362880", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.61936195, + -34.87466878 + ] + }, + "id": 132353707835797500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id_str": "230750669", + "screen_name": "JamieJocson", + "name": "Jamie Angela Jocson", + "id": 230750669 + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353323914362880, + "id_str": "132353707835797504", + "in_reply_to_screen_name": "JamieJocson", + "in_reply_to_user_id": 230750669, + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.87466878, + 138.61936195 + ] + }, + "in_reply_to_user_id_str": "230750669", + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>" + }, + { + "_id": "51f39676462cca21859bd92d8e1823e4", + "_rev": "1-e02dbcfc3b9fee47b92e7be54d6d8339", + "oldid": "4eb38f0d3de67c51170002f6", + "contributors": null, + "truncated": false, + "text": "Pictures for upcoming exhibition, Souvenirs of Etcetera @ @thesocietyinc http://t.co/hHvWjHJv", + "in_reply_to_status_id": null, + "id": 132353717272977400, + "entities": { + "user_mentions": [ + { + "indices": [ + 59, + 73 + ], + "id": 192005668, + "id_str": "192005668", + "screen_name": "thesocietyinc", + "name": "The Society inc." + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 74, + 94 + ], + "url": "http://t.co/hHvWjHJv", + "expanded_url": "http://instagr.am/p/SqZM3/", + "display_url": "instagr.am/p/SqZM3/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2262, + -33.88712 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353717272977408", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1128615768/Picture_1_normal.png", + "profile_sidebar_fill_color": "333333", + "id": 193511555, + "profile_text_color": "525252", + "followers_count": 1365, + "profile_sidebar_border_color": "000000", + "id_str": "193511555", + "profile_background_color": "CCCCCC", + "listed_count": 15, + "utc_offset": -36000, + "statuses_count": 540, + "description": "author of Nomad,Etc & The Stylist's Guide to NYC, designer of colours, interior stylist & owner of The Society inc.", + "friends_count": 78, + "location": "18 stewart st Paddington NSW", + "profile_link_color": "666666", + "profile_image_url": "http://a3.twimg.com/profile_images/1128615768/Picture_1_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/155754259/Picture_1.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/155754259/Picture_1.jpg", + "name": "Sibella Court", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "sibellacourt", + "notifications": null, + "url": "http://www.thesocietyinc.com.au", + "created_at": "Wed Sep 22 00:33:20 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.88712, + 151.2262 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:09:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1825a1", + "_rev": "1-ba75995502cc5a4bcf636097ba8ad661", + "oldid": "4eb38f163de67c51170002f7", + "contributors": null, + "truncated": false, + "text": "Stopping by to collect number young son, then off to the State Library. (@ Waterworks Rd, Red Hill) http://t.co/hK9SXDl2", + "in_reply_to_status_id": null, + "id": 132353757626384380, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 100, + 120 + ], + "url": "http://t.co/hK9SXDl2", + "expanded_url": "http://4sq.com/vTcVs0", + "display_url": "4sq.com/vTcVs0" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.000459, + -27.451735 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353757626384384", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504578600/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 41343409, + "profile_text_color": "666666", + "followers_count": 101, + "profile_sidebar_border_color": "181A1E", + "id_str": "41343409", + "profile_background_color": "050002", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 3366, + "description": "Urban gent and pragmatist. General sceptic and moderate cynic.", + "friends_count": 138, + "location": "iPhone: -27.443426,152.995987", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1504578600/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/203320250/IMG_1235.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/203320250/IMG_1235.jpg", + "name": "Simon", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "mondoworld", + "notifications": null, + "url": null, + "created_at": "Wed May 20 11:55:07 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.451735, + 153.000459 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:09:29 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e18308f", + "_rev": "1-f161630c06663ec13351d286f910c987", + "oldid": "4eb38f1b3de67c51170002f8", + "favorited": false, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Bolt gets his own segment on 10 news just to flog his show. Great piece of cross promotion. #auspol", + "created_at": "Fri Nov 04 07:09:34 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99730717, + -37.82313543 + ] + }, + "in_reply_to_user_id_str": null, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 92, + 99 + ], + "text": "auspol" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "id_str": "132353777436069888", + "place": null, + "in_reply_to_user_id": null, + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82313543, + 144.99730717 + ] + }, + "id": 132353777436069890, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "id": 200699500, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1435036109/buddy_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "geo_enabled": true, + "profile_text_color": "333333", + "followers_count": 23, + "protected": false, + "location": "", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 156, + "description": "", + "friends_count": 329, + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1435036109/buddy_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "id_str": "200699500", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Ray Kinsella", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Kinsella_", + "notifications": null, + "url": null, + "created_at": "Sun Oct 10 00:41:40 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "profile_sidebar_border_color": "C0DEED", + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1833cb", + "_rev": "1-ae27bed464eaac85d660be022a2307ba", + "oldid": "4eb38f243de67c51170002f9", + "contributors": null, + "truncated": false, + "text": "hallway of doom. @ RMIT Building 9 http://t.co/vYaxhg3I", + "in_reply_to_status_id": null, + "id": 132353815402905600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 36, + 56 + ], + "url": "http://t.co/vYaxhg3I", + "expanded_url": "http://instagr.am/p/SqZbm/", + "display_url": "instagr.am/p/SqZbm/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96408462, + -37.80741055 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353815402905600", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1533936770/omehhh_normal.jpg", + "profile_sidebar_fill_color": "734982", + "id": 5715472, + "profile_text_color": "4d3f61", + "followers_count": 281, + "profile_sidebar_border_color": "975bab", + "id_str": "5715472", + "profile_background_color": "186873", + "listed_count": 9, + "utc_offset": 28800, + "statuses_count": 17581, + "description": "the devil and god are raging inside me. ", + "friends_count": 268, + "location": "Brunei/Melbourne", + "profile_link_color": "64b7bd", + "profile_image_url": "http://a0.twimg.com/profile_images/1533936770/omehhh_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Ummi Othman", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 30, + "screen_name": "omehhh", + "notifications": null, + "url": "http://emotionsunderfelt.blogspot.com", + "created_at": "Wed May 02 15:03:35 +0000 2007", + "contributors_enabled": false, + "time_zone": "Singapore", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.80741055, + 144.96408462 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:09:43 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e183876", + "_rev": "1-0644081bb8fdddd8a2e171b6760b4fad", + "oldid": "4eb38f273de67c51170002fa", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF talk to me?", + "created_at": "Fri Nov 04 07:09:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352141451984896", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132353825523765250, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352141451984900, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132353825523765248", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3317, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 157, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1842b1", + "_rev": "1-32bfd3c72d81997fe042124de193e4c2", + "oldid": "4eb38f2f3de67c51170002fb", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Worked so much today, off to get EP artwork soon and watching Kenny vs Spenny right now, whoop!", + "created_at": "Fri Nov 04 07:09:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 143.7846533, + -37.5526699 + ] + }, + "id": 132353861594787840, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353861594787840", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.5526699, + 143.7846533 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1523312370/tumblr_lqu0qiBZRf1ql0xn8_normal.jpeg", + "profile_sidebar_fill_color": "252429", + "id": 43674606, + "profile_text_color": "666666", + "followers_count": 85, + "profile_sidebar_border_color": "181A1E", + "id_str": "43674606", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2872, + "description": "I have a mullet and produce EDM music. I love my life.", + "friends_count": 79, + "location": "-37.55931,143.800572", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1523312370/tumblr_lqu0qiBZRf1ql0xn8_normal.jpeg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Mark Grundell", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "mistafixitau", + "notifications": null, + "url": "http://www.soundcloud.com/mistafixit", + "created_at": "Sun May 31 11:13:26 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e184aa3", + "_rev": "1-cfc90b5da54dbdfbebd714191c105225", + "oldid": "4eb38f2f3de67c51170002fc", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Dear Mango Monster self, STOP EATNG!", + "created_at": "Fri Nov 04 07:09:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96282741, + -37.80907092 + ] + }, + "id": 132353863540940800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353863540940800", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80907092, + 144.96282741 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1611572540/image_normal.jpg", + "profile_sidebar_fill_color": "f7e676", + "id": 94304667, + "profile_text_color": "050202", + "followers_count": 23, + "profile_sidebar_border_color": "ffffff", + "id_str": "94304667", + "profile_background_color": "050303", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 33, + "description": "Spectacularly clumsy female", + "friends_count": 23, + "location": "Victoria, Australia", + "profile_link_color": "ffac05", + "profile_image_url": "http://a2.twimg.com/profile_images/1611572540/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/57502895/struggling_ducklings.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/57502895/struggling_ducklings.jpg", + "name": "Cherie Choong", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "rieriecupcakes", + "notifications": null, + "url": "http://rieriecupcakes.tumblr.com", + "created_at": "Thu Dec 03 10:52:42 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e185290", + "_rev": "1-968cb80ad949bd9ba56aa358b7c2d75f", + "oldid": "4eb38f323de67c51170002fd", + "contributors": null, + "truncated": false, + "text": "6 drunks. 4F, 2m, a dog and a kid! (@ Jim Duggan Reserve) http://t.co/FKEdIVqf", + "in_reply_to_status_id": null, + "id": 132353872499974140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 58, + 78 + ], + "url": "http://t.co/FKEdIVqf", + "expanded_url": "http://4sq.com/umxURl", + "display_url": "4sq.com/umxURl" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.988117, + -37.86276 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353872499974144", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1401916707/adam-facebook-2011-06-06_v3_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 319039545, + "profile_text_color": "333333", + "followers_count": 228, + "profile_sidebar_border_color": "C0DEED", + "id_str": "319039545", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 1870, + "description": "Harping Melbourne. Walking Real Food. Eating Political Intrigue. Disgorging Pinot Noir. Recycling True Crime. Chasing Websites. Views are my own.", + "friends_count": 632, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1401916707/adam-facebook-2011-06-06_v3_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Adam Fletcher", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 236, + "screen_name": "fletchadam", + "notifications": null, + "url": "http://twitter.com/fletchadam", + "created_at": "Fri Jun 17 13:26:54 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.86276, + 144.988117 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:09:56 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e185768", + "_rev": "1-f5b68717aa89c50a55c86f7761713388", + "oldid": "4eb38f3b3de67c51170002fe", + "contributors": null, + "truncated": false, + "text": "The Year of the Flood http://t.co/49fk7ClX", + "in_reply_to_status_id": null, + "id": 132353912027095040, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 22, + 42 + ], + "url": "http://t.co/49fk7ClX", + "expanded_url": "http://weav.rs/s3uwqC", + "display_url": "weav.rs/s3uwqC" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 130.839988, + -12.464858 + ] + }, + "source": "<a href=\"http://www.weavrs.com\" rel=\"nofollow\">Weavrs</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353912027095040", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "time_zone": null, + "id": 328136694, + "description": null, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1423727063/avatar_normal", + "profile_sidebar_fill_color": "CCC0DE", + "profile_text_color": "64ABFF", + "followers_count": 14, + "profile_sidebar_border_color": "64ABFF", + "id_str": "328136694", + "default_profile_image": false, + "listed_count": 0, + "utc_offset": null, + "statuses_count": 3864, + "profile_background_color": "C0DEED", + "friends_count": 0, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/357629116/1.gif", + "profile_link_color": "976BAD", + "profile_image_url": "http://a3.twimg.com/profile_images/1423727063/avatar_normal", + "is_translator": false, + "show_all_inline_media": false, + "geo_enabled": true, + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/357629116/1.gif", + "name": "dundee", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "oritethere", + "notifications": null, + "url": null, + "created_at": "Sat Jul 02 20:12:01 +0000 2011", + "contributors_enabled": false, + "location": "Darwin, Australia", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -12.464858, + 130.839988 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:10:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e185f40", + "_rev": "1-b6f99dc2aebf206899241e97d16f849d", + "oldid": "4eb38f3e3de67c51170002ff", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "Ini modusan sesat tapi manjur nih RT @RezaWandi: @restii_ beli chlorofom ama karung. Senjata ampuh itu buat bawa pulang.. :D", + "created_at": "Fri Nov 04 07:10:08 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96770854, + -37.81536429 + ] + }, + "id": 132353922911305730, + "entities": { + "user_mentions": [ + { + "indices": [ + 37, + 47 + ], + "id": 52667257, + "id_str": "52667257", + "screen_name": "RezaWandi", + "name": "Reza Wandi" + }, + { + "indices": [ + 49, + 57 + ], + "id": 82506806, + "id_str": "82506806", + "screen_name": "restii_", + "name": "echi resti kristina" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353922911305728", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81536429, + 144.96770854 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609343791/IMG_0070_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 326253028, + "profile_text_color": "333333", + "followers_count": 24, + "profile_sidebar_border_color": "C0DEED", + "id_str": "326253028", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 184, + "description": "life once and i'm gonna rock it !", + "friends_count": 43, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1609343791/IMG_0070_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "allan fadlansyah", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "allansyh", + "notifications": null, + "url": null, + "created_at": "Wed Jun 29 16:40:41 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e186a13", + "_rev": "1-2766b10bcbb7ae3d1f57af4163049dc5", + "oldid": "4eb38f3f3de67c5117000300", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "And it really just keeps going down hill for #qantas don't you agree?", + "created_at": "Fri Nov 04 07:10:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0805299, + -37.8554007 + ] + }, + "id": 132353930343612420, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 45, + 52 + ], + "text": "qantas" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353930343612416", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8554007, + 145.0805299 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1604081742/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 397118244, + "profile_text_color": "333333", + "followers_count": 8, + "profile_sidebar_border_color": "eeeeee", + "id_str": "397118244", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 121, + "description": "RAWRRR, britt;16", + "friends_count": 52, + "location": "melbourne ", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1604081742/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Brittany Davies", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "infinitybritt", + "notifications": null, + "url": null, + "created_at": "Mon Oct 24 08:12:30 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18758c", + "_rev": "1-2caaa8422ca25532eb99901c2ea2c01c", + "oldid": "4eb38f413de67c5117000301", + "favorited": false, + "in_reply_to_user_id": 5681562, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Fitzy But it may depend on who's attached to it. =]", + "created_at": "Fri Nov 04 07:10:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353412942663680", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.11225872, + -37.85455966 + ] + }, + "id": 132353935838154750, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 5681562, + "id_str": "5681562", + "screen_name": "Fitzy", + "name": "Wayne FitzSimons" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353412942663680, + "in_reply_to_screen_name": "Fitzy", + "id_str": "132353935838154752", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85455966, + 145.11225872 + ] + }, + "in_reply_to_user_id_str": "5681562", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20977411, + "profile_text_color": "333333", + "followers_count": 355, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20977411", + "profile_background_color": "C0DEED", + "listed_count": 26, + "utc_offset": 36000, + "statuses_count": 12625, + "description": "4x 85's on Jubei'Thos & Earthen Ring AIE. I might work for that telco... glutten for punishment. Geek, nerd, infertile, irreverant mind.", + "friends_count": 675, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83621806/XCV-1_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Indigored", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 99, + "screen_name": "Indigored_hot", + "notifications": null, + "url": null, + "created_at": "Mon Feb 16 11:12:56 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e187ccf", + "_rev": "1-a9192416ffa79ad6d8a5b971658ea01e", + "oldid": "4eb38f433de67c5117000302", + "favorited": false, + "in_reply_to_user_id": 186703330, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@mrstwotwo @crtwotwo come on guys do tell", + "created_at": "Fri Nov 04 07:10:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132253504931762177", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.89646577, + -33.8670268 + ] + }, + "id": 132353944079970300, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 186703330, + "id_str": "186703330", + "screen_name": "mrstwotwo", + "name": "Ellie Reed" + }, + { + "indices": [ + 11, + 20 + ], + "id": 137419464, + "id_str": "137419464", + "screen_name": "CRtwotwo", + "name": "Chad Reed" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132253504931762180, + "in_reply_to_screen_name": "mrstwotwo", + "id_str": "132353944079970304", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8670268, + 150.89646577 + ] + }, + "in_reply_to_user_id_str": "186703330", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1574568423/jet_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 278668125, + "profile_text_color": "362720", + "followers_count": 5, + "profile_sidebar_border_color": "CC3366", + "id_str": "278668125", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 963, + "description": "I'm from Australia / I love the beach, my family and friends", + "friends_count": 62, + "location": "Sydney Australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1574568423/jet_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "Virginia", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 12, + "screen_name": "Ginny8768", + "notifications": null, + "url": null, + "created_at": "Thu Apr 07 18:40:47 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1883fa", + "_rev": "1-0d835d4463ef17c15d1e746c4af5ecbf", + "oldid": "4eb38f4a3de67c5117000303", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "To The stupid slow old person that made me late for my train!!! USE THE BLOODY ELEVATOR OR ESCALATORS!! #homelate", + "created_at": "Fri Nov 04 07:10:21 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.22043457, + -33.87254473 + ] + }, + "id": 132353973691748350, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 104, + 113 + ], + "text": "homelate" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132353973691748352", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87254473, + 151.22043457 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 254449910, + "profile_text_color": "333333", + "followers_count": 316, + "profile_sidebar_border_color": "C0DEED", + "id_str": "254449910", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 1172, + "description": "Senior .NET Developer@ Amnesia Razorfish, melbournian @ heart, 24/7 homosexual, My thoughts are my own and dont represent my employers or clients views.", + "friends_count": 549, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robbie Tapping", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "robbiectapping", + "notifications": null, + "url": "http://www.robbietapping.com.au", + "created_at": "Sat Feb 19 09:00:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e188dd8", + "_rev": "1-db4827a5e9e708cf61f66701a9067ba1", + "oldid": "4eb38f4a3de67c5117000304", + "contributors": null, + "truncated": false, + "text": "Advertise Crap here http://t.co/svmWrygb", + "in_reply_to_status_id": null, + "id": 132353972290863100, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY3PI9CQAAolc6.jpg", + "expanded_url": "http://twitter.com/jpoh/status/132353972290863104/photo/1", + "display_url": "pic.twitter.com/svmWrygb", + "url": "http://t.co/svmWrygb", + "sizes": { + "large": { + "h": 765, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 254, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 448, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132353972295057408", + "indices": [ + 20, + 40 + ], + "type": "photo", + "id": 132353972295057400, + "media_url": "http://p.twimg.com/AdY3PI9CQAAolc6.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.141699, + -33.910822 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Camera on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132353972290863104", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1304393565/image_normal.jpg", + "profile_sidebar_fill_color": "6084e9", + "id": 816717, + "profile_text_color": "092676", + "followers_count": 1834, + "profile_sidebar_border_color": "092676", + "id_str": "816717", + "profile_background_color": "092676", + "listed_count": 161, + "utc_offset": 36000, + "statuses_count": 40242, + "description": "Front-end developer & UI/UX guy in Sydney working @ Atlassian. Love coffee, travel, photography, video games and products. Aspiring iOS app designer/developer", + "friends_count": 1963, + "location": "Melbourne, Australia", + "profile_link_color": "051b61", + "profile_image_url": "http://a2.twimg.com/profile_images/1304393565/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/3707641/stripe_e8c22347b8c9b27dabd1384bb3293e5b.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/3707641/stripe_e8c22347b8c9b27dabd1384bb3293e5b.png", + "name": "Jonathan Poh", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1547, + "screen_name": "jpoh", + "notifications": null, + "url": "http://shallowfoc.us", + "created_at": "Wed Mar 07 01:47:53 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.910822, + 151.141699 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:10:21 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e189962", + "_rev": "1-00669f0d61b8801d27579f7266ff94cd", + "oldid": "4eb38f4f3de67c5117000305", + "favorited": false, + "in_reply_to_user_id": 172887151, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@realMickFoley last tym I saw u u were carving up on WWE what else do u do now? Charaties etc? Ps: wish u were in the WWE Aus tour I wentto!", + "created_at": "Fri Nov 04 07:10:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.09626251, + -33.85511785 + ] + }, + "id": 132353994814263300, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 172887151, + "id_str": "172887151", + "screen_name": "realMickFoley", + "name": "Mick Foley" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "realMickFoley", + "id_str": "132353994814263296", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85511785, + 151.09626251 + ] + }, + "in_reply_to_user_id_str": "172887151", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1617609342/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 402911580, + "profile_text_color": "333333", + "followers_count": 10, + "profile_sidebar_border_color": "C0DEED", + "id_str": "402911580", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 44, + "description": "professional dancer. who loves motorbikes, whos been a gridgirl for the bx1000, who can make a great kebab.", + "friends_count": 24, + "location": "concord sydney bathurst raised", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1617609342/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Becca Holz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "BeccaHolz91", + "notifications": null, + "url": null, + "created_at": "Tue Nov 01 19:08:39 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e189ab7", + "_rev": "1-0fdde312555b84832d27db83560cc970", + "oldid": "4eb38f563de67c5117000306", + "favorited": false, + "in_reply_to_user_id": 292863812, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@KatieStackBTC #1DFACT did you know that #OneDirectionEatCamelDiddle ?", + "created_at": "Fri Nov 04 07:10:33 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353550746525696", + "coordinates": { + "type": "Point", + "coordinates": [ + 149.20257227, + -35.37424233 + ] + }, + "id": 132354025378160640, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 292863812, + "id_str": "292863812", + "screen_name": "KatieStackBTC", + "name": "Your Mum " + } + ], + "hashtags": [ + { + "indices": [ + 16, + 23 + ], + "text": "1DFACT" + }, + { + "indices": [ + 42, + 69 + ], + "text": "OneDirectionEatCamelDiddle" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132353550746525700, + "in_reply_to_screen_name": "KatieStackBTC", + "id_str": "132354025378160640", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.37424233, + 149.20257227 + ] + }, + "in_reply_to_user_id_str": "292863812", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1384171152/image_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 252963614, + "profile_text_color": "3C3940", + "followers_count": 316, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "252963614", + "profile_background_color": "0099B9", + "listed_count": 12, + "utc_offset": null, + "statuses_count": 6264, + "description": "killjoy, Stacker and yeah i drink juice when i'm killing cause its fukken delicious. i like other stuff too, i'll follow back if you're not annoying", + "friends_count": 475, + "location": "Australia", + "profile_link_color": "0099B9", + "profile_image_url": "http://a2.twimg.com/profile_images/1384171152/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/304542094/himynameis.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/304542094/himynameis.jpg", + "name": "the unicorn kid", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 95, + "screen_name": "xX_RIANNA_Xx", + "notifications": null, + "url": "http://www.justletmebreakthisawkwardsilence.tumblr.com", + "created_at": "Wed Feb 16 08:23:42 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e189d6d", + "_rev": "1-0b3c996c18e456120060ec57b7895858", + "oldid": "4eb38f5a3de67c5117000307", + "favorited": false, + "in_reply_to_user_id": 157207018, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MikeWard100 coastal KTM bruz", + "created_at": "Fri Nov 04 07:10:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353941064269824", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.34858755, + -33.38708021 + ] + }, + "id": 132354041308123140, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 157207018, + "id_str": "157207018", + "screen_name": "MikeWard100", + "name": "Mike Ward" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353941064269820, + "in_reply_to_screen_name": "MikeWard100", + "id_str": "132354041308123136", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.38708021, + 151.34858755 + ] + }, + "in_reply_to_user_id_str": "157207018", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1419400255/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 43620582, + "profile_text_color": "666666", + "followers_count": 439, + "profile_sidebar_border_color": "181A1E", + "id_str": "43620582", + "profile_background_color": "1A1B1F", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 291, + "description": "Live and breathe bikes pretty much. Love hangin with friends and tourin Australia and of course love my girl Moneeee.", + "friends_count": 88, + "location": "Fernvale QLD", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1419400255/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/17015946/flipnac.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/17015946/flipnac.jpg", + "name": "Robbie Marshall", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "Sheriff51", + "notifications": null, + "url": "http://www.robbiemarshall.com", + "created_at": "Sun May 31 00:06:29 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18a555", + "_rev": "1-5c5ce758fbef45009025f4f7f489fc6d", + "oldid": "4eb38f633de67c5117000308", + "favorited": false, + "in_reply_to_user_id": 387018585, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@kate_fleiter awwww :) cute!", + "created_at": "Fri Nov 04 07:10:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345328652402689", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98053528, + -37.85790461 + ] + }, + "id": 132354078461263870, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 387018585, + "id_str": "387018585", + "screen_name": "kate_fleiter", + "name": "Kate Fleiter" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345328652402690, + "in_reply_to_screen_name": "kate_fleiter", + "id_str": "132354078461263872", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.85790461, + 144.98053528 + ] + }, + "in_reply_to_user_id_str": "387018585", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1338011381/Davis_0138_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 272207996, + "profile_text_color": "333333", + "followers_count": 2435, + "profile_sidebar_border_color": "C0DEED", + "id_str": "272207996", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": -36000, + "statuses_count": 1382, + "description": "Fashion, Arts, Lifestyle. ", + "friends_count": 118, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1338011381/Davis_0138_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/236774662/DAVIS.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/236774662/DAVIS.jpg", + "name": "Davis Acacia-Sky", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "DavisAcaciaSky", + "notifications": null, + "url": "http://acacia-sky.com", + "created_at": "Sat Mar 26 01:50:16 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18a55e", + "_rev": "1-f14812bc1449f745106a915bd604abe5", + "oldid": "4eb38f683de67c5117000309", + "contributors": null, + "truncated": false, + "text": "I'm at The Red Door (65-67 Foveaux St Surry Hills NSW 2010, Sydney) http://t.co/dReyDEt5", + "in_reply_to_status_id": null, + "id": 132354102305882110, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 70, + 90 + ], + "url": "http://t.co/dReyDEt5", + "expanded_url": "http://4sq.com/sEAhVo", + "display_url": "4sq.com/sEAhVo" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.210675, + -33.884382 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354102305882112", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/65930890/hans_profile_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 5672402, + "profile_text_color": "333333", + "followers_count": 456, + "profile_sidebar_border_color": "eeeeee", + "id_str": "5672402", + "profile_background_color": "B2DFDA", + "listed_count": 14, + "utc_offset": 36000, + "statuses_count": 1042, + "description": "Innovation, corporate development, business development consulting practice w focus on SaaS, Compliance On Demand and Sustainability. ", + "friends_count": 400, + "location": "Sydney, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/65930890/hans_profile_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Hans", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "hansdekraker", + "notifications": null, + "url": null, + "created_at": "Tue May 01 02:45:47 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.884382, + 151.210675 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:10:51 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e18b52b", + "_rev": "1-bf4f9f2a37e762b7a0ba71fae8f8b189", + "oldid": "4eb38f693de67c511700030a", + "contributors": null, + "truncated": false, + "text": "I'm at No where (No where, No where, No where) http://t.co/TfyyqirK", + "in_reply_to_status_id": null, + "id": 132354106982547460, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 47, + 67 + ], + "url": "http://t.co/TfyyqirK", + "expanded_url": "http://4sq.com/vmk1F7", + "display_url": "4sq.com/vmk1F7" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 140.706084, + -2.517505 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354106982547456", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1586485769/327990964_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 70287069, + "profile_text_color": "666666", + "followers_count": 65, + "profile_sidebar_border_color": "181A1E", + "id_str": "70287069", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": -28800, + "statuses_count": 192, + "description": "Just me and my own world ♉(ˆ▽ˆ)", + "friends_count": 94, + "location": "ÜT: -2.54346,140.702449", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1586485769/327990964_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "meilina busran", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "inabusran", + "notifications": null, + "url": null, + "created_at": "Mon Aug 31 02:44:52 +0000 2009", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -2.517505, + 140.706084 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:10:52 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e18ba7c", + "_rev": "1-214050987b7b4dfbb771a6c1f2f8496a", + "oldid": "4eb38f6a3de67c511700030b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Caught up with #The Slap on I view, now wish I didn't, so depressing!", + "created_at": "Fri Nov 04 07:10:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.14724137, + -35.2414661 + ] + }, + "id": 132354110753210370, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 15, + 19 + ], + "text": "The" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354110753210368", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.2414661, + 149.14724137 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1315814163/Photo_on_2011-04-18_at_19_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 266869607, + "profile_text_color": "333333", + "followers_count": 144, + "profile_sidebar_border_color": "C0DEED", + "id_str": "266869607", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": -36000, + "statuses_count": 266, + "description": "ABC news reporter", + "friends_count": 210, + "location": "Canberra, ACT", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1315814163/Photo_on_2011-04-18_at_19_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Jessica Nairn", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "jessnairn", + "notifications": null, + "url": null, + "created_at": "Tue Mar 15 23:37:39 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18c2b1", + "_rev": "1-9f4fe12cd526a538ace281cfe33c4aca", + "oldid": "4eb38f6e3de67c511700030c", + "favorited": false, + "in_reply_to_user_id": 14270679, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@rezntoumos @jamesforpm you kids at movida?", + "created_at": "Fri Nov 04 07:10:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95301719, + -37.8172998 + ] + }, + "id": 132354126897098750, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 14270679, + "id_str": "14270679", + "screen_name": "rezntoumos", + "name": "rezntoumos" + }, + { + "indices": [ + 12, + 23 + ], + "id": 210722544, + "id_str": "210722544", + "screen_name": "jamesforpm", + "name": "James Sanders" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "rezntoumos", + "id_str": "132354126897098753", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8172998, + 144.95301719 + ] + }, + "in_reply_to_user_id_str": "14270679", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527223832/image_normal.jpg", + "profile_sidebar_fill_color": "7aa1e6", + "id": 7446652, + "profile_text_color": "44494d", + "followers_count": 512, + "profile_sidebar_border_color": "181A1E", + "id_str": "7446652", + "profile_background_color": "1b4c70", + "listed_count": 58, + "utc_offset": 36000, + "statuses_count": 9422, + "description": "Fueled by caffeine + country music. Web kid at @DeloitteOnline. All for music futurism, digital strat and caramel coloured sunset skies", + "friends_count": 145, + "location": "Melbourne, Australia", + "profile_link_color": "6174a1", + "profile_image_url": "http://a2.twimg.com/profile_images/1527223832/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/276824585/photo.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/276824585/photo.jpg", + "name": "Julia Hughan", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 92, + "screen_name": "juleshughan", + "notifications": null, + "url": "http://juliahughan.com", + "created_at": "Fri Jul 13 05:48:31 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18c558", + "_rev": "1-2e30fcc54f5eda45045b3238de72b435", + "oldid": "4eb38f713de67c511700030d", + "contributors": null, + "truncated": false, + "text": "Time to make 5k!! (@ York Butter Factory) http://t.co/K4LhtHbu", + "in_reply_to_status_id": null, + "id": 132354138179772420, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 42, + 62 + ], + "url": "http://t.co/K4LhtHbu", + "expanded_url": "http://4sq.com/tKmeEy", + "display_url": "4sq.com/tKmeEy" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.956903, + -37.818797 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354138179772416", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1585749703/227553_10150260300940350_579925349_9513563_4367943_n_normal.jpeg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 388041893, + "profile_text_color": "333333", + "followers_count": 18, + "profile_sidebar_border_color": "C0DEED", + "id_str": "388041893", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 68, + "description": "", + "friends_count": 22, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1585749703/227553_10150260300940350_579925349_9513563_4367943_n_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Harley Alexander", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "the_new_harley", + "notifications": null, + "url": "http://baffleinc.com/", + "created_at": "Mon Oct 10 02:44:37 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.818797, + 144.956903 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:00 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e18ccc5", + "_rev": "1-cdc5d2cb056cf86ae280f93d1d8c51ae", + "oldid": "4eb38f763de67c511700030e", + "favorited": false, + "in_reply_to_user_id": 317504855, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@SparkleOnBiebs words with friends?", + "created_at": "Fri Nov 04 07:11:05 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.01750403, + -37.84973227 + ] + }, + "id": 132354160107597820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 317504855, + "id_str": "317504855", + "screen_name": "SparkleOnBiebs", + "name": "Danielle ♔" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "SparkleOnBiebs", + "id_str": "132354160107597824", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84973227, + 145.01750403 + ] + }, + "in_reply_to_user_id_str": "317504855", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620279758/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 352265716, + "profile_text_color": "333333", + "followers_count": 78, + "profile_sidebar_border_color": "C0DEED", + "id_str": "352265716", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 511, + "description": "I ♥ Haters And Judging By Your Hatrid In Sexy People Like Me Then Your A Hater", + "friends_count": 280, + "location": "On The Decks", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1620279758/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "DJ BoogeyMan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 16, + "screen_name": "lejacko3", + "notifications": null, + "url": "http://www.fakewebsite.com", + "created_at": "Wed Aug 10 11:20:01 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18d1a7", + "_rev": "1-d72a24c721548e8e4df4a679044f548a", + "oldid": "4eb38f7a3de67c511700030f", + "contributors": null, + "truncated": false, + "text": "I'm at Coromandel Valley http://t.co/28rdKWun", + "in_reply_to_status_id": null, + "id": 132354177375543300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 25, + 45 + ], + "url": "http://t.co/28rdKWun", + "expanded_url": "http://4sq.com/td8kt2", + "display_url": "4sq.com/td8kt2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.624162, + -35.047674 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354177375543296", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1361747192/krusty14_gif_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 214851598, + "profile_text_color": "333333", + "followers_count": 465, + "profile_sidebar_border_color": "eeeeee", + "id_str": "214851598", + "profile_background_color": "131516", + "listed_count": 16, + "utc_offset": -36000, + "statuses_count": 5701, + "description": "A frood who really knows were his towel is. F1 tragic.", + "friends_count": 894, + "location": "Adelaide", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1361747192/krusty14_gif_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/202837508/Rivage_-_Spa.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/202837508/Rivage_-_Spa.jpg", + "name": "Adam Szuster", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "Syrilion", + "notifications": null, + "url": "http://www.asent.com.au", + "created_at": "Fri Nov 12 11:41:32 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.047674, + 138.624162 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e18df21", + "_rev": "1-17626f1f1bde87c9e9703549d01354eb", + "oldid": "4eb38f7b3de67c5117000310", + "favorited": false, + "in_reply_to_user_id": 68366487, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@csandd @cartreksign Yep that is one good looking car...and nice wine!!", + "created_at": "Fri Nov 04 07:11:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132335045804437505", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.64897501, + -34.83924525 + ] + }, + "id": 132354179418169340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 68366487, + "id_str": "68366487", + "screen_name": "csandd", + "name": "CS and D" + }, + { + "indices": [ + 8, + 20 + ], + "id": 209469437, + "id_str": "209469437", + "screen_name": "cartreksign", + "name": "Robert Jones" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132335045804437500, + "in_reply_to_screen_name": "csandd", + "id_str": "132354179418169344", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.83924525, + 138.64897501 + ] + }, + "in_reply_to_user_id_str": "68366487", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1470963236/image_normal.jpg", + "profile_sidebar_fill_color": "032b2e", + "id": 26492157, + "profile_text_color": "867af0", + "followers_count": 41, + "profile_sidebar_border_color": "e6bf85", + "id_str": "26492157", + "profile_background_color": "0a3745", + "listed_count": 5, + "utc_offset": 28800, + "statuses_count": 5082, + "description": "V8 watcher, WCE supporter teddy hugger,Vampire lover and babysitting specialist!! Yes I know, strange mix", + "friends_count": 165, + "location": "South West of West Australia", + "profile_link_color": "3a8a86", + "profile_image_url": "http://a2.twimg.com/profile_images/1470963236/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/240511406/vf15.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/240511406/vf15.jpg", + "name": "Nene King", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "Neensa", + "notifications": null, + "url": null, + "created_at": "Wed Mar 25 13:06:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18e817", + "_rev": "1-ec119254ccad29a318fbc1c69e45dd3c", + "oldid": "4eb38f7b3de67c5117000311", + "contributors": null, + "truncated": false, + "text": "Finished shopping (@ Woolworths) http://t.co/AN1y114g", + "in_reply_to_status_id": null, + "id": 132354180001181700, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 33, + 53 + ], + "url": "http://t.co/AN1y114g", + "expanded_url": "http://4sq.com/vGQXuu", + "display_url": "4sq.com/vGQXuu" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.589516, + -38.604763 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354180001181697", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1539583710/llama_egg_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 18213441, + "profile_text_color": "3D1957", + "followers_count": 57, + "profile_sidebar_border_color": "65B0DA", + "id_str": "18213441", + "profile_background_color": "642D8B", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 5367, + "description": "HBIC. Samoyed. Tiny Mutt. Makeup. Handbags. Shoes. Carpal Tunnel. Tourist Town. Rant.", + "friends_count": 74, + "location": "Inverloch, Australia", + "profile_link_color": "FF0000", + "profile_image_url": "http://a0.twimg.com/profile_images/1539583710/llama_egg_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/278735842/iphone_211.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/278735842/iphone_211.JPG", + "name": "Alice Kingsley", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "llama_egg", + "notifications": null, + "url": "http://www.facebook.com/bananyphone", + "created_at": "Thu Dec 18 11:50:26 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.604763, + 145.589516 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:10 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e18f0d5", + "_rev": "1-e94c5799925264a5e6b3320d0e99947f", + "oldid": "4eb38f7d3de67c5117000312", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF can you please follow me please ?", + "created_at": "Fri Nov 04 07:11:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132354189249609730, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132354189249609728", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3318, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1785, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 158, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18f91c", + "_rev": "1-dc171fbb4252987a46cb2bc692b0ee62", + "oldid": "4eb38f7d3de67c5117000313", + "favorited": false, + "in_reply_to_user_id": 718713, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@decryption should have talked to me. We're a distributor of them. Did you get the Ninja or Samurai?", + "created_at": "Fri Nov 04 07:11:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132328746295361536", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.19203016, + -37.80237744 + ] + }, + "id": 132354188935049220, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 718713, + "id_str": "718713", + "screen_name": "decryption", + "name": "Anthony Agius" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132328746295361540, + "in_reply_to_screen_name": "decryption", + "id_str": "132354188935049216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80237744, + 145.19203016 + ] + }, + "in_reply_to_user_id_str": "718713", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "profile_sidebar_fill_color": "252429", + "id": 16662767, + "profile_text_color": "666666", + "followers_count": 186, + "profile_sidebar_border_color": "181A1E", + "id_str": "16662767", + "profile_background_color": "1A1B1F", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 5441, + "description": "DJ, Video Editor, & All round Geek", + "friends_count": 285, + "location": "Bulleen, Victoria", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "James Smith", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "smithjw", + "notifications": null, + "url": "http://smithjw.me", + "created_at": "Thu Oct 09 05:47:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18fd07", + "_rev": "1-afef0cfa49fb9c417c91671d532f4615", + "oldid": "4eb38f7f3de67c5117000314", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Chisel - Dec 5th!! Finally got tickets!! Bring it on!", + "created_at": "Fri Nov 04 07:11:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.5927835, + -34.93353105 + ] + }, + "id": 132354195201339400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354195201339392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.93353105, + 138.5927835 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1605373871/KwBdy4WG_normal", + "profile_sidebar_fill_color": "DAECF4", + "id": 236787184, + "profile_text_color": "663B12", + "followers_count": 17, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "236787184", + "profile_background_color": "C6E2EE", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 290, + "description": "security manager, like movies, books, dexter, rocky horror, bond, die hard. enjoy time with friends, outgoing, loyal & a little odd.", + "friends_count": 138, + "location": "adelaide australia", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a3.twimg.com/profile_images/1605373871/KwBdy4WG_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Paul Townshend", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "Wiki442", + "notifications": null, + "url": null, + "created_at": "Tue Jan 11 11:11:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e18ffa5", + "_rev": "1-78a0d2715c05d2dc29d7a3781111676f", + "oldid": "4eb38f7f3de67c5117000315", + "favorited": false, + "in_reply_to_user_id": 176724026, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@pandom_ perfect time to grab BF3 then #mandown", + "created_at": "Fri Nov 04 07:11:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132321324021465088", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9993899, + -38.2857685 + ] + }, + "id": 132354198074441730, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 176724026, + "id_str": "176724026", + "screen_name": "pandom_", + "name": "Anthony Burke" + } + ], + "hashtags": [ + { + "indices": [ + 39, + 47 + ], + "text": "mandown" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132321324021465090, + "in_reply_to_screen_name": "pandom_", + "id_str": "132354198074441728", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.2857685, + 144.9993899 + ] + }, + "in_reply_to_user_id_str": "176724026", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1147192959/twitter_normal.jpg", + "profile_sidebar_fill_color": "020812", + "id": 19696764, + "profile_text_color": "17406C", + "followers_count": 228, + "profile_sidebar_border_color": "2280A9", + "id_str": "19696764", + "profile_background_color": "020812", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 4873, + "description": "Love all things Android, Cars, Gaming, ICT, Japan, SNSD and a hint of Photography", + "friends_count": 513, + "location": "Victoria, Australia", + "profile_link_color": "2280A9", + "profile_image_url": "http://a2.twimg.com/profile_images/1147192959/twitter_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/321812947/x2cea0e3d366e0719febb69cee4df56b.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/321812947/x2cea0e3d366e0719febb69cee4df56b.jpg", + "name": "James Pettigrove", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 28, + "screen_name": "DXPetti", + "notifications": null, + "url": "http://dxpetti.com", + "created_at": "Thu Jan 29 04:56:17 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e190575", + "_rev": "1-14280fcc3fb8884981aa966ca41f4629", + "oldid": "4eb38f883de67c5117000316", + "contributors": null, + "truncated": false, + "text": "Fitzroy woman fined for using her truck to block her own driveway. Poor diddums. http://t.co/GSQAPw9t”", + "in_reply_to_status_id": null, + "id": 132354235131113470, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 81, + 101 + ], + "url": "http://t.co/GSQAPw9t", + "expanded_url": "http://bit.ly/seAeiq", + "display_url": "bit.ly/seAeiq" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99559861, + -37.78860446 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354235131113472", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1551345455/image_normal.jpg", + "profile_sidebar_fill_color": "C2F3F7", + "id": 350592754, + "profile_text_color": "020400", + "followers_count": 173, + "profile_sidebar_border_color": "B4DAC3", + "id_str": "350592754", + "profile_background_color": "814040", + "listed_count": 6, + "utc_offset": -36000, + "statuses_count": 915, + "description": "The contrarian bicyclist in Melbourne, Australia.", + "friends_count": 355, + "location": "Melbourne", + "profile_link_color": "000A01", + "profile_image_url": "http://a2.twimg.com/profile_images/1551345455/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/309334921/xd48d13d10032bc9d7f63061e7717a39.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/309334921/xd48d13d10032bc9d7f63061e7717a39.png", + "name": "Etienne de Briquenel", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "BicycleAdagio", + "notifications": null, + "url": null, + "created_at": "Mon Aug 08 01:07:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.78860446, + 144.99559861 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:23 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1911bb", + "_rev": "1-feb375b2cc1ce19d815d6fa0951707f6", + "oldid": "4eb38f8d3de67c5117000317", + "favorited": false, + "in_reply_to_user_id": 14880537, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@alaero we have the 55\" series 7. It's droolworthy", + "created_at": "Fri Nov 04 07:11:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353102006337536", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98123308, + -37.84768213 + ] + }, + "id": 132354256413003780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 14880537, + "id_str": "14880537", + "screen_name": "alaero", + "name": "alaero" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353102006337540, + "in_reply_to_screen_name": "alaero", + "id_str": "132354256413003776", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84768213, + 144.98123308 + ] + }, + "in_reply_to_user_id_str": "14880537", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504411463/bok_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15420301, + "profile_text_color": "333333", + "followers_count": 323, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15420301", + "profile_background_color": "C0DEED", + "listed_count": 30, + "utc_offset": 36000, + "statuses_count": 10414, + "description": "Author of iTransit, tramTRACKER for iPhone and other stuff. Developer in Melbourne. All opinions my own.", + "friends_count": 133, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1504411463/bok_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robert Amos", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 36, + "screen_name": "bok_", + "notifications": null, + "url": null, + "created_at": "Sun Jul 13 23:59:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e191ef5", + "_rev": "1-f6a28cd8fbedaf4df7f7b38f5a625055", + "oldid": "4eb38f913de67c5117000318", + "contributors": null, + "truncated": false, + "text": "I'm at Paringa Caravan Park http://t.co/2XiCcHyr", + "in_reply_to_status_id": null, + "id": 132354271898386430, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 28, + 48 + ], + "url": "http://t.co/2XiCcHyr", + "expanded_url": "http://4sq.com/ruHDGk", + "display_url": "4sq.com/ruHDGk" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 140.78372, + -34.181558 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354271898386433", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1365624125/622.1_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 30185195, + "profile_text_color": "666666", + "followers_count": 54, + "profile_sidebar_border_color": "181A1E", + "id_str": "30185195", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 8708, + "description": "if you don't expect to much from me......... you might not be let down.....", + "friends_count": 108, + "location": "Adelaide", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1365624125/622.1_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/327060655/Daria_Wallpaper_by_tiki06.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/327060655/Daria_Wallpaper_by_tiki06.jpg", + "name": "Kat McKechnie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "S5E2", + "notifications": null, + "url": null, + "created_at": "Fri Apr 10 08:18:54 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.181558, + 140.78372 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e19280e", + "_rev": "1-6661989d1eb90adecafc63791c3beeab", + "oldid": "4eb38f983de67c5117000319", + "contributors": null, + "truncated": false, + "text": "I'm at Albert Park Indoor Sports Centre (Aughtie Drive, Albery Park) http://t.co/IvVLFb1a", + "in_reply_to_status_id": null, + "id": 132354303020105730, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 69, + 89 + ], + "url": "http://t.co/IvVLFb1a", + "expanded_url": "http://4sq.com/rRjLlb", + "display_url": "4sq.com/rRjLlb" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96142387, + -37.84256308 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354303020105728", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620390657/329147010_normal.jpg", + "profile_sidebar_fill_color": "d4d4d4", + "id": 111835846, + "profile_text_color": "000000", + "followers_count": 209, + "profile_sidebar_border_color": "6d96a8", + "id_str": "111835846", + "profile_background_color": "0c0d0d", + "listed_count": 0, + "utc_offset": 25200, + "statuses_count": 4084, + "description": "Frk", + "friends_count": 248, + "location": "ÜT: -7.938402,112.6201567", + "profile_link_color": "a31223", + "profile_image_url": "http://a2.twimg.com/profile_images/1620390657/329147010_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/220940671/12.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/220940671/12.jpg", + "name": "Pravianti Anindita N", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "avipravianti", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=100000142598690", + "created_at": "Sat Feb 06 08:36:58 +0000 2010", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.84256308, + 144.96142387 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e192f84", + "_rev": "1-05344827c4b985c56448a35873556a0e", + "oldid": "4eb38f993de67c511700031a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Laughing is highly contagious.", + "created_at": "Fri Nov 04 07:11:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21028476, + -33.86734592 + ] + }, + "id": 132354306132287490, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354306132287488", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86734592, + 151.21028476 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1576290052/image_normal.jpg", + "profile_sidebar_fill_color": "bbc3c7", + "id": 290216175, + "profile_text_color": "333333", + "followers_count": 230, + "profile_sidebar_border_color": "b8afb8", + "id_str": "290216175", + "profile_background_color": "c7349d", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 688, + "description": "Sport reporter & Olympic Medallist", + "friends_count": 204, + "location": "Sydney, Australia", + "profile_link_color": "5b615e", + "profile_image_url": "http://a2.twimg.com/profile_images/1576290052/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme17/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme17/bg.gif", + "name": "Amy Hetzel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "amy_hetzel", + "notifications": null, + "url": null, + "created_at": "Fri Apr 29 22:53:49 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e193801", + "_rev": "1-e9dc5a04eab232b4f360a41369ae46f8", + "oldid": "4eb38f9b3de67c511700031b", + "contributors": null, + "truncated": false, + "text": "Soaking up the sun at Brighton Beach http://t.co/sKM2J4El", + "in_reply_to_status_id": null, + "id": 132354311421308930, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY3i4UCMAAj3Mu.jpg", + "expanded_url": "http://twitter.com/spreyn0/status/132354311421308928/photo/1", + "display_url": "pic.twitter.com/sKM2J4El", + "url": "http://t.co/sKM2J4El", + "sizes": { + "large": { + "h": 1024, + "w": 765, + "resize": "fit" + }, + "small": { + "h": 455, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 803, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132354311425503232", + "indices": [ + 37, + 57 + ], + "type": "photo", + "id": 132354311425503230, + "media_url": "http://p.twimg.com/AdY3i4UCMAAj3Mu.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.004168, + -37.90719777 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354311421308928", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1466825904/image_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 18042484, + "profile_text_color": "333333", + "followers_count": 1154, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "18042484", + "profile_background_color": "9AE4E8", + "listed_count": 45, + "utc_offset": -18000, + "statuses_count": 11431, + "description": "Producer at The Weather Channel. Kentucky native. Love my Univ. of KY Wildcats! Opinions are my own and do not reflect those of TWC.", + "friends_count": 1509, + "location": "Atlanta", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1466825904/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/12376861/treefog.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/12376861/treefog.jpg", + "name": "spreyn0", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 38, + "screen_name": "spreyn0", + "notifications": null, + "url": "http://facebook.com/spreyn0", + "created_at": "Thu Dec 11 06:21:13 +0000 2008", + "contributors_enabled": false, + "time_zone": "Eastern Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.90719777, + 145.004168 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1947b1", + "_rev": "1-d1774b80c91c511e920cdb837ab02093", + "oldid": "4eb38f9b3de67c511700031c", + "contributors": null, + "truncated": false, + "text": "I'm at Croudace Bay Park w/ @princessbartleb http://t.co/RECfZxMn", + "in_reply_to_status_id": null, + "id": 132354315376537600, + "entities": { + "user_mentions": [ + { + "indices": [ + 28, + 44 + ], + "id": 35431717, + "id_str": "35431717", + "screen_name": "PrincessBartleB", + "name": "Lisa Bartley" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 45, + 65 + ], + "url": "http://t.co/RECfZxMn", + "expanded_url": "http://4sq.com/ttDSQS", + "display_url": "4sq.com/ttDSQS" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.641408, + -33.00012 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354315376537601", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616881376/34cefa2f-7988-433c-9279-8c4b90cc4bee_normal.png", + "profile_sidebar_fill_color": "fbff00", + "id": 88096042, + "profile_text_color": "000000", + "followers_count": 117, + "profile_sidebar_border_color": "0400ff", + "id_str": "88096042", + "profile_background_color": "030780", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1898, + "description": "Queenslander living in enemy territory (NSW), married, two kids and rapidly approaching middle age. Oh well, I will tweet and pretend to be a Gen Y!", + "friends_count": 364, + "location": "Lake Macquarie, Australia", + "profile_link_color": "1504b5", + "profile_image_url": "http://a1.twimg.com/profile_images/1616881376/34cefa2f-7988-433c-9279-8c4b90cc4bee_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/310586576/Cornwall_Daffodils_small_.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/310586576/Cornwall_Daffodils_small_.jpg", + "name": "David Bartley", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "dave_bartley", + "notifications": null, + "url": "http://unbalanceddad.wordpress.com/", + "created_at": "Sat Nov 07 02:44:17 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.00012, + 151.641408 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e195122", + "_rev": "1-4470d5654525d07d02ed55278e94e44e", + "oldid": "4eb38f9d3de67c511700031d", + "contributors": null, + "truncated": false, + "text": "Souvenirs of Etcetera:photographs @ Barometre gallery http://t.co/PHJogNG0", + "in_reply_to_status_id": null, + "id": 132354322741735420, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 55, + 75 + ], + "url": "http://t.co/PHJogNG0", + "expanded_url": "http://instagr.am/p/SqZj0/", + "display_url": "instagr.am/p/SqZj0/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2226, + -33.75557 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354322741735424", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1128615768/Picture_1_normal.png", + "profile_sidebar_fill_color": "333333", + "id": 193511555, + "profile_text_color": "525252", + "followers_count": 1365, + "profile_sidebar_border_color": "000000", + "id_str": "193511555", + "profile_background_color": "CCCCCC", + "listed_count": 15, + "utc_offset": -36000, + "statuses_count": 540, + "description": "author of Nomad,Etc & The Stylist's Guide to NYC, designer of colours, interior stylist & owner of The Society inc.", + "friends_count": 78, + "location": "18 stewart st Paddington NSW", + "profile_link_color": "666666", + "profile_image_url": "http://a3.twimg.com/profile_images/1128615768/Picture_1_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/155754259/Picture_1.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/155754259/Picture_1.jpg", + "name": "Sibella Court", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "sibellacourt", + "notifications": null, + "url": "http://www.thesocietyinc.com.au", + "created_at": "Wed Sep 22 00:33:20 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.75557, + 151.2226 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:44 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e195aef", + "_rev": "1-98b50c6bba80e26dd9e4dd7508748572", + "oldid": "4eb38f9d3de67c511700031e", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF I will talk to you. But u won't talk to me :'(", + "created_at": "Fri Nov 04 07:11:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352141451984896", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132354322792058880, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352141451984900, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132354322792058880", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3319, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1785, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 158, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e196804", + "_rev": "1-5e9f8433adea6134814fb1289a513e5c", + "oldid": "4eb38f9f3de67c511700031f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#vline late again!!! Useless fucks!", + "created_at": "Fri Nov 04 07:11:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.34638694, + -37.10156374 + ] + }, + "id": 132354331474276350, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 6 + ], + "text": "vline" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354331474276352", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.10156374, + 144.34638694 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1578791912/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 323167561, + "profile_text_color": "333333", + "followers_count": 31, + "profile_sidebar_border_color": "C0DEED", + "id_str": "323167561", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 354, + "description": " LEWIS MASON MUST BE RELEASED NOW ", + "friends_count": 113, + "location": "melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1578791912/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "FREE LEWIS MASON!", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 58, + "screen_name": "iancbn", + "notifications": null, + "url": null, + "created_at": "Fri Jun 24 11:14:00 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e197470", + "_rev": "1-6c6d6fa9c3f411250e68374d3ee26bdd", + "oldid": "4eb38fa13de67c5117000320", + "favorited": false, + "in_reply_to_user_id": 19705247, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@breezlebub hahaha, you slightly mad!! Not!!!!", + "created_at": "Fri Nov 04 07:11:47 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132240117598392320", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.64897501, + -34.83924525 + ] + }, + "id": 132354337811869700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 19705247, + "id_str": "19705247", + "screen_name": "breezlebub", + "name": "Bree W" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132240117598392320, + "in_reply_to_screen_name": "breezlebub", + "id_str": "132354337811869696", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.83924525, + 138.64897501 + ] + }, + "in_reply_to_user_id_str": "19705247", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1470963236/image_normal.jpg", + "profile_sidebar_fill_color": "032b2e", + "id": 26492157, + "profile_text_color": "867af0", + "followers_count": 41, + "profile_sidebar_border_color": "e6bf85", + "id_str": "26492157", + "profile_background_color": "0a3745", + "listed_count": 5, + "utc_offset": 28800, + "statuses_count": 5083, + "description": "V8 watcher, WCE supporter teddy hugger,Vampire lover and babysitting specialist!! Yes I know, strange mix", + "friends_count": 165, + "location": "South West of West Australia", + "profile_link_color": "3a8a86", + "profile_image_url": "http://a2.twimg.com/profile_images/1470963236/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/240511406/vf15.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/240511406/vf15.jpg", + "name": "Nene King", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "Neensa", + "notifications": null, + "url": null, + "created_at": "Wed Mar 25 13:06:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e197b14", + "_rev": "1-5847be0a9e5d36e18de950e9d11eadff", + "oldid": "4eb38fa13de67c5117000321", + "contributors": null, + "truncated": false, + "text": "I'm at Brisbane Convention & Exhibition Centre (Merivale St, at Glenelg St, South Brisbane) w/ 2 others http://t.co/agwPtJJA", + "in_reply_to_status_id": null, + "id": 132354340710121470, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 104, + 124 + ], + "url": "http://t.co/agwPtJJA", + "expanded_url": "http://4sq.com/sh3F0O", + "display_url": "4sq.com/sh3F0O" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01901579, + -27.47804483 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354340710121472", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20416818, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20416818", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": -36000, + "statuses_count": 1675, + "description": "I'm a commercial photographer based in Brisbane, Australia - loving the job and each new challenge that I face every day.", + "friends_count": 167, + "location": "iPhone: -27.559235,152.978851", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Naz Mulla", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 354, + "screen_name": "nazmulla", + "notifications": null, + "url": "http://www.nazmulla.com", + "created_at": "Mon Feb 09 04:56:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.47804483, + 153.01901579 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:48 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e198975", + "_rev": "1-3150d43c1f5b9043432f9df6324b7c3d", + "oldid": "4eb38fa63de67c5117000322", + "contributors": null, + "truncated": false, + "text": "I'm at Greenwood Hotel (36 Blue Street, Sydney) w/ 3 others http://t.co/wO6Px3zE", + "in_reply_to_status_id": null, + "id": 132354360532406270, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 60, + 80 + ], + "url": "http://t.co/wO6Px3zE", + "expanded_url": "http://4sq.com/uAx8bs", + "display_url": "4sq.com/uAx8bs" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.207711, + -33.840124 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354360532406274", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/234207009/Avatar2_small_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 42822447, + "profile_text_color": "333333", + "followers_count": 29, + "profile_sidebar_border_color": "C0DEED", + "id_str": "42822447", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 10800, + "statuses_count": 176, + "description": "Project Manager Professional (PMP), SCRUM Master, Chaos Manager :)", + "friends_count": 25, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/234207009/Avatar2_small_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Alex", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "latspell", + "notifications": null, + "url": null, + "created_at": "Wed May 27 05:21:52 +0000 2009", + "contributors_enabled": false, + "time_zone": "Moscow", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.840124, + 151.207711 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:53 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1993bc", + "_rev": "1-36a0c6380a27435e8461852b3c83068e", + "oldid": "4eb38fa63de67c5117000323", + "favorited": false, + "in_reply_to_user_id": 47325134, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@TonyW_UK Bored BF with savage fingers. Lol", + "created_at": "Fri Nov 04 07:11:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132354070294962178", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96967634, + -37.81007649 + ] + }, + "id": 132354361207693310, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 47325134, + "id_str": "47325134", + "screen_name": "TonyW_UK", + "name": "Beary Manilow" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132354070294962180, + "in_reply_to_screen_name": "TonyW_UK", + "id_str": "132354361207693315", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81007649, + 144.96967634 + ] + }, + "in_reply_to_user_id_str": "47325134", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "profile_sidebar_fill_color": "efefef", + "id": 15393010, + "profile_text_color": "333333", + "followers_count": 343, + "profile_sidebar_border_color": "eeeeee", + "id_str": "15393010", + "profile_background_color": "131516", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 5423, + "description": "Zinc Saucier", + "friends_count": 342, + "location": "Coburg, VIC, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a3.twimg.com/profile_images/1603701575/Capture_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Vince Lumberking", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 152, + "screen_name": "nopersonality", + "notifications": null, + "url": "http://www.facebook.com/profile.php?id=1246058646", + "created_at": "Fri Jul 11 16:00:43 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e199749", + "_rev": "1-abfadb966b34a0a0b2e960e1809d134e", + "oldid": "4eb38fa83de67c5117000324", + "contributors": null, + "truncated": false, + "text": "Ok I'll see u in the bus stop ;) RT @kanahkl: @berlinerzz I finish my class now~! http://t.co/LAbN1oiR", + "in_reply_to_status_id": null, + "id": 132354369785053180, + "entities": { + "user_mentions": [ + { + "indices": [ + 36, + 44 + ], + "id": 89578933, + "id_str": "89578933", + "screen_name": "kanahkl", + "name": "Kana" + }, + { + "indices": [ + 46, + 57 + ], + "id": 113592643, + "id_str": "113592643", + "screen_name": "berlinerzz", + "name": "Ayu berliner hugua" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 82, + 102 + ], + "url": "http://t.co/LAbN1oiR", + "expanded_url": "http://myloc.me/no6ML", + "display_url": "myloc.me/no6ML" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.8407291, + -31.8745763 + ] + }, + "source": "<a href=\"http://ubersocial.com\" rel=\"nofollow\">UberSocial for BlackBerry</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354369785053184", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610999493/328811293_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 113592643, + "profile_text_color": "404040", + "followers_count": 448, + "profile_sidebar_border_color": "333333", + "id_str": "113592643", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 6477, + "description": "I was an ordinary teenager full of joy and madness LOL :D. friends usually call my name berlin.", + "friends_count": 330, + "location": "ÜT: -31.8745763,115.8407291", + "profile_link_color": "999999", + "profile_image_url": "http://a0.twimg.com/profile_images/1610999493/328811293_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/303972749/hjhyy.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/303972749/hjhyy.jpg", + "name": "Ayu berliner hugua", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 11, + "screen_name": "berlinerzz", + "notifications": null, + "url": null, + "created_at": "Fri Feb 12 10:03:17 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.8745763, + 115.8407291 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:11:55 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e19a1d5", + "_rev": "1-74c7aa4f416819cf00517723368ef769", + "oldid": "4eb38fb23de67c5117000325", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "RIP al dog", + "created_at": "Fri Nov 04 07:12:05 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 148.16451317, + -33.13990759 + ] + }, + "id": 132354409916153860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354409916153857", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.13990759, + 148.16451317 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1487669803/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 352148780, + "profile_text_color": "333333", + "followers_count": 48, + "profile_sidebar_border_color": "C0DEED", + "id_str": "352148780", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 809, + "description": "touch daddys dick ", + "friends_count": 55, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1487669803/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Meg Ryan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "MeggyR_", + "notifications": null, + "url": null, + "created_at": "Wed Aug 10 06:29:02 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e19a6c5", + "_rev": "1-c044b0e160572882964117bd51fdb0ae", + "oldid": "4eb38fb83de67c5117000326", + "contributors": null, + "truncated": false, + "text": "#jiggetyjig (@ Home) http://t.co/pFlVKBeq", + "in_reply_to_status_id": null, + "id": 132354437422383100, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 11 + ], + "text": "jiggetyjig" + } + ], + "urls": [ + { + "indices": [ + 21, + 41 + ], + "url": "http://t.co/pFlVKBeq", + "expanded_url": "http://4sq.com/uYUzAo", + "display_url": "4sq.com/uYUzAo" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.8984194, + -33.7461929 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354437422383104", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1592039432/275801_1052705220_64797892_n_normal.jpg", + "profile_sidebar_fill_color": "ddffcd", + "id": 196117757, + "profile_text_color": "333333", + "followers_count": 697, + "profile_sidebar_border_color": "bddcad", + "id_str": "196117757", + "profile_background_color": "ffffff", + "listed_count": 42, + "utc_offset": 36000, + "statuses_count": 30937, + "description": "Carlton(AFL)Man since Dec03. Lapsed multi-instrumentalist since Dec06. Proud Father since 21Jul10. Cancer Free since 19Apr11. Bespectacled since 17Oct11.", + "friends_count": 1483, + "location": "Western Sydney, NSW Australia", + "profile_link_color": "0084b4", + "profile_image_url": "http://a1.twimg.com/profile_images/1592039432/275801_1052705220_64797892_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/219731937/2011-03-19_06-02-21_122.111.55.216.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/219731937/2011-03-19_06-02-21_122.111.55.216.jpg", + "name": "Peter G Gleeson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 68, + "screen_name": "p_terg", + "notifications": null, + "url": "http://peterg-gleeson.blogspot.com/", + "created_at": "Tue Sep 28 11:24:02 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.7461929, + 150.8984194 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:12:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e19ac8c", + "_rev": "1-3f1edd60b1c30796c854028209d8eab2", + "oldid": "4eb38fbb3de67c5117000327", + "contributors": null, + "truncated": false, + "text": "Andy is fat (@ McDonald's) http://t.co/M9ECcxoe", + "in_reply_to_status_id": null, + "id": 132354449069977600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 27, + 47 + ], + "url": "http://t.co/M9ECcxoe", + "expanded_url": "http://4sq.com/vIMgEe", + "display_url": "4sq.com/vIMgEe" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99700069, + -37.74486073 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354449069977600", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1232796566/hi_random_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 40630657, + "profile_text_color": "333333", + "followers_count": 46, + "profile_sidebar_border_color": "eeeeee", + "id_str": "40630657", + "profile_background_color": "131516", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 3650, + "description": "101110110111000000110111110010010101101101111011011010000111111001011101101", + "friends_count": 61, + "location": "the death star", + "profile_link_color": "009999", + "profile_image_url": "http://a0.twimg.com/profile_images/1232796566/hi_random_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "colin", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 23, + "screen_name": "clonii", + "notifications": null, + "url": "http://www.facebook.com/clonii", + "created_at": "Sun May 17 08:41:37 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.74486073, + 144.99700069 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:12:14 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e19b108", + "_rev": "1-cace1c36491e4db907c773db522808a5", + "oldid": "4eb38fbf3de67c5117000328", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "Will be checking my email every 5 minutes to see if I've been chosen to be on stage with @theflaminglips ... Thanks @Doctortriplej !!!", + "created_at": "Fri Nov 04 07:12:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99371852, + -37.78312031 + ] + }, + "id": 132354466052718600, + "entities": { + "user_mentions": [ + { + "indices": [ + 89, + 104 + ], + "id": 18057465, + "id_str": "18057465", + "screen_name": "theflaminglips", + "name": "The Flaming Lips" + }, + { + "indices": [ + 116, + 130 + ], + "id": 20968539, + "id_str": "20968539", + "screen_name": "Doctortriplej", + "name": "Lindsay McDougall" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354466052718592", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.78312031, + 144.99371852 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1525689810/2F8DD3A2-4F61-42AE-8270-47B551F6FF02_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 211120102, + "profile_text_color": "333333", + "followers_count": 34, + "profile_sidebar_border_color": "C0DEED", + "id_str": "211120102", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 203, + "description": "25 year old network dude living in Melbourne, Australia, cannot wait for summer!!", + "friends_count": 267, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1525689810/2F8DD3A2-4F61-42AE-8270-47B551F6FF02_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Michael Doreian", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 34, + "screen_name": "mickeydoz", + "notifications": null, + "url": "http://www.facebook.com/mdoreian", + "created_at": "Tue Nov 02 11:24:38 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e19c09b", + "_rev": "1-36680744a0b377005291e03b65d06d64", + "oldid": "4eb38fc13de67c5117000329", + "favorited": false, + "in_reply_to_user_id": 2465291, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@bogusjimmy @pownce I used to be on pownce :)", + "created_at": "Fri Nov 04 07:12:20 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132349553885188096", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.19211363, + -37.80245669 + ] + }, + "id": 132354475640885250, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 2465291, + "id_str": "2465291", + "screen_name": "bogusjimmy", + "name": "David Rossi" + }, + { + "indices": [ + 12, + 19 + ], + "id": 9139032, + "id_str": "9139032", + "screen_name": "pownce", + "name": "Pownce" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132349553885188100, + "in_reply_to_screen_name": "bogusjimmy", + "id_str": "132354475640885248", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80245669, + 145.19211363 + ] + }, + "in_reply_to_user_id_str": "2465291", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "profile_sidebar_fill_color": "252429", + "id": 16662767, + "profile_text_color": "666666", + "followers_count": 186, + "profile_sidebar_border_color": "181A1E", + "id_str": "16662767", + "profile_background_color": "1A1B1F", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 5442, + "description": "DJ, Video Editor, & All round Geek", + "friends_count": 285, + "location": "Bulleen, Victoria", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "James Smith", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "smithjw", + "notifications": null, + "url": "http://smithjw.me", + "created_at": "Thu Oct 09 05:47:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e19c3ec", + "_rev": "1-c06ac123a0a148e4c60d771ed92d0c97", + "oldid": "4eb38fc33de67c511700032a", + "contributors": null, + "truncated": false, + "text": "I'm at Bank Mandiri (Jl. Moch. Hatta 54A, Kuanino, Kupang) http://t.co/GYjWV9Xq", + "in_reply_to_status_id": null, + "id": 132354483681366020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 59, + 79 + ], + "url": "http://t.co/GYjWV9Xq", + "expanded_url": "http://4sq.com/suIWiL", + "display_url": "4sq.com/suIWiL" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 123.58589172, + -10.16905168 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354483681366016", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607412679/33_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 306799832, + "profile_text_color": "333333", + "followers_count": 93, + "profile_sidebar_border_color": "C0DEED", + "id_str": "306799832", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 469, + "description": "Official SOPHie's BC Soebandono Twits ", + "friends_count": 42, + "location": "Kupang - http://4sq.com/ctfhxb", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1607412679/33_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "SOPHie℠BC Soebandono", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "twitsophieparis", + "notifications": null, + "url": "http://www.facebook.com/sophieparis.ntt", + "created_at": "Sat May 28 13:30:02 +0000 2011", + "contributors_enabled": false, + "time_zone": "Singapore", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -10.16905168, + 123.58589172 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:12:22 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/7b6d4729251ea40b.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 117.344055, + -10.997407 + ], + [ + 125.169182, + -10.997407 + ], + [ + 125.169182, + -8.062931 + ], + [ + 117.344055, + -8.062931 + ] + ] + ] + }, + "full_name": "Nusa Tenggara Timur, Indonesia", + "attributes": {}, + "id": "7b6d4729251ea40b", + "name": "Nusa Tenggara Timur" + } + }, + { + "_id": "51f39676462cca21859bd92d8e19c585", + "_rev": "1-a8e9aaec43105573e80c45a8a2a5d4db", + "oldid": "4eb38fc63de67c511700032b", + "contributors": null, + "truncated": false, + "text": "I'm at Papua Trade Center (PTC) (Jl. Raya Abepura Entrop, Depan terminal Entrop, Jayapura) http://t.co/GecBrkvg", + "in_reply_to_status_id": null, + "id": 132354495291199490, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 91, + 111 + ], + "url": "http://t.co/GecBrkvg", + "expanded_url": "http://4sq.com/rqzKOy", + "display_url": "4sq.com/rqzKOy" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 140.6957206, + -2.5693765 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354495291199488", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1586485769/327990964_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 70287069, + "profile_text_color": "666666", + "followers_count": 65, + "profile_sidebar_border_color": "181A1E", + "id_str": "70287069", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": -28800, + "statuses_count": 193, + "description": "Just me and my own world ♉(ˆ▽ˆ)", + "friends_count": 94, + "location": "ÜT: -2.54346,140.702449", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1586485769/327990964_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "meilina busran", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "inabusran", + "notifications": null, + "url": null, + "created_at": "Mon Aug 31 02:44:52 +0000 2009", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -2.5693765, + 140.6957206 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:12:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/473acb78adf57217.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 134.505904, + -9.1457534 + ], + [ + 141.0549412, + -9.1457534 + ], + [ + 141.0549412, + -0.4000327 + ], + [ + 134.505904, + -0.4000327 + ] + ] + ] + }, + "full_name": "Papua, Indonesia", + "attributes": {}, + "id": "473acb78adf57217", + "name": "Papua" + } + }, + { + "_id": "51f39676462cca21859bd92d8e19d033", + "_rev": "1-0b669ce5f87e062d81424c8851159edf", + "oldid": "4eb38fc83de67c511700032c", + "favorited": false, + "in_reply_to_user_id": 230750669, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamieJocson hahaha. Hen's night. :) parang bridal shower sa atin. Iba lang tawag dito. Saka more on parang girls night out.", + "created_at": "Fri Nov 04 07:12:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353999088259073", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.61486643, + -34.87387012 + ] + }, + "id": 132354501830127620, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 230750669, + "id_str": "230750669", + "screen_name": "JamieJocson", + "name": "Jamie Angela Jocson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353999088259070, + "in_reply_to_screen_name": "JamieJocson", + "id_str": "132354501830127616", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.87387012, + 138.61486643 + ] + }, + "in_reply_to_user_id_str": "230750669", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1541057587/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 58401489, + "profile_text_color": "333333", + "followers_count": 20, + "profile_sidebar_border_color": "C0DEED", + "id_str": "58401489", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 395, + "description": "", + "friends_count": 40, + "location": "Adelaide", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1541057587/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "rachel jocson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "juniejocson", + "notifications": null, + "url": null, + "created_at": "Mon Jul 20 05:40:53 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e19d937", + "_rev": "1-04948cda857af449c25387bf0ff6c822", + "oldid": "4eb38fc83de67c511700032d", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "description": "I'm from Australia / I love the beach, my family and friends", + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1574568423/jet_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "is_translator": false, + "id": 278668125, + "profile_text_color": "362720", + "followers_count": 5, + "profile_sidebar_border_color": "CC3366", + "location": "Sydney Australia", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 964, + "default_profile_image": false, + "friends_count": 62, + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1574568423/jet_normal.jpg", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "id_str": "278668125", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "screen_name": "Ginny8768", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 12, + "name": "Virginia", + "url": null, + "created_at": "Thu Apr 07 18:40:47 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "favorited": false, + "contributors": null, + "truncated": false, + "text": "@katyperry @taylorswift13 oh so cute", + "created_at": "Fri Nov 04 07:12:27 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": "132262073966141440", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.89646577, + -33.8670268 + ] + }, + "id": 132354503503650820, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id_str": "21447363", + "screen_name": "katyperry", + "name": "Katy Perry", + "id": 21447363 + }, + { + "indices": [ + 11, + 25 + ], + "id_str": "17919972", + "screen_name": "taylorswift13", + "name": "taylorswift13", + "id": 17919972 + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132262073966141440, + "id_str": "132354503503650816", + "in_reply_to_screen_name": "katyperry", + "in_reply_to_user_id": 21447363, + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8670268, + 150.89646577 + ] + }, + "in_reply_to_user_id_str": "21447363", + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>" + }, + { + "_id": "51f39676462cca21859bd92d8e19e2ef", + "_rev": "1-48ad91c9987acc829593b9457b62730c", + "oldid": "4eb38fce3de67c511700032e", + "contributors": null, + "truncated": false, + "text": "I just ousted S U. as the mayor of Nataraj on @foursquare! http://t.co/BfL2mMSR", + "in_reply_to_status_id": null, + "id": 132354526698156030, + "entities": { + "user_mentions": [ + { + "indices": [ + 46, + 57 + ], + "id": 14120151, + "screen_name": "foursquare", + "id_str": "14120151", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 59, + 79 + ], + "url": "http://t.co/BfL2mMSR", + "expanded_url": "http://4sq.com/cmblVm", + "display_url": "4sq.com/cmblVm" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.05583, + -37.830579 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "id_str": "132354526698156032", + "retweet_count": 0, + "in_reply_to_user_id": null, + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/690882600/Joyce_Webcam_normal.jpg", + "profile_sidebar_fill_color": "EECD15", + "id": 10451462, + "profile_text_color": "000000", + "followers_count": 3276, + "protected": false, + "location": "Napier, NZ", + "default_profile_image": false, + "id_str": "10451462", + "utc_offset": 43200, + "statuses_count": 16819, + "description": "Education technologist & networked learner. Lecturer in Blended Learning @ Deakin University. Developer of Moodle Tool Guide. Speaker. Views my own.", + "friends_count": 2245, + "profile_link_color": "4D5543", + "profile_image_url": "http://a3.twimg.com/profile_images/690882600/Joyce_Webcam_normal.jpg", + "following": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/2435951/tweet_tweet.png", + "profile_background_color": "FFFFFF", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/2435951/tweet_tweet.png", + "screen_name": "catspyjamasnz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4871, + "name": "Joyce Seitzinger", + "notifications": null, + "url": "http://www.cats-pyjamas.net", + "created_at": "Wed Nov 21 21:14:58 +0000 2007", + "contributors_enabled": false, + "time_zone": "Wellington", + "profile_sidebar_border_color": "4D5543", + "default_profile": false, + "is_translator": false, + "listed_count": 309 + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.830579, + 145.05583 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:12:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e19e6cf", + "_rev": "1-31ba5df7bcefa5eda141787b8e4e0968", + "oldid": "4eb38fce3de67c511700032f", + "contributors": null, + "truncated": false, + "text": "In the sun!!!! (@ Nataraj) http://t.co/HLWZaHLh", + "in_reply_to_status_id": null, + "id": 132354526782046200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 27, + 47 + ], + "url": "http://t.co/HLWZaHLh", + "expanded_url": "http://4sq.com/tUVSAj", + "display_url": "4sq.com/tUVSAj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.05583, + -37.830579 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354526782046208", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/690882600/Joyce_Webcam_normal.jpg", + "profile_sidebar_fill_color": "EECD15", + "id": 10451462, + "profile_text_color": "000000", + "followers_count": 3276, + "profile_sidebar_border_color": "4D5543", + "id_str": "10451462", + "profile_background_color": "FFFFFF", + "listed_count": 309, + "utc_offset": 43200, + "statuses_count": 16819, + "description": "Education technologist & networked learner. Lecturer in Blended Learning @ Deakin University. Developer of Moodle Tool Guide. Speaker. Views my own.", + "friends_count": 2245, + "location": "Napier, NZ", + "profile_link_color": "4D5543", + "profile_image_url": "http://a3.twimg.com/profile_images/690882600/Joyce_Webcam_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/2435951/tweet_tweet.png", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/2435951/tweet_tweet.png", + "name": "Joyce Seitzinger", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4871, + "screen_name": "catspyjamasnz", + "notifications": null, + "url": "http://www.cats-pyjamas.net", + "created_at": "Wed Nov 21 21:14:58 +0000 2007", + "contributors_enabled": false, + "time_zone": "Wellington", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.830579, + 145.05583 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:12:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e19ee7e", + "_rev": "1-44bedd6d06405e71f714d799669b53f3", + "oldid": "4eb38fcf3de67c5117000330", + "contributors": null, + "truncated": false, + "text": "I just ousted Stan D. as the mayor of Bulpadock, Trinity College on @foursquare! http://t.co/J3jt4FYM", + "in_reply_to_status_id": null, + "id": 132354533320953860, + "entities": { + "user_mentions": [ + { + "indices": [ + 68, + 79 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 81, + 101 + ], + "url": "http://t.co/J3jt4FYM", + "expanded_url": "http://4sq.com/e9nLM4", + "display_url": "4sq.com/e9nLM4" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95927811, + -37.79520324 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354533320953857", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570867379/ambrose_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 25985824, + "profile_text_color": "333333", + "followers_count": 372, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "25985824", + "profile_background_color": "9AE4E8", + "listed_count": 24, + "utc_offset": -36000, + "statuses_count": 2535, + "description": "Anglican priest, historian of the early Church, educator, College head. And I cook.", + "friends_count": 436, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1570867379/ambrose_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/40550438/IMG_0272.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/40550438/IMG_0272.jpg", + "name": "Andrew McGowan", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 8, + "screen_name": "Praxeas", + "notifications": null, + "url": "http://abmcg.blogspot.com", + "created_at": "Mon Mar 23 11:35:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.79520324, + 144.95927811 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:12:34 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e19f1ce", + "_rev": "1-71ef377fcecdedebdaa15d23e9c94191", + "oldid": "4eb38fd63de67c5117000331", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#TonyAbbott overplayed his hand on #gambling #qantas Let's hope he goes down down to zero. #auspol", + "created_at": "Fri Nov 04 07:12:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.28246047, + -33.89081685 + ] + }, + "id": 132354560013508600, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 11 + ], + "text": "TonyAbbott" + }, + { + "indices": [ + 37, + 46 + ], + "text": "gambling" + }, + { + "indices": [ + 48, + 55 + ], + "text": "qantas" + }, + { + "indices": [ + 95, + 102 + ], + "text": "auspol" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354560013508609", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89081685, + 151.28246047 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621634361/image_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 23054053, + "profile_text_color": "333333", + "followers_count": 504, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "23054053", + "profile_background_color": "ACDED6", + "listed_count": 17, + "utc_offset": 36000, + "statuses_count": 7227, + "description": "Psychologist & writer/social commentator. Passionate about politics human/animal rights,justice, climate change the planet.Need to laugh too. ", + "friends_count": 400, + "location": "Melbourne Australia", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1621634361/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme18/bg.gif", + "name": "Lyn Bender", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 66, + "screen_name": "Lynestel", + "notifications": null, + "url": null, + "created_at": "Fri Mar 06 11:25:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e19f26f", + "_rev": "1-191e7fe227ecebff9942172aa5cf18da", + "oldid": "4eb38fd93de67c5117000332", + "favorited": false, + "in_reply_to_user_id": 170925696, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@helenbanner98 have u bought a membership yet more to the point", + "created_at": "Fri Nov 04 07:12:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132303413777137664", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.05998998, + -33.85429823 + ] + }, + "id": 132354575444357120, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 170925696, + "id_str": "170925696", + "screen_name": "helenbanner98", + "name": "Helen naylor" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132303413777137660, + "in_reply_to_screen_name": "helenbanner98", + "id_str": "132354575444357120", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85429823, + 151.05998998 + ] + }, + "in_reply_to_user_id_str": "170925696", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1578403188/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 380125668, + "profile_text_color": "333333", + "followers_count": 92, + "profile_sidebar_border_color": "C0DEED", + "id_str": "380125668", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 459, + "description": "Riff Born & Bred Since 1971, Panthers & LFC Man to the Core, Sports Lover, Bean Counter Extraordinaire & Father of Two Great Boys", + "friends_count": 913, + "location": "Riff Town Of Course", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1578403188/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Riffy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "RiffMan771", + "notifications": null, + "url": null, + "created_at": "Mon Sep 26 03:32:12 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a0115", + "_rev": "1-4f3b206f665a8695b213ef2808832b83", + "oldid": "4eb38fe23de67c5117000333", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Reinheart and Packer have really been pulling the strings on @channel10", + "created_at": "Fri Nov 04 07:12:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.00180556, + -37.82395251 + ] + }, + "id": 132354613226643460, + "entities": { + "user_mentions": [ + { + "indices": [ + 61, + 71 + ], + "id": 18600746, + "id_str": "18600746", + "screen_name": "channel10", + "name": "ערוץ 10" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354613226643456", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82395251, + 145.00180556 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1435036109/buddy_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 200699500, + "profile_text_color": "333333", + "followers_count": 23, + "profile_sidebar_border_color": "C0DEED", + "id_str": "200699500", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 157, + "description": "", + "friends_count": 329, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1435036109/buddy_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Ray Kinsella", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "Kinsella_", + "notifications": null, + "url": null, + "created_at": "Sun Oct 10 00:41:40 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a026c", + "_rev": "1-cbbf8440fcffa0e92cfa79bc618e623c", + "oldid": "4eb38feb3de67c5117000334", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "time_zone": "Sydney", + "id": 380125668, + "description": "Riff Born & Bred Since 1971, Panthers & LFC Man to the Core, Sports Lover, Bean Counter Extraordinaire & Father of Two Great Boys", + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1578403188/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "profile_text_color": "333333", + "followers_count": 92, + "profile_sidebar_border_color": "C0DEED", + "id_str": "380125668", + "default_profile_image": false, + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 460, + "profile_background_color": "C0DEED", + "friends_count": 913, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1578403188/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "geo_enabled": true, + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Riffy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "RiffMan771", + "notifications": null, + "url": null, + "created_at": "Mon Sep 26 03:32:12 +0000 2011", + "contributors_enabled": false, + "location": "Riff Town Of Course", + "protected": false, + "default_profile": true, + "following": null + }, + "favorited": false, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@GingaNinja1987 hahahahahaha", + "created_at": "Fri Nov 04 07:13:02 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132323673624420353", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.05998998, + -33.85429823 + ] + }, + "id": 132354650178453500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 37547506, + "screen_name": "GingaNinja1987", + "name": "Matt Wilson", + "id_str": "37547506" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132323673624420350, + "place": null, + "in_reply_to_user_id": 37547506, + "in_reply_to_screen_name": "GingaNinja1987", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85429823, + 151.05998998 + ] + }, + "in_reply_to_user_id_str": "37547506", + "id_str": "132354650178453504" + }, + { + "_id": "51f39676462cca21859bd92d8e1a0a14", + "_rev": "1-c5fd90d0b9c9fbae9d11196ec8e0848a", + "oldid": "4eb38fef3de67c5117000335", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "DARN IT WHERE'S MY BROTHER . >_>", + "created_at": "Fri Nov 04 07:13:05 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.90706198, + -33.77057971 + ] + }, + "id": 132354665374429180, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354665374429184", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77057971, + 150.90706198 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613337644/image_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 158339561, + "profile_text_color": "adadad", + "followers_count": 152, + "profile_sidebar_border_color": "e87f7f", + "id_str": "158339561", + "profile_background_color": "bff2c4", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 4598, + "description": "to put random thoughts and stalk favourite people of all time + show some pretty pictures . so please, don't mind me . :)", + "friends_count": 203, + "location": "", + "profile_link_color": "e38484", + "profile_image_url": "http://a2.twimg.com/profile_images/1613337644/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/157565606/77words_patt7_198.gif", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/157565606/77words_patt7_198.gif", + "name": "jewlz", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 188, + "screen_name": "akuruii", + "notifications": null, + "url": "http://akuruii-wishes.deviantart.com", + "created_at": "Tue Jun 22 11:40:09 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a1035", + "_rev": "1-0511a20793c11f0b4eb8bfac76cec449", + "oldid": "4eb38fef3de67c5117000336", + "contributors": null, + "truncated": false, + "text": "I'm at Palador Fumior Salon (Fish Lane, Merivale Street, South Brisbane) http://t.co/xmwNwwfX", + "in_reply_to_status_id": null, + "id": 132354665915494400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 73, + 93 + ], + "url": "http://t.co/xmwNwwfX", + "expanded_url": "http://4sq.com/vwIqRd", + "display_url": "4sq.com/vwIqRd" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.016222, + -27.47463 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354665915494400", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20416818, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20416818", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": -36000, + "statuses_count": 1676, + "description": "I'm a commercial photographer based in Brisbane, Australia - loving the job and each new challenge that I face every day.", + "friends_count": 167, + "location": "iPhone: -27.559235,152.978851", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Naz Mulla", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 354, + "screen_name": "nazmulla", + "notifications": null, + "url": "http://www.nazmulla.com", + "created_at": "Mon Feb 09 04:56:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.47463, + 153.016222 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a1790", + "_rev": "1-9270aa31e3325a64dbf58bb351d91c1f", + "oldid": "4eb38ff03de67c5117000337", + "favorited": false, + "in_reply_to_user_id": 26615677, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@Naughtyword where? can I come?", + "created_at": "Fri Nov 04 07:13:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353897619668992", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.063074, + -37.8116575 + ] + }, + "id": 132354670545993730, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 26615677, + "id_str": "26615677", + "screen_name": "Naughtyword", + "name": "Deanne Smith" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353897619669000, + "in_reply_to_screen_name": "Naughtyword", + "id_str": "132354670545993730", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8116575, + 145.063074 + ] + }, + "in_reply_to_user_id_str": "26615677", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/85494258/61108991_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 22432747, + "profile_text_color": "666666", + "followers_count": 277, + "profile_sidebar_border_color": "181A1E", + "id_str": "22432747", + "profile_background_color": "1A1B1F", + "listed_count": 17, + "utc_offset": 36000, + "statuses_count": 3008, + "description": "Hi. I like to take photos. I like film. I like to swear. I like it wide. I use Hasselblad's Xpan and Voigtlander rangefinders. I #believeinfilm.", + "friends_count": 290, + "location": "Hawthorn, VIC, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/85494258/61108991_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/75640312/StaticTV.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/75640312/StaticTV.jpg", + "name": "Matthew Joseph", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 23, + "screen_name": "fotodudenz", + "notifications": null, + "url": "http://www.fototheque.com", + "created_at": "Mon Mar 02 01:17:42 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a1953", + "_rev": "1-75c5f7974159cddffd218d7d88d999f6", + "oldid": "4eb38ff13de67c5117000338", + "contributors": null, + "truncated": false, + "text": "First picture on the iPhone, peace and pout girls... http://t.co/i87Bi8aw", + "in_reply_to_status_id": null, + "id": 132354676023771140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 53, + 73 + ], + "url": "http://t.co/i87Bi8aw", + "expanded_url": "http://instagr.am/p/Sj2VY/", + "display_url": "instagr.am/p/Sj2VY/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.4002, + -28.08436 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354676023771136", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618353528/th_446_500_1320008747_d75ea4a8258a370416471b442a89a56d_h_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 228376285, + "profile_text_color": "333333", + "followers_count": 74, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "228376285", + "profile_background_color": "EBEBEB", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 190, + "description": "I'm a pommy growing up in Australia, I'm so glad i've moved on from my past I'm so grateful for everyone in my life at the moment. GossipGirl's my love.", + "friends_count": 143, + "location": "Australia", + "profile_link_color": "990000", + "profile_image_url": "http://a3.twimg.com/profile_images/1618353528/th_446_500_1320008747_d75ea4a8258a370416471b442a89a56d_h_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/347036518/tumblr_lt573kl5Nu1qb59uao1_400.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/347036518/tumblr_lt573kl5Nu1qb59uao1_400.jpg", + "name": "Olivia O'Neill", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 28, + "screen_name": "faeolivia", + "notifications": null, + "url": "http://add-iction.tumblr.com/", + "created_at": "Sun Dec 19 14:55:21 +0000 2010", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.08436, + 153.4002 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:08 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a20c9", + "_rev": "1-02479c3138ca54e22d7b140b07722cf2", + "oldid": "4eb38ff33de67c5117000339", + "contributors": null, + "truncated": false, + "text": "WORKING! (@ Regent Theatre) http://t.co/yxgPgKw8", + "in_reply_to_status_id": null, + "id": 132354683628032000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 28, + 48 + ], + "url": "http://t.co/yxgPgKw8", + "expanded_url": "http://4sq.com/t6e3wC", + "display_url": "4sq.com/t6e3wC" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.967491, + -37.815597 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354683628032001", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1584633998/DP_normal.png", + "profile_sidebar_fill_color": "292929", + "id": 60240617, + "profile_text_color": "717173", + "followers_count": 172, + "profile_sidebar_border_color": "424242", + "id_str": "60240617", + "profile_background_color": "000000", + "listed_count": 17, + "utc_offset": 36000, + "statuses_count": 18363, + "description": "Scientist. Reader. Drinker of milk and beer. Gadget tart. Jazz Dalek. Cyberman. Opinions are my own. Only 3 thirds of a person. Out on a limb.", + "friends_count": 226, + "location": "Moonee Ponds, Melbourne", + "profile_link_color": "adadad", + "profile_image_url": "http://a3.twimg.com/profile_images/1584633998/DP_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/305275183/light.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/305275183/light.jpg", + "name": "Tully Samson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 499, + "screen_name": "tulbot", + "notifications": null, + "url": "http://tullysamson.tumblr.com", + "created_at": "Sun Jul 26 05:22:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.815597, + 144.967491 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:10 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a2a91", + "_rev": "1-2ed906bf15442e350ce767dea7971de1", + "oldid": "4eb38ff43de67c511700033a", + "favorited": false, + "in_reply_to_user_id": 15688113, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@BrentonHorsell Or boobs. Imma go with boobs.", + "created_at": "Fri Nov 04 07:13:11 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353352381120512", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.6081127, + -34.9247106 + ] + }, + "id": 132354687717486600, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 15688113, + "id_str": "15688113", + "screen_name": "BrentonHorsell", + "name": "Brenton Horsell" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353352381120510, + "in_reply_to_screen_name": "BrentonHorsell", + "id_str": "132354687717486592", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.9247106, + 138.6081127 + ] + }, + "in_reply_to_user_id_str": "15688113", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1300616756/100175906_normal.jpg", + "profile_sidebar_fill_color": "dee2ff", + "id": 28963348, + "profile_text_color": "030202", + "followers_count": 2868, + "profile_sidebar_border_color": "e8e8e8", + "id_str": "28963348", + "profile_background_color": "131516", + "listed_count": 230, + "utc_offset": 34200, + "statuses_count": 11827, + "description": "I'm never under any delusion that who I am is just a delusion.", + "friends_count": 2662, + "location": "Adelayed", + "profile_link_color": "4d527d", + "profile_image_url": "http://a0.twimg.com/profile_images/1300616756/100175906_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/148278500/asherican-psycho.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/148278500/asherican-psycho.jpg", + "name": "Some Idiot", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3577, + "screen_name": "AshSimmonds", + "notifications": null, + "url": "http://favstar.fm/users/AshSimmonds", + "created_at": "Sun Apr 05 08:59:27 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a2d28", + "_rev": "1-1ca7a30504db267c24daa11bd14de731", + "oldid": "4eb38ff43de67c511700033b", + "contributors": null, + "truncated": false, + "text": "Beeeers with a good friend. (@ Macquarie Boutique Hotel) [pic]: http://t.co/CaDhcP64", + "in_reply_to_status_id": null, + "id": 132354688883490820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 64, + 84 + ], + "url": "http://t.co/CaDhcP64", + "expanded_url": "http://4sq.com/sPF4mv", + "display_url": "4sq.com/sPF4mv" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.210905, + -33.878433 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354688883490816", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/144716253/3425709263_5565f10d6d_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 32893652, + "profile_text_color": "666666", + "followers_count": 234, + "profile_sidebar_border_color": "181A1E", + "id_str": "32893652", + "profile_background_color": "1A1B1F", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 4153, + "description": "Aussie, Pro BF3 gamer from @team_exile5, @ASUSAU PR, Aspiring photographer, Recovering caffeine addict, & Lover of Extreme PC hardware ~ Tweets are mine.", + "friends_count": 199, + "location": "Sydney, NSW, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/144716253/3425709263_5565f10d6d_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/9005558/Birds_by_mwmax.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/9005558/Birds_by_mwmax.jpg", + "name": "Matthew Wu", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "matthewwu", + "notifications": null, + "url": null, + "created_at": "Sat Apr 18 14:17:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.878433, + 151.210905 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a392a", + "_rev": "1-98b6f6809f8129a5e990ee0751454ca1", + "oldid": "4eb38ffb3de67c511700033c", + "contributors": null, + "truncated": false, + "text": "After work movie for 1 - DRIVE (@ Village Rivoli Cinema) http://t.co/xA3QGJtI", + "in_reply_to_status_id": null, + "id": 132354716976951300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 57, + 77 + ], + "url": "http://t.co/xA3QGJtI", + "expanded_url": "http://4sq.com/tzVwBq", + "display_url": "4sq.com/tzVwBq" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.05548894, + -37.83041243 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354716976951296", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1387029811/image_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 157176898, + "profile_text_color": "333333", + "followers_count": 11, + "profile_sidebar_border_color": "316b4f", + "id_str": "157176898", + "profile_background_color": "EBEBEB", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 143, + "description": "I'm One Unique Asian Individual!!", + "friends_count": 12, + "location": "Melbourne, Australia ", + "profile_link_color": "990000", + "profile_image_url": "http://a2.twimg.com/profile_images/1387029811/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme16/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme16/bg.gif", + "name": "Andhika Irfandianto", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "cosmosamelb", + "notifications": null, + "url": null, + "created_at": "Sat Jun 19 02:24:16 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.83041243, + 145.05548894 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:18 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a3fce", + "_rev": "1-017cd35b979c1897381d3456577bb71f", + "oldid": "4eb38ffc3de67c511700033d", + "contributors": null, + "truncated": false, + "text": "Let's start the weekend (@ Domestic Terminal w/ 2 others) http://t.co/rMjFZhPZ", + "in_reply_to_status_id": null, + "id": 132354722521817090, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 58, + 78 + ], + "url": "http://t.co/rMjFZhPZ", + "expanded_url": "http://4sq.com/tBQr7O", + "display_url": "4sq.com/tBQr7O" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.12018335, + -27.3854053 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354722521817088", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1095069616/2008.12.10.002_normal.jpg", + "profile_sidebar_fill_color": "281e17", + "id": 90789607, + "profile_text_color": "54493e", + "followers_count": 130, + "profile_sidebar_border_color": "7a5c45", + "id_str": "90789607", + "profile_background_color": "3c2c22", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 607, + "description": "Interests: Bicycle, Football, Warsaw, Law, Accounting, Travel, History...", + "friends_count": 107, + "location": "Brisbane, QLD, Australia", + "profile_link_color": "7a5c45", + "profile_image_url": "http://a1.twimg.com/profile_images/1095069616/2008.12.10.002_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/82499837/bikecoffee_413_2931.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/82499837/bikecoffee_413_2931.jpg", + "name": "Maciek Koziara", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 74, + "screen_name": "mkoziara", + "notifications": null, + "url": "http://kosiasz.blogspot.com", + "created_at": "Wed Nov 18 03:19:52 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.3854053, + 153.12018335 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a4b86", + "_rev": "1-a7f5c25c7c357e1944b396cc86c5f731", + "oldid": "4eb390063de67c511700033e", + "contributors": null, + "truncated": false, + "text": "I'm at Stop number 10855 (Bull Creek) http://t.co/maoWv9nc", + "in_reply_to_status_id": null, + "id": 132354764565516290, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 38, + 58 + ], + "url": "http://t.co/maoWv9nc", + "expanded_url": "http://4sq.com/sdmbk7", + "display_url": "4sq.com/sdmbk7" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.86865, + -32.045346 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354764565516289", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616962706/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 312546016, + "profile_text_color": "0a050a", + "followers_count": 238, + "profile_sidebar_border_color": "120612", + "id_str": "312546016", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 18080, + "description": "an optimistic person who never stopped loving her family, manchester united, Chicharito,HIMYM, her best mates, Tangled & ice cream☺.", + "friends_count": 329, + "location": "in the freezer", + "profile_link_color": "090a0a", + "profile_image_url": "http://a2.twimg.com/profile_images/1616962706/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "name": "❥C.Christine", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 94, + "screen_name": "chynietoto", + "notifications": null, + "url": null, + "created_at": "Tue Jun 07 09:00:06 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.045346, + 115.86865 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:29 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a52a6", + "_rev": "1-ca7c49c07e85112dcb197c0f0369f9ad", + "oldid": "4eb390083de67c511700033f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 1 km/h SSW. Barometer 1015.7 mb, Steady. Temperature 30.7 °C. Rain today 0.0 mm. Humidity 12%", + "created_at": "Fri Nov 04 07:13:30 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.06916667, + -30.94861111 + ] + }, + "id": 132354769468665860, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354769468665856", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -30.94861111, + 149.06916667 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1283315389/pic_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 269023896, + "profile_text_color": "333333", + "followers_count": 6, + "profile_sidebar_border_color": "C0DEED", + "id_str": "269023896", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 4588, + "description": "Tree changer, moving from the Central Coast to Baradine to renovate a Church", + "friends_count": 11, + "location": "Baradine, NSW", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1283315389/pic_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Troy Rosenberg", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "TroyRS200", + "notifications": null, + "url": "http://baradine.dyndns.info/", + "created_at": "Sat Mar 19 23:36:08 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a5795", + "_rev": "1-5f31236649e7ba9decbb11b6c27f811b", + "oldid": "4eb3900d3de67c5117000340", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF omg! Your Drop dead Cute! <3", + "created_at": "Fri Nov 04 07:13:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132354792331816960, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132354792331816960", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3320, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 160, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a6637", + "_rev": "1-a0ef9935b3c1ca4f4dc552e896f81cbd", + "oldid": "4eb3900e3de67c5117000341", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Ugh. I hope they're not too much later!", + "created_at": "Fri Nov 04 07:13:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.39161237, + -36.36504394 + ] + }, + "id": 132354797285285890, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354797285285889", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.36504394, + 145.39161237 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1607565259/image_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 34073503, + "profile_text_color": "8a8686", + "followers_count": 101, + "profile_sidebar_border_color": "000000", + "id_str": "34073503", + "profile_background_color": "000000", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 5544, + "description": "18, female, bendigo - victoria. art student. never anything special. i like art.", + "friends_count": 106, + "location": "Australia.", + "profile_link_color": "f5b1e7", + "profile_image_url": "http://a2.twimg.com/profile_images/1607565259/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/123931604/zwall2.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/123931604/zwall2.jpg", + "name": "Alecia Jean Minotti", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 140, + "screen_name": "LEIISHAJEAN", + "notifications": null, + "url": "http://capturemeplease.tumblr.com", + "created_at": "Tue Apr 21 22:41:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a6d09", + "_rev": "1-6515885abb1fc4df8e0be8ee416541e8", + "oldid": "4eb3900f3de67c5117000342", + "contributors": null, + "truncated": false, + "text": "Shortly off to the Cane Toad Times launch. Just adjusting Zimmer-frame. http://t.co/KJgV6JaT", + "in_reply_to_status_id": null, + "id": 132354799281766400, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 72, + 92 + ], + "url": "http://t.co/KJgV6JaT", + "expanded_url": "http://ow.ly/1zLGR9", + "display_url": "ow.ly/1zLGR9" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.0031, + -27.45177 + ] + }, + "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354799281766400", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504578600/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 41343409, + "profile_text_color": "666666", + "followers_count": 101, + "profile_sidebar_border_color": "181A1E", + "id_str": "41343409", + "profile_background_color": "050002", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 3368, + "description": "Urban gent and pragmatist. General sceptic and moderate cynic.", + "friends_count": 138, + "location": "iPhone: -27.443426,152.995987", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1504578600/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/203320250/IMG_1235.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/203320250/IMG_1235.jpg", + "name": "Simon", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "mondoworld", + "notifications": null, + "url": null, + "created_at": "Wed May 20 11:55:07 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.45177, + 153.0031 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a7ca5", + "_rev": "1-672ead97271e03ae7b850a7f48741695", + "oldid": "4eb390113de67c5117000343", + "favorited": false, + "in_reply_to_user_id": 60039837, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@OfficialSuze @nereadersdigest get plz", + "created_at": "Fri Nov 04 07:13:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353776072921088", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96300728, + -37.81033263 + ] + }, + "id": 132354809884966910, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 60039837, + "id_str": "60039837", + "screen_name": "OfficialSuze", + "name": "SuzanneSteinbruckner" + }, + { + "indices": [ + 14, + 30 + ], + "id": 28095267, + "id_str": "28095267", + "screen_name": "NereadersDigest", + "name": "Nerida" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353776072921090, + "in_reply_to_screen_name": "OfficialSuze", + "id_str": "132354809884966912", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81033263, + 144.96300728 + ] + }, + "in_reply_to_user_id_str": "60039837", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "profile_sidebar_fill_color": "FFFFFF", + "id": 14111299, + "profile_text_color": "000000", + "followers_count": 998, + "profile_sidebar_border_color": "7B7B7B", + "id_str": "14111299", + "profile_background_color": "FFFBF0", + "listed_count": 55, + "utc_offset": 36000, + "statuses_count": 24836, + "description": "mid-twenties designer+musician http://soundcloud.com/helveticade", + "friends_count": 763, + "location": "Melbourne", + "profile_link_color": "942828", + "profile_image_url": "http://a3.twimg.com/profile_images/1613368416/Screen_Shot_2011-10-30_at_3.46_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/179282263/Jens-Karlsson-revox-20100525.jpg", + "name": "HELVETIC★DE", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 368, + "screen_name": "helveticade", + "notifications": null, + "url": "http://cade.com.au", + "created_at": "Mon Mar 10 03:53:46 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a8168", + "_rev": "1-bdd470a0c7a68cbade2bd13145e1cb82", + "oldid": "4eb390123de67c5117000344", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Out for dinner & a couple of drinks for our anniversary. Mmm yum", + "created_at": "Fri Nov 04 07:13:41 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.70479232, + -32.9724515 + ] + }, + "id": 132354813496279040, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354813496279040", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.9724515, + 151.70479232 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616897301/eel_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 400362145, + "profile_text_color": "333333", + "followers_count": 5, + "profile_sidebar_border_color": "C0DEED", + "id_str": "400362145", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 11, + "description": "", + "friends_count": 11, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1616897301/eel_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Kirrily FitzGerald", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "KizzaFitz", + "notifications": null, + "url": null, + "created_at": "Fri Oct 28 22:30:54 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a8a88", + "_rev": "1-e97059e3e94891559f752d50fdbb0ca9", + "oldid": "4eb390133de67c5117000345", + "contributors": null, + "truncated": false, + "text": "Beeeer. @ Small Bar http://t.co/QsqBbSiY", + "in_reply_to_status_id": null, + "id": 132354817883512830, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 21, + 41 + ], + "url": "http://t.co/QsqBbSiY", + "expanded_url": "http://instagr.am/p/SqaX4/", + "display_url": "instagr.am/p/SqaX4/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20375037, + -33.86673195 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354817883512832", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1181346720/Avatar---Thinker_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 889731, + "profile_text_color": "333333", + "followers_count": 263, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "889731", + "profile_background_color": "022330", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 6709, + "description": "Geekery. Photography. Foodery. Tomfoolery.", + "friends_count": 195, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1181346720/Avatar---Thinker_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Marcin Szczepanski", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "marcins", + "notifications": null, + "url": "http://www.junkheap.net", + "created_at": "Sat Mar 10 23:26:43 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86673195, + 151.20375037 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1a8d92", + "_rev": "1-2aad77c22899a4b27a9bba5bbecad150", + "oldid": "4eb390153de67c5117000346", + "favorited": false, + "in_reply_to_user_id": 328881174, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@AndrewBoltsBlog thank God you can sort thru all that political crap Low life Bob Brown attacking #qantas Alan Joyce Who does BBthink he is?", + "created_at": "Fri Nov 04 07:13:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 140.78964805, + -37.8171541 + ] + }, + "id": 132354827345866750, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 328881174, + "id_str": "328881174", + "screen_name": "AndrewBoltsBlog", + "name": "BoltsBlogs" + } + ], + "hashtags": [ + { + "indices": [ + 98, + 105 + ], + "text": "qantas" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "AndrewBoltsBlog", + "id_str": "132354827345866752", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8171541, + 140.78964805 + ] + }, + "in_reply_to_user_id_str": "328881174", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1586971408/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 32252688, + "profile_text_color": "333333", + "followers_count": 9, + "profile_sidebar_border_color": "C0DEED", + "id_str": "32252688", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 61, + "description": "How does one sum oneself up! ", + "friends_count": 38, + "location": "South Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1586971408/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Avalon Fairest", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "The_Avalon", + "notifications": null, + "url": null, + "created_at": "Fri Apr 17 02:01:03 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1a9bb5", + "_rev": "1-2dd4278ddd4388b8096b4d9dc18b8e68", + "oldid": "4eb390183de67c5117000347", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504411463/bok_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15420301, + "profile_text_color": "333333", + "followers_count": 323, + "protected": false, + "location": "Melbourne", + "default_profile_image": false, + "id_str": "15420301", + "utc_offset": 36000, + "statuses_count": 10415, + "description": "Author of iTransit, tramTRACKER for iPhone and other stuff. Developer in Melbourne. All opinions my own.", + "friends_count": 133, + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1504411463/bok_normal.png", + "following": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_color": "C0DEED", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "screen_name": "bok_", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 36, + "name": "Robert Amos", + "notifications": null, + "url": null, + "created_at": "Sun Jul 13 23:59:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "profile_sidebar_border_color": "C0DEED", + "default_profile": true, + "is_translator": false, + "listed_count": 30 + }, + "favorited": false, + "contributors": null, + "truncated": false, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@alaero was more referring to the picture quality than screen size", + "created_at": "Fri Nov 04 07:13:47 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": "132354641278140416", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98122185, + -37.84774713 + ] + }, + "id": 132354839463211000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 14880537, + "screen_name": "alaero", + "id_str": "14880537", + "name": "alaero" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132354641278140420, + "place": null, + "id_str": "132354839463211009", + "in_reply_to_screen_name": "alaero", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84774713, + 144.98122185 + ] + }, + "in_reply_to_user_id_str": "14880537", + "in_reply_to_user_id": 14880537 + }, + { + "_id": "51f39676462cca21859bd92d8e1aab74", + "_rev": "1-4f86c78b9e849ff3b4a4aa84fd29a085", + "oldid": "4eb3901d3de67c5117000348", + "favorited": false, + "in_reply_to_user_id": 17800512, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@gordongraham that uncertainty is evident right now. Abbott is becoming ineffective, Fast! Turnball's return is a certainty.", + "created_at": "Fri Nov 04 07:13:52 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132352580645953536", + "coordinates": { + "type": "Point", + "coordinates": [ + 115.956872, + -32.0773486 + ] + }, + "id": 132354858966728700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 17800512, + "id_str": "17800512", + "screen_name": "gordongraham", + "name": "Gordon Graham" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132352580645953540, + "in_reply_to_screen_name": "gordongraham", + "id_str": "132354858966728704", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.0773486, + 115.956872 + ] + }, + "in_reply_to_user_id_str": "17800512", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1572527461/6YMU7283_normal", + "profile_sidebar_fill_color": "ffffff", + "id": 46613797, + "profile_text_color": "333333", + "followers_count": 47, + "profile_sidebar_border_color": "eeeeee", + "id_str": "46613797", + "profile_background_color": "B2DFDA", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 977, + "description": "An interested observer, and participant of life. ", + "friends_count": 156, + "location": "Perth, Australia", + "profile_link_color": "93A644", + "profile_image_url": "http://a1.twimg.com/profile_images/1572527461/6YMU7283_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Simone ", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "InMyOpinion01", + "notifications": null, + "url": null, + "created_at": "Fri Jun 12 08:49:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ab851", + "_rev": "1-34538499aeacbe831cd7a4bd9ac5b5c4", + "oldid": "4eb3901e3de67c5117000349", + "favorited": false, + "in_reply_to_user_id": 296619290, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@dannmauro or any questions about living in Australia please feel to ask. Even take you to an AFL game.", + "created_at": "Fri Nov 04 07:13:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132354238104870914", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42891656, + -28.00011693 + ] + }, + "id": 132354865027485700, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 296619290, + "id_str": "296619290", + "screen_name": "dannmauro", + "name": "Daniel Mauro" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132354238104870910, + "in_reply_to_screen_name": "dannmauro", + "id_str": "132354865027485696", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -28.00011693, + 153.42891656 + ] + }, + "in_reply_to_user_id_str": "296619290", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527157009/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 366934445, + "profile_text_color": "333333", + "followers_count": 224, + "profile_sidebar_border_color": "C0DEED", + "id_str": "366934445", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 265, + "description": "loves AFL and the @Brisbanelions Also do not mind a good party.. Recently moved to Sydney for work", + "friends_count": 1121, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1527157009/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Brad Schutz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "bradjloveafl", + "notifications": null, + "url": null, + "created_at": "Sat Sep 03 02:45:39 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1abd1e", + "_rev": "1-e1d5e96ec16fd71cd064fdf9f91b7ee7", + "oldid": "4eb3901f3de67c511700034a", + "favorited": false, + "in_reply_to_user_id": 19705247, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@breezlebub But then again, so am I!!!", + "created_at": "Fri Nov 04 07:13:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.64897501, + -34.83924525 + ] + }, + "id": 132354866755551230, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 19705247, + "id_str": "19705247", + "screen_name": "breezlebub", + "name": "Bree W" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "breezlebub", + "id_str": "132354866755551232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.83924525, + 138.64897501 + ] + }, + "in_reply_to_user_id_str": "19705247", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1470963236/image_normal.jpg", + "profile_sidebar_fill_color": "032b2e", + "id": 26492157, + "profile_text_color": "867af0", + "followers_count": 41, + "profile_sidebar_border_color": "e6bf85", + "id_str": "26492157", + "profile_background_color": "0a3745", + "listed_count": 5, + "utc_offset": 28800, + "statuses_count": 5084, + "description": "V8 watcher, WCE supporter teddy hugger,Vampire lover and babysitting specialist!! Yes I know, strange mix", + "friends_count": 165, + "location": "South West of West Australia", + "profile_link_color": "3a8a86", + "profile_image_url": "http://a2.twimg.com/profile_images/1470963236/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/240511406/vf15.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/240511406/vf15.jpg", + "name": "Nene King", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "Neensa", + "notifications": null, + "url": null, + "created_at": "Wed Mar 25 13:06:51 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ac239", + "_rev": "1-2b1f2b079da808d53e02bdf08aebd101", + "oldid": "4eb390203de67c511700034b", + "contributors": null, + "truncated": false, + "text": "I'm at State Library of Queensland (23 Stanley St., cnr Peel St., South Brisbane) http://t.co/nZ4hOCbZ", + "in_reply_to_status_id": null, + "id": 132354871499292670, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 82, + 102 + ], + "url": "http://t.co/nZ4hOCbZ", + "expanded_url": "http://4sq.com/uaz1yL", + "display_url": "4sq.com/uaz1yL" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01792145, + -27.47138169 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354871499292672", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20416818, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20416818", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": -36000, + "statuses_count": 1677, + "description": "I'm a commercial photographer based in Brisbane, Australia - loving the job and each new challenge that I face every day.", + "friends_count": 167, + "location": "iPhone: -27.559235,152.978851", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Naz Mulla", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 354, + "screen_name": "nazmulla", + "notifications": null, + "url": "http://www.nazmulla.com", + "created_at": "Mon Feb 09 04:56:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.47138169, + 153.01792145 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:13:55 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1ac76a", + "_rev": "1-1dac7e0982dc85b37b1cf246d2dc14ed", + "oldid": "4eb3902b3de67c511700034c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://mobileways.de/gravity\" rel=\"nofollow\">Gravity</a>", + "text": "Ha?RT @raditdinata: baru liat ayam permanen kyk gitu -_____-", + "created_at": "Fri Nov 04 07:14:06 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0833538, + -33.8432463 + ] + }, + "id": 132354920287453180, + "entities": { + "user_mentions": [ + { + "indices": [ + 6, + 18 + ], + "id": 110898648, + "id_str": "110898648", + "screen_name": "raditdinata", + "name": "Raditya Patriadinata" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354920287453184", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8432463, + 151.0833538 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613373547/avvv_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 144709069, + "profile_text_color": "333333", + "followers_count": 354, + "profile_sidebar_border_color": "eeeeee", + "id_str": "144709069", + "profile_background_color": "131516", + "listed_count": 7, + "utc_offset": 25200, + "statuses_count": 17275, + "description": "Part of @GFM47IPB. Mezzosoprano of PSM IPB @AgriaSwara. Choleric-Sanguine. @raditdinata's.", + "friends_count": 196, + "location": "Indonesia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1613373547/avvv_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Annisa Nurdiana", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 64, + "screen_name": "icanurdiana", + "notifications": null, + "url": "http://ichot.tumblr.com", + "created_at": "Mon May 17 03:07:11 +0000 2010", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1acdf9", + "_rev": "1-c887a3d6f3d4469fe744b26c77403b8e", + "oldid": "4eb390323de67c511700034d", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Crap the first bus has left", + "created_at": "Fri Nov 04 07:14:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.8619607, + -32.04793733 + ] + }, + "id": 132354947529449470, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354947529449472", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04793733, + 115.8619607 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616962706/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 312546016, + "profile_text_color": "0a050a", + "followers_count": 238, + "profile_sidebar_border_color": "120612", + "id_str": "312546016", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 18081, + "description": "an optimistic person who never stopped loving her family, manchester united, Chicharito,HIMYM, her best mates, Tangled & ice cream☺.", + "friends_count": 329, + "location": "in the freezer", + "profile_link_color": "090a0a", + "profile_image_url": "http://a2.twimg.com/profile_images/1616962706/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "name": "❥C.Christine", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 94, + "screen_name": "chynietoto", + "notifications": null, + "url": null, + "created_at": "Tue Jun 07 09:00:06 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ad038", + "_rev": "1-748f740ff276028e65b508bf19574fc8", + "oldid": "4eb390343de67c511700034e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://stone.com/Twittelator\" rel=\"nofollow\">Twittelator</a>", + "text": "At Little Athletics with the boys. NEED coffee", + "created_at": "Fri Nov 04 07:14:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.808647, + -33.929581 + ] + }, + "id": 132354954886250500, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354954886250496", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.929581, + 150.808647 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1467172114/mzP4T_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 62386678, + "profile_text_color": "3D1957", + "followers_count": 86, + "profile_sidebar_border_color": "65B0DA", + "id_str": "62386678", + "profile_background_color": "642D8B", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 10217, + "description": "Have 2 boys. Love scifi, esp Star Trek, minus the tribble shit. Growing old disgracefully, geekily & nerdily.", + "friends_count": 159, + "location": "Bringelly, New South Wales AU", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1467172114/mzP4T_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Liam. P. O'Connell", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 496, + "screen_name": "kiraniumbra", + "notifications": null, + "url": "http://kiraniumbra.wordpress.com", + "created_at": "Mon Aug 03 00:15:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ad57b", + "_rev": "1-3094f4e870c2ae8778b8009f59983deb", + "oldid": "4eb390353de67c511700034f", + "contributors": null, + "truncated": false, + "text": "I'm at G Place (Formally Golden Point Primary School) (English Street, Ballarat) http://t.co/xeVdx35s", + "in_reply_to_status_id": null, + "id": 132354959541940220, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 81, + 101 + ], + "url": "http://t.co/xeVdx35s", + "expanded_url": "http://4sq.com/ssGMHX", + "display_url": "4sq.com/ssGMHX" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 143.865665, + -37.572292 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132354959541940224", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1263357502/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 107616277, + "profile_text_color": "333333", + "followers_count": 19, + "profile_sidebar_border_color": "C0DEED", + "id_str": "107616277", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 223, + "description": "", + "friends_count": 38, + "location": "Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1263357502/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Edgar Newman", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 8, + "screen_name": "darkknight1967", + "notifications": null, + "url": "http://mortgagehouse.com.au", + "created_at": "Sat Jan 23 04:24:46 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.572292, + 143.865665 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:14:16 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1ae299", + "_rev": "1-b579d321f96eb7ffdc69fdbd14e08c04", + "oldid": "4eb390363de67c5117000350", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#TheFlyingJeepney video highlights to be released on YouTube tonight! What would you like to see as part of the highlights package?", + "created_at": "Fri Nov 04 07:14:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.2089009, + -33.87075069 + ] + }, + "id": 132354966718394370, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 17 + ], + "text": "TheFlyingJeepney" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354966718394368", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87075069, + 151.2089009 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609017228/6076522963_fe4dffb822_b_normal.jpeg", + "profile_sidebar_fill_color": "b82121", + "id": 186783281, + "profile_text_color": "030302", + "followers_count": 1021, + "profile_sidebar_border_color": "d2f525", + "id_str": "186783281", + "profile_background_color": "090a0a", + "listed_count": 30, + "utc_offset": 36000, + "statuses_count": 1449, + "description": "***I am The Flying Jeepney*** Professional Rugby Player / Philippine Volcanoes. Lawyer. Unofficial Volcano tweeter commentator", + "friends_count": 30, + "location": "Sydney to Manila", + "profile_link_color": "0a33bd", + "profile_image_url": "http://a3.twimg.com/profile_images/1609017228/6076522963_fe4dffb822_b_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/353724486/Twitter-JC1.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/353724486/Twitter-JC1.jpg", + "name": "Justin Coveney", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "Justin_Coveney", + "notifications": null, + "url": null, + "created_at": "Sat Sep 04 11:32:31 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ae4a0", + "_rev": "1-8123a115b47350a716ca875e60cb114c", + "oldid": "4eb390373de67c5117000351", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Avoid Alexandria it's a carpark!!!", + "created_at": "Fri Nov 04 07:14:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19676309, + -33.91320079 + ] + }, + "id": 132354970451329020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132354970451329025", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.91320079, + 151.19676309 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1534409652/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 84745032, + "profile_text_color": "333333", + "followers_count": 50, + "profile_sidebar_border_color": "C0DEED", + "id_str": "84745032", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 842, + "description": "south sydney rabbitohs manchester united new york knicks san francisco 49ers new york rangers boston red sox\n", + "friends_count": 212, + "location": "Maroubra", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1534409652/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Adam Tolhurst", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "twozero3five", + "notifications": null, + "url": null, + "created_at": "Sat Oct 24 02:13:52 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1aef4e", + "_rev": "1-9d2216018350d6d9ebb9804b2c17483e", + "oldid": "4eb390403de67c5117000352", + "contributors": null, + "truncated": false, + "text": "Restock persediaan makan duyuu~ http://t.co/yFEbgLiP", + "in_reply_to_status_id": null, + "id": 132355003414355970, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY4LKMCIAEhVJw.jpg", + "expanded_url": "http://twitter.com/allansyh/status/132355003414355968/photo/1", + "display_url": "pic.twitter.com/yFEbgLiP", + "url": "http://t.co/yFEbgLiP", + "sizes": { + "large": { + "h": 1024, + "w": 764, + "resize": "fit" + }, + "small": { + "h": 456, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 804, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132355003418550273", + "indices": [ + 32, + 52 + ], + "type": "photo", + "id": 132355003418550270, + "media_url": "http://p.twimg.com/AdY4LKMCIAEhVJw.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.97027719, + -37.80663878 + ] + }, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355003414355968", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1609343791/IMG_0070_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 326253028, + "profile_text_color": "333333", + "followers_count": 24, + "profile_sidebar_border_color": "C0DEED", + "id_str": "326253028", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 185, + "description": "life once and i'm gonna rock it !", + "friends_count": 43, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1609343791/IMG_0070_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "allan fadlansyah", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "allansyh", + "notifications": null, + "url": null, + "created_at": "Wed Jun 29 16:40:41 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.80663878, + 144.97027719 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:14:27 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1af5e5", + "_rev": "1-9decf90dfbc85e80b9bc72b3c63d53ab", + "oldid": "4eb390493de67c5117000353", + "contributors": null, + "truncated": false, + "text": "The Clovelly Hotel. Stop by after a long day of heavy lifting. http://t.co/YMBLhI1O", + "in_reply_to_status_id": null, + "id": 132355042194886660, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY4NaqCEAA2bV4.jpg", + "expanded_url": "http://twitter.com/bigger_d/status/132355042194886656/photo/1", + "display_url": "pic.twitter.com/YMBLhI1O", + "url": "http://t.co/YMBLhI1O", + "sizes": { + "large": { + "h": 1024, + "w": 768, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132355042199080960", + "indices": [ + 63, + 83 + ], + "type": "photo", + "id": 132355042199080960, + "media_url": "http://p.twimg.com/AdY4NaqCEAA2bV4.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.26497983, + -33.91359328 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355042194886656", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/530151040/Dr_Riviera_normal.gif", + "profile_sidebar_fill_color": "DDEEF6", + "id": 36645754, + "profile_text_color": "333333", + "followers_count": 45, + "profile_sidebar_border_color": "C0DEED", + "id_str": "36645754", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 1133, + "description": null, + "friends_count": 28, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/530151040/Dr_Riviera_normal.gif", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "bigger_d", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 158, + "screen_name": "bigger_d", + "notifications": null, + "url": null, + "created_at": "Thu Apr 30 12:01:43 +0000 2009", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.91359328, + 151.26497983 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:14:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1af9d6", + "_rev": "1-cc498ab7082d34fd4c16c7f3f1ab4b22", + "oldid": "4eb3904b3de67c5117000354", + "favorited": false, + "in_reply_to_user_id": 14297439, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@katsbud oh no. Was there a fatality?!", + "created_at": "Fri Nov 04 07:14:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132330933952061440", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96123536, + -37.81568892 + ] + }, + "id": 132355051896320000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 14297439, + "id_str": "14297439", + "screen_name": "katsbud", + "name": "Kellie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132330933952061440, + "in_reply_to_screen_name": "katsbud", + "id_str": "132355051896320000", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.81568892, + 144.96123536 + ] + }, + "in_reply_to_user_id_str": "14297439", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1525919373/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 29175608, + "profile_text_color": "333333", + "followers_count": 325, + "profile_sidebar_border_color": "C0DEED", + "id_str": "29175608", + "profile_background_color": "C0DEED", + "listed_count": 18, + "utc_offset": 36000, + "statuses_count": 24341, + "description": "Sometimes funny, sometimes not. Sometimes scientific, sometimes filthy. Sometimes insightful, other times naive. But always overweight and drunken", + "friends_count": 434, + "location": "iPhone in Manly, Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1525919373/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "MW", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 125, + "screen_name": "mw1414", + "notifications": null, + "url": null, + "created_at": "Mon Apr 06 10:15:18 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1afd24", + "_rev": "1-9a6a87b9692b6189222eccef5909fd79", + "oldid": "4eb390503de67c5117000355", + "favorited": false, + "in_reply_to_user_id": 13152912, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ctudball it wasn't mad mex?!?!?", + "created_at": "Fri Nov 04 07:14:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344078670114816", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.03268551, + -37.9314145 + ] + }, + "id": 132355074423914500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 13152912, + "id_str": "13152912", + "screen_name": "ctudball", + "name": "Cameron Tudball" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344078670114820, + "in_reply_to_screen_name": "ctudball", + "id_str": "132355074423914496", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.9314145, + 145.03268551 + ] + }, + "in_reply_to_user_id_str": "13152912", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1545038715/73024_10150291588070408_860050407_15005850_109757_n_normal.jpg", + "profile_sidebar_fill_color": "000b17", + "id": 11926682, + "profile_text_color": "03a858", + "followers_count": 242, + "profile_sidebar_border_color": "f7b565", + "id_str": "11926682", + "profile_background_color": "001329", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 2348, + "description": "graphic designer for #LCA2012 visit http://www.lcaunderthestars.org.au for more info", + "friends_count": 363, + "location": "", + "profile_link_color": "e07b00", + "profile_image_url": "http://a2.twimg.com/profile_images/1545038715/73024_10150291588070408_860050407_15005850_109757_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/156688925/x4143be4773e82de714381f4a81ba3e6.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/156688925/x4143be4773e82de714381f4a81ba3e6.jpg", + "name": "Sae Ra Germaine", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "ms_mary_mac", + "notifications": null, + "url": "http://www.ms-mary-mac.com", + "created_at": "Mon Jan 07 02:48:52 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b02ea", + "_rev": "1-59f887b9ce338f083c67a61eee4fa4f9", + "oldid": "4eb390513de67c5117000356", + "contributors": null, + "truncated": false, + "text": "I'm at Gallery of Modern Art (Stanley Pl., South Brisbane) http://t.co/8PdWBofn", + "in_reply_to_status_id": null, + "id": 132355078924406780, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 59, + 79 + ], + "url": "http://t.co/8PdWBofn", + "expanded_url": "http://4sq.com/tZTDV3", + "display_url": "4sq.com/tZTDV3" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01733136, + -27.4707915 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355078924406785", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20416818, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20416818", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": -36000, + "statuses_count": 1678, + "description": "I'm a commercial photographer based in Brisbane, Australia - loving the job and each new challenge that I face every day.", + "friends_count": 167, + "location": "iPhone: -27.559235,152.978851", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Naz Mulla", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 354, + "screen_name": "nazmulla", + "notifications": null, + "url": "http://www.nazmulla.com", + "created_at": "Mon Feb 09 04:56:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.4707915, + 153.01733136 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:14:44 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1b11df", + "_rev": "1-d255e9f7a59a5ec1c3857d25235b35cc", + "oldid": "4eb390533de67c5117000357", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "Fuck VM week, fuck your displays & fuck doing card wall. I'm out of here.", + "created_at": "Fri Nov 04 07:14:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.13182247, + -33.96480374 + ] + }, + "id": 132355085131976700, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355085131976705", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.96480374, + 151.13182247 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1615107981/IMGP5476_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 22457931, + "profile_text_color": "666666", + "followers_count": 272, + "profile_sidebar_border_color": "181A1E", + "id_str": "22457931", + "profile_background_color": "000000", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 4140, + "description": "• Obsessed photo nerd • \r\n• corset wearer • \r\n• @TypoShop team leader •", + "friends_count": 229, + "location": "Sydney", + "profile_link_color": "ff2e65", + "profile_image_url": "http://a2.twimg.com/profile_images/1615107981/IMGP5476_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/146037825/Twitter_BG.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/146037825/Twitter_BG.jpg", + "name": "Belynda Montagner", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 310, + "screen_name": "BillyBelynda", + "notifications": null, + "url": "http://billybelynda.posterous.com", + "created_at": "Mon Mar 02 06:05:02 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b201b", + "_rev": "1-6c817d1f3388287f7491002952d885cf", + "oldid": "4eb390533de67c5117000358", + "favorited": false, + "in_reply_to_user_id": 149495489, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@kjmci @arkenstone @alaero 🎇🎇🎇 (how does that work?)", + "created_at": "Fri Nov 04 07:14:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132354524747804672", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98121539, + -37.84774545 + ] + }, + "id": 132355086327357440, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 149495489, + "id_str": "149495489", + "screen_name": "kjmci", + "name": "Kieran Mc" + }, + { + "indices": [ + 7, + 18 + ], + "id": 8700842, + "id_str": "8700842", + "screen_name": "arkenstone", + "name": "arkenstone" + }, + { + "indices": [ + 19, + 26 + ], + "id": 14880537, + "id_str": "14880537", + "screen_name": "alaero", + "name": "alaero" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132354524747804670, + "in_reply_to_screen_name": "kjmci", + "id_str": "132355086327357440", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84774545, + 144.98121539 + ] + }, + "in_reply_to_user_id_str": "149495489", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504411463/bok_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15420301, + "profile_text_color": "333333", + "followers_count": 323, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15420301", + "profile_background_color": "C0DEED", + "listed_count": 30, + "utc_offset": 36000, + "statuses_count": 10416, + "description": "Author of iTransit, tramTRACKER for iPhone and other stuff. Developer in Melbourne. All opinions my own.", + "friends_count": 133, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1504411463/bok_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robert Amos", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 36, + "screen_name": "bok_", + "notifications": null, + "url": null, + "created_at": "Sun Jul 13 23:59:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b2a18", + "_rev": "1-e1667cfadf01afe7c40a49694b868dbb", + "oldid": "4eb390533de67c5117000359", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF can you please follow me please? I'm gonna keep trying :D till u follow me ahaaa", + "created_at": "Fri Nov 04 07:14:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132354770936676352", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132355086964895740, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132354770936676350, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132355086964895744", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621700805/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3321, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1786, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621700805/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b2b26", + "_rev": "1-e2097c8911dfb8d535d64e2e19fb3237", + "oldid": "4eb390563de67c511700035a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Catching up on some movies and getting leery in noosa #contagion #intime", + "created_at": "Fri Nov 04 07:14:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.04155832, + -26.38686603 + ] + }, + "id": 132355097773613060, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 54, + 64 + ], + "text": "contagion" + }, + { + "indices": [ + 65, + 72 + ], + "text": "intime" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355097773613057", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -26.38686603, + 153.04155832 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1531655013/image_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 64289290, + "profile_text_color": "333333", + "followers_count": 123, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "64289290", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": -21600, + "statuses_count": 1159, + "description": "", + "friends_count": 359, + "location": "winnipeg", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1531655013/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "name": "Ryan Barnard", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "barnardnt", + "notifications": null, + "url": null, + "created_at": "Mon Aug 10 00:10:11 +0000 2009", + "contributors_enabled": false, + "time_zone": "Central Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b2ef8", + "_rev": "1-e050ddb579c4818f222a8eadbe513e4d", + "oldid": "4eb390583de67c511700035b", + "favorited": false, + "in_reply_to_user_id": 59699957, + "contributors": null, + "source": "<a href=\"http://ubersocial.com\" rel=\"nofollow\">UberSocial for Android</a>", + "text": "@lukeyook I'm imagining a song featuring Rue Paul (I think that's his/her name) when I hear someone is 'voguing'. Early 90's.", + "created_at": "Fri Nov 04 07:14:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351347277303808", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9946494, + -37.7845051 + ] + }, + "id": 132355105516306430, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 59699957, + "id_str": "59699957", + "screen_name": "lukeyook", + "name": "Luke Johnston " + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132351347277303800, + "in_reply_to_screen_name": "lukeyook", + "id_str": "132355105516306433", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.7845051, + 144.9946494 + ] + }, + "in_reply_to_user_id_str": "59699957", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "profile_sidebar_fill_color": "91baf7", + "id": 22474528, + "profile_text_color": "0a0a0a", + "followers_count": 151, + "profile_sidebar_border_color": "52bef0", + "id_str": "22474528", + "profile_background_color": "acded6", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 10241, + "description": "My imagination tells me: Be amazing! \r\nIn the distance, time is calling out: Just get on with it, already!", + "friends_count": 118, + "location": "Melbourne, Australia", + "profile_link_color": "a80d8e", + "profile_image_url": "http://a2.twimg.com/profile_images/1507814658/split_hyacinth_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/245621966/MSCnOj9i.jpg", + "name": "K", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 18, + "screen_name": "Belmoroe", + "notifications": null, + "url": null, + "created_at": "Mon Mar 02 11:06:31 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b2efd", + "_rev": "1-3100c76e3d219a9144cd86e1b37b3b01", + "oldid": "4eb390583de67c511700035c", + "contributors": null, + "truncated": false, + "text": "The Clovelly Hotel. Stop by after a long day of heavy lifting. http://t.co/pNTxLX7I", + "in_reply_to_status_id": null, + "id": 132355105457586180, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY4RGVCQAESP2X.jpg", + "expanded_url": "http://twitter.com/damoski/status/132355105457586176/photo/1", + "display_url": "pic.twitter.com/pNTxLX7I", + "url": "http://t.co/pNTxLX7I", + "sizes": { + "large": { + "h": 1024, + "w": 768, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132355105461780481", + "indices": [ + 63, + 83 + ], + "type": "photo", + "id": 132355105461780480, + "media_url": "http://p.twimg.com/AdY4RGVCQAESP2X.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.26497983, + -33.91359328 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355105457586176", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/76012881/d_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 18464933, + "profile_text_color": "333333", + "followers_count": 116, + "profile_sidebar_border_color": "C0DEED", + "id_str": "18464933", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 0, + "statuses_count": 4123, + "description": "", + "friends_count": 53, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/76012881/d_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "damoski", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 17, + "screen_name": "damoski", + "notifications": null, + "url": null, + "created_at": "Tue Dec 30 00:56:14 +0000 2008", + "contributors_enabled": false, + "time_zone": "London", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.91359328, + 151.26497983 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:14:51 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1b32aa", + "_rev": "1-7764ca4993b6d604d8469a10f3d167ec", + "oldid": "4eb390593de67c511700035d", + "favorited": false, + "in_reply_to_user_id": 188794592, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@RawrMattel Capita. Addio. Ah, sei incinta.", + "created_at": "Fri Nov 04 07:14:51 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132344205484883969", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42387372, + -28.02098929 + ] + }, + "id": 132355108548775940, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 188794592, + "id_str": "188794592", + "screen_name": "RawrMattel", + "name": "Γεια σας, πόρνη. ॐ" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132344205484883970, + "in_reply_to_screen_name": "RawrMattel", + "id_str": "132355108548775936", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -28.02098929, + 153.42387372 + ] + }, + "in_reply_to_user_id_str": "188794592", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "profile_sidebar_fill_color": "070918", + "id": 44710301, + "profile_text_color": "a19b9b", + "followers_count": 1139, + "profile_sidebar_border_color": "000000", + "id_str": "44710301", + "profile_background_color": "000000", + "listed_count": 33, + "utc_offset": 3600, + "statuses_count": 42160, + "description": "Life, Movies, TV Series and Music Addicted.\r\nFan of Aphorisms and PS3 Gamer. Bilingual. Distinguishing Marks: Geek", + "friends_count": 778, + "location": "Gold Coast, QLD, Australia", + "profile_link_color": "0342ff", + "profile_image_url": "http://a0.twimg.com/profile_images/1620973297/IMG_0153_normal.JPG", + "is_translator": true, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/287446547/abstract_background_brown_and_blue_circles-1280x800.jpg", + "name": "Stefano Mascolo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1020, + "screen_name": "stefa93", + "notifications": null, + "url": "http://stefa93.tumblr.com", + "created_at": "Thu Jun 04 20:22:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Rome", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b3e99", + "_rev": "1-ffce29de065014b7bf14cff74ab94b86", + "oldid": "4eb3905f3de67c511700035e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "The best thing about #JuliaGillard is that she is not #TonyAbbott", + "created_at": "Fri Nov 04 07:14:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.28239031, + -33.89067859 + ] + }, + "id": 132355134754783230, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 21, + 34 + ], + "text": "JuliaGillard" + }, + { + "indices": [ + 55, + 66 + ], + "text": "TonyAbbott" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355134754783234", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.89067859, + 151.28239031 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621634361/image_normal.jpg", + "profile_sidebar_fill_color": "F6F6F6", + "id": 23054053, + "profile_text_color": "333333", + "followers_count": 504, + "profile_sidebar_border_color": "EEEEEE", + "id_str": "23054053", + "profile_background_color": "ACDED6", + "listed_count": 17, + "utc_offset": 36000, + "statuses_count": 7229, + "description": "Psychologist & writer/social commentator. Passionate about politics human/animal rights,justice, climate change the planet.Need to laugh too. ", + "friends_count": 400, + "location": "Melbourne Australia", + "profile_link_color": "038543", + "profile_image_url": "http://a2.twimg.com/profile_images/1621634361/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme18/bg.gif", + "name": "Lyn Bender", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 66, + "screen_name": "Lynestel", + "notifications": null, + "url": null, + "created_at": "Fri Mar 06 11:25:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b411f", + "_rev": "1-ec18265b8b4fded5f9c29d5ca56cd0e8", + "oldid": "4eb3906b3de67c511700035f", + "favorited": false, + "in_reply_to_user_id": 362798779, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Rain_Eyes yeah haha", + "created_at": "Fri Nov 04 07:15:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132342770961629185", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.49237817, + -38.05872941 + ] + }, + "id": 132355188156669950, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 362798779, + "id_str": "362798779", + "screen_name": "Rain_Eyes", + "name": "Laura" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132342770961629180, + "in_reply_to_screen_name": "Rain_Eyes", + "id_str": "132355188156669953", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.05872941, + 145.49237817 + ] + }, + "in_reply_to_user_id_str": "362798779", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613393052/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 326117471, + "profile_text_color": "333333", + "followers_count": 111, + "profile_sidebar_border_color": "C0DEED", + "id_str": "326117471", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -28800, + "statuses_count": 2843, + "description": "I'm Jack King & I'm Fifteen, I'm from the South-Eastern side of Melbourne.", + "friends_count": 69, + "location": "Pakenham, Melbourne.", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1613393052/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/347044061/terror-keepers-of-the-faith.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/347044061/terror-keepers-of-the-faith.jpg", + "name": "Jack Thomas King.", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 282, + "screen_name": "Jack_tking", + "notifications": null, + "url": "http://n0thingbuthate.tumblr.com", + "created_at": "Wed Jun 29 12:03:42 +0000 2011", + "contributors_enabled": false, + "time_zone": "Pacific Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b450b", + "_rev": "1-f62e27d91381b95bd5225eae1fb31332", + "oldid": "4eb3906c3de67c5117000360", + "contributors": null, + "truncated": false, + "text": "I'm at Roadtrain Assembly Area Wubin http://t.co/iAYzkLCh", + "in_reply_to_status_id": null, + "id": 132355190966861820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 37, + 57 + ], + "url": "http://t.co/iAYzkLCh", + "expanded_url": "http://4sq.com/w0ELI5", + "display_url": "4sq.com/w0ELI5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.630152, + -30.103675 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355190966861824", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/42769632/Crow_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 11831202, + "profile_text_color": "333333", + "followers_count": 280, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "11831202", + "profile_background_color": "022330", + "listed_count": 20, + "utc_offset": 28800, + "statuses_count": 7202, + "description": "Roadtrain driver - all over Oz", + "friends_count": 112, + "location": "iPhone: -32.150494,116.006996", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/42769632/Crow_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "twocrowsdown", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "twocrowsdown", + "notifications": null, + "url": "http://www.twocrowsdown.com", + "created_at": "Fri Jan 04 06:33:09 +0000 2008", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -30.103675, + 116.630152 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:15:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1b4621", + "_rev": "1-130a69366a76307210a47069e158bfc6", + "oldid": "4eb390793de67c5117000361", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "No hay nada mas hermoso ver Como Dios ordena las piezas del rompecabezas!!!", + "created_at": "Fri Nov 04 07:15:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21409369, + -33.90068642 + ] + }, + "id": 132355246251974660, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355246251974656", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.90068642, + 151.21409369 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1569397941/IMG_7532_normal.JPG", + "profile_sidebar_fill_color": "c9c9c9", + "id": 235055500, + "profile_text_color": "1c1f23", + "followers_count": 61, + "profile_sidebar_border_color": "bfbfbf", + "id_str": "235055500", + "profile_background_color": "07090b", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 583, + "description": "I loVE jEsus WitH ALL my HEART!..!!.in JESUS hands are My dreAMS!!... My liFE is fOR him LOve yA GOD!. l.y ", + "friends_count": 136, + "location": "Sidney Australia", + "profile_link_color": "c34242", + "profile_image_url": "http://a0.twimg.com/profile_images/1569397941/IMG_7532_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/233609319/x62611169d4b3040dd628f7d0f49b2ba.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/233609319/x62611169d4b3040dd628f7d0f49b2ba.png", + "name": "AriadnA Trujillo", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "ariad_vg", + "notifications": null, + "url": null, + "created_at": "Fri Jan 07 06:54:20 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b4973", + "_rev": "1-4d3c4057a9cce15ec8d6c3a131f4bcaa", + "oldid": "4eb390803de67c5117000362", + "favorited": false, + "in_reply_to_user_id": 175883705, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@shugairi الناس يتواجدون حيث تلبى مطالبهم ،، وهذه ابسط حقوقهم", + "created_at": "Fri Nov 04 07:15:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132354177480404992", + "coordinates": { + "type": "Point", + "coordinates": [ + 138.61288303, + -34.92820382 + ] + }, + "id": 132355274773237760, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 175883705, + "id_str": "175883705", + "screen_name": "shugairi", + "name": "أحمد الشقيري" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132354177480405000, + "in_reply_to_screen_name": "shugairi", + "id_str": "132355274773237760", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.92820382, + 138.61288303 + ] + }, + "in_reply_to_user_id_str": "175883705", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1601301939/image_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 283471251, + "profile_text_color": "362720", + "followers_count": 6, + "profile_sidebar_border_color": "CC3366", + "id_str": "283471251", + "profile_background_color": "e6789d", + "listed_count": 0, + "utc_offset": 34200, + "statuses_count": 56, + "description": "", + "friends_count": 8, + "location": "Australia", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1601301939/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "أبرار الضيف الله", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 6, + "screen_name": "AbrarAldhaifalh", + "notifications": null, + "url": null, + "created_at": "Sun Apr 17 10:44:16 +0000 2011", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b4c51", + "_rev": "1-f904249ec0ac04789a800548b4c2b62d", + "oldid": "4eb390863de67c5117000363", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "So the crazy guy I see all the time is pushing a pram... With a dog in it! #craycray", + "created_at": "Fri Nov 04 07:15:37 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.93792183, + -37.83328108 + ] + }, + "id": 132355300765347840, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 75, + 84 + ], + "text": "craycray" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355300765347840", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.83328108, + 144.93792183 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/115646301/warhol-me_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 21726133, + "profile_text_color": "666666", + "followers_count": 189, + "profile_sidebar_border_color": "181A1E", + "id_str": "21726133", + "profile_background_color": "1A1B1F", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 3160, + "description": "Shoot for the moon. Even if you miss, you'll land among the stars.", + "friends_count": 309, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/115646301/warhol-me_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/232656848/twitback2.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/232656848/twitback2.jpg", + "name": "Lesley Weston", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "LesleyWeston11", + "notifications": null, + "url": "http://lesleyweston.com", + "created_at": "Tue Feb 24 03:42:08 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b5925", + "_rev": "1-558555d773f78406b7fa3d58460d34ef", + "oldid": "4eb390923de67c5117000364", + "contributors": null, + "truncated": false, + "text": "I'm at Queensland Performing Arts Centre (Grey St., at Melbourne St., South Brisbane) http://t.co/yl3gyAvN", + "in_reply_to_status_id": null, + "id": 132355348551049220, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 86, + 106 + ], + "url": "http://t.co/yl3gyAvN", + "expanded_url": "http://4sq.com/sxSDXx", + "display_url": "4sq.com/sxSDXx" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01936984, + -27.47456101 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355348551049216", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20416818, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20416818", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": -36000, + "statuses_count": 1679, + "description": "I'm a commercial photographer based in Brisbane, Australia - loving the job and each new challenge that I face every day.", + "friends_count": 167, + "location": "iPhone: -27.559235,152.978851", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Naz Mulla", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 354, + "screen_name": "nazmulla", + "notifications": null, + "url": "http://www.nazmulla.com", + "created_at": "Mon Feb 09 04:56:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.47456101, + 153.01936984 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:15:48 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1b669e", + "_rev": "1-64658547bf1393148df2a70978491d70", + "oldid": "4eb390933de67c5117000365", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Todo empieza a tener sentido !!! Estoy en tus manos Dios!!!", + "created_at": "Fri Nov 04 07:15:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.21409369, + -33.90068642 + ] + }, + "id": 132355355979157500, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355355979157505", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.90068642, + 151.21409369 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1569397941/IMG_7532_normal.JPG", + "profile_sidebar_fill_color": "c9c9c9", + "id": 235055500, + "profile_text_color": "1c1f23", + "followers_count": 61, + "profile_sidebar_border_color": "bfbfbf", + "id_str": "235055500", + "profile_background_color": "07090b", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 584, + "description": "I loVE jEsus WitH ALL my HEART!..!!.in JESUS hands are My dreAMS!!... My liFE is fOR him LOve yA GOD!. l.y ", + "friends_count": 136, + "location": "Sidney Australia", + "profile_link_color": "c34242", + "profile_image_url": "http://a0.twimg.com/profile_images/1569397941/IMG_7532_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/233609319/x62611169d4b3040dd628f7d0f49b2ba.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/233609319/x62611169d4b3040dd628f7d0f49b2ba.png", + "name": "AriadnA Trujillo", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "ariad_vg", + "notifications": null, + "url": null, + "created_at": "Fri Jan 07 06:54:20 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b75fe", + "_rev": "1-8f6ed179afca09098f489111c3c32001", + "oldid": "4eb390973de67c5117000366", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Home to Melbourne I go!", + "created_at": "Fri Nov 04 07:15:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.21288398, + -36.88605281 + ] + }, + "id": 132355373599432700, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355373599432704", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.88605281, + 144.21288398 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1613550091/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 21155498, + "profile_text_color": "333333", + "followers_count": 78, + "profile_sidebar_border_color": "ded116", + "id_str": "21155498", + "profile_background_color": "131516", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 8403, + "description": "", + "friends_count": 313, + "location": "Melbourne, Australia", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1613550091/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/352079683/fabric3.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/352079683/fabric3.jpg", + "name": "Gem H", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "GemHowley", + "notifications": null, + "url": null, + "created_at": "Wed Feb 18 01:22:16 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b8329", + "_rev": "1-f9231c403c9374c5cd1fbc9d61a8afb3", + "oldid": "4eb3909b3de67c5117000367", + "contributors": null, + "truncated": false, + "text": "Impromptu beer tasting! (@ Kerbside) http://t.co/20TTSZr8", + "in_reply_to_status_id": null, + "id": 132355387860066300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 37, + 57 + ], + "url": "http://t.co/20TTSZr8", + "expanded_url": "http://4sq.com/rWeuz1", + "display_url": "4sq.com/rWeuz1" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.03628922, + -27.45580739 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355387860066304", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/863633393/beautiful_alone_normal.jpeg", + "profile_sidebar_fill_color": "82ba34", + "id": 21075853, + "profile_text_color": "030303", + "followers_count": 1346, + "profile_sidebar_border_color": "000000", + "id_str": "21075853", + "profile_background_color": "000000", + "listed_count": 103, + "utc_offset": 36000, + "statuses_count": 23920, + "description": "Thirtysomething, music-loving English expat learning to love Brisbane. Interested in sustainability (especially transport) and kittens. Also a gin snob.", + "friends_count": 897, + "location": "Brisbane, Australia", + "profile_link_color": "2457b5", + "profile_image_url": "http://a3.twimg.com/profile_images/863633393/beautiful_alone_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/97931866/g_t.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/97931866/g_t.jpg", + "name": "Sarah Fallon", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 185, + "screen_name": "beautiful_alone", + "notifications": null, + "url": "http://www.last.fm/user/sarahfallon", + "created_at": "Tue Feb 17 09:22:03 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.45580739, + 153.03628922 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:15:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1b8f94", + "_rev": "1-5a06269b700bf242a661fc642f50396f", + "oldid": "4eb3909e3de67c5117000368", + "contributors": null, + "truncated": false, + "text": "I just ousted @nasbrenton as the mayor of manhor on @foursquare! http://t.co/8SBtijiy", + "in_reply_to_status_id": null, + "id": 132355397871874050, + "entities": { + "user_mentions": [ + { + "indices": [ + 14, + 25 + ], + "id": 20357947, + "id_str": "20357947", + "screen_name": "nasbrenton", + "name": "Nas Brenton" + }, + { + "indices": [ + 52, + 63 + ], + "id": 14120151, + "id_str": "14120151", + "screen_name": "foursquare", + "name": "foursquare" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 65, + 85 + ], + "url": "http://t.co/8SBtijiy", + "expanded_url": "http://4sq.com/cWDs2S", + "display_url": "4sq.com/cWDs2S" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.993121, + -37.853099 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355397871874048", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1268653684/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14116085, + "profile_text_color": "333333", + "followers_count": 451, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14116085", + "profile_background_color": "00c4ff", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 5495, + "description": "Mobile Creative Technologist. Apparently.", + "friends_count": 625, + "location": "Australia.", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1268653684/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/103918659/FabClouds.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/103918659/FabClouds.jpg", + "name": "Every Day A Story", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 378, + "screen_name": "everydayastory", + "notifications": null, + "url": "http://everydayastory.com", + "created_at": "Mon Mar 10 18:15:15 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.853099, + 144.993121 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:00 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1b91c1", + "_rev": "1-65f0f045e1d65a0233076d9a09e89b4b", + "oldid": "4eb390a43de67c5117000369", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Damn ponies. Get out of my head. #brony", + "created_at": "Fri Nov 04 07:16:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.1783563, + -37.9545966 + ] + }, + "id": 132355426053406720, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 33, + 39 + ], + "text": "brony" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355426053406720", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.9545966, + 145.1783563 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1580876639/OJnV0i4f_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 380647586, + "profile_text_color": "333333", + "followers_count": 6, + "profile_sidebar_border_color": "C0DEED", + "id_str": "380647586", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 308, + "description": "a mystery, wrapped in a puzzle, locked in a chest with a missing key", + "friends_count": 51, + "location": "Australia.", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1580876639/OJnV0i4f_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "D'Koda", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "D_Koda", + "notifications": null, + "url": null, + "created_at": "Tue Sep 27 00:32:54 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b96db", + "_rev": "1-0daa011378b65a048784cba2aa019c15", + "oldid": "4eb390a43de67c511700036a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Ofcourse.the black.guy gets pulled.oover for each and every security check at the airport.", + "created_at": "Fri Nov 04 07:16:07 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.9648614, + -31.9377414 + ] + }, + "id": 132355427093581820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355427093581824", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.9377414, + 115.9648614 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610154170/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 84042676, + "profile_text_color": "666666", + "followers_count": 1203, + "profile_sidebar_border_color": "181A1E", + "id_str": "84042676", + "profile_background_color": "1A1B1F", + "listed_count": 106, + "utc_offset": 28800, + "statuses_count": 41454, + "description": "I eat bananas and small puppies.", + "friends_count": 599, + "location": "Perth, Western Australia", + "profile_link_color": "32a0c2", + "profile_image_url": "http://a2.twimg.com/profile_images/1610154170/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/56659324/bg.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/56659324/bg.jpg", + "name": "Sachee Perera", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 411, + "screen_name": "sach33", + "notifications": null, + "url": "http://sach.ee", + "created_at": "Wed Oct 21 09:44:31 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1b9b8a", + "_rev": "1-c42fad7ea63336ed7fb13b32812201e1", + "oldid": "4eb390a83de67c511700036b", + "contributors": null, + "truncated": false, + "text": "Mohitos with the girls - happy Friday! @ Coda Bar + Restaurant http://t.co/wnj2Ll3Y", + "in_reply_to_status_id": null, + "id": 132355442146942980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 64, + 84 + ], + "url": "http://t.co/wnj2Ll3Y", + "expanded_url": "http://instagr.am/p/SqatT/", + "display_url": "instagr.am/p/SqatT/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.970024, + -37.815465 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355442146942976", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1390548223/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 124946720, + "profile_text_color": "333333", + "followers_count": 585, + "profile_sidebar_border_color": "C0DEED", + "id_str": "124946720", + "profile_background_color": "C0DEED", + "listed_count": 29, + "utc_offset": 36000, + "statuses_count": 3376, + "description": "I have a blog with @Sas_itpleasesus. Our blog is about the things in life that please us: eating, drinking, cooking, friendship and family", + "friends_count": 351, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1390548223/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/86774773/DSC_1478.JPG", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/86774773/DSC_1478.JPG", + "name": "Emily", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 20, + "screen_name": "em_itpleasesus", + "notifications": null, + "url": "http://itpleasesus.com", + "created_at": "Sun Mar 21 04:13:38 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.815465, + 144.970024 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1b9c55", + "_rev": "1-c07fe087bfeac241571d832568601112", + "oldid": "4eb390a93de67c511700036c", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Jajaja estoy esta super!! Escribe en google \"do a barrel roll\" o \"z or r twice\" y la pagina de google se volte :o jajajaja esta buenoo", + "created_at": "Fri Nov 04 07:16:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.08405846, + -33.86550432 + ] + }, + "id": 132355448241270780, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355448241270784", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86550432, + 151.08405846 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527926522/image_normal.jpg", + "profile_sidebar_fill_color": "E5507E", + "id": 161866711, + "profile_text_color": "362720", + "followers_count": 28, + "profile_sidebar_border_color": "CC3366", + "id_str": "161866711", + "profile_background_color": "FF6699", + "listed_count": 0, + "utc_offset": -21600, + "statuses_count": 1021, + "description": "la vida me esta dando bastantes cosas en que penasar... ", + "friends_count": 67, + "location": "", + "profile_link_color": "B40B43", + "profile_image_url": "http://a2.twimg.com/profile_images/1527926522/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme11/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme11/bg.gif", + "name": "laura mustafa", + "lang": "es", + "profile_background_tile": true, + "favourites_count": 30, + "screen_name": "laurismustafa", + "notifications": null, + "url": null, + "created_at": "Fri Jul 02 00:29:10 +0000 2010", + "contributors_enabled": false, + "time_zone": "Central America", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ba4fc", + "_rev": "1-c26ac2e2b22503127b69d7f3b0167f37", + "oldid": "4eb390aa3de67c511700036d", + "favorited": false, + "in_reply_to_user_id": 149495489, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@kjmci @arkenstone @alaero so not upside down fireworks? Damn.", + "created_at": "Fri Nov 04 07:16:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355180548198400", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98124724, + -37.84770052 + ] + }, + "id": 132355449273073660, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 6 + ], + "id": 149495489, + "id_str": "149495489", + "screen_name": "kjmci", + "name": "Kieran Mc" + }, + { + "indices": [ + 7, + 18 + ], + "id": 8700842, + "id_str": "8700842", + "screen_name": "arkenstone", + "name": "arkenstone" + }, + { + "indices": [ + 19, + 26 + ], + "id": 14880537, + "id_str": "14880537", + "screen_name": "alaero", + "name": "alaero" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355180548198400, + "in_reply_to_screen_name": "kjmci", + "id_str": "132355449273073664", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84770052, + 144.98124724 + ] + }, + "in_reply_to_user_id_str": "149495489", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504411463/bok_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15420301, + "profile_text_color": "333333", + "followers_count": 323, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15420301", + "profile_background_color": "C0DEED", + "listed_count": 30, + "utc_offset": 36000, + "statuses_count": 10417, + "description": "Author of iTransit, tramTRACKER for iPhone and other stuff. Developer in Melbourne. All opinions my own.", + "friends_count": 133, + "location": "Melbourne", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1504411463/bok_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robert Amos", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 36, + "screen_name": "bok_", + "notifications": null, + "url": null, + "created_at": "Sun Jul 13 23:59:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ba53f", + "_rev": "1-19460ed83f44226116e890440f3fe8f2", + "oldid": "4eb390aa3de67c511700036e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.nibirutech.com\" rel=\"nofollow\">TwitBird</a>", + "text": "Elvis' Memphis Mafia all wore gold & diamond encrusted rings & belt buckles with 'TCB' (Taking Care of Business). Pure class.", + "created_at": "Fri Nov 04 07:16:13 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.30905008, + -33.67389571 + ] + }, + "id": 132355452276195330, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355452276195329", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.67389571, + 151.30905008 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1004467553/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 135866350, + "profile_text_color": "333333", + "followers_count": 152, + "profile_sidebar_border_color": "C0DEED", + "id_str": "135866350", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": null, + "statuses_count": 4972, + "description": "Northern Irish Dad, husband, runner, surfer, football obsessive. Only get paid to be project manager.", + "friends_count": 222, + "location": "Sydney's Northern Beaches", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1004467553/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Will Brown", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 13, + "screen_name": "willbrownsydney", + "notifications": null, + "url": null, + "created_at": "Thu Apr 22 12:35:55 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1baee7", + "_rev": "1-e3c473c350563b4bf8983428a7cf6ea8", + "oldid": "4eb390ad3de67c511700036f", + "favorited": false, + "in_reply_to_user_id": 13152912, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@ctudball you really are sick!", + "created_at": "Fri Nov 04 07:16:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355380771684352", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.03419751, + -37.93334778 + ] + }, + "id": 132355463714062340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 13152912, + "id_str": "13152912", + "screen_name": "ctudball", + "name": "Cameron Tudball" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355380771684350, + "in_reply_to_screen_name": "ctudball", + "id_str": "132355463714062337", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.93334778, + 145.03419751 + ] + }, + "in_reply_to_user_id_str": "13152912", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1545038715/73024_10150291588070408_860050407_15005850_109757_n_normal.jpg", + "profile_sidebar_fill_color": "000b17", + "id": 11926682, + "profile_text_color": "03a858", + "followers_count": 242, + "profile_sidebar_border_color": "f7b565", + "id_str": "11926682", + "profile_background_color": "001329", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 2349, + "description": "graphic designer for #LCA2012 visit http://www.lcaunderthestars.org.au for more info", + "friends_count": 363, + "location": "", + "profile_link_color": "e07b00", + "profile_image_url": "http://a2.twimg.com/profile_images/1545038715/73024_10150291588070408_860050407_15005850_109757_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/156688925/x4143be4773e82de714381f4a81ba3e6.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/156688925/x4143be4773e82de714381f4a81ba3e6.jpg", + "name": "Sae Ra Germaine", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "ms_mary_mac", + "notifications": null, + "url": "http://www.ms-mary-mac.com", + "created_at": "Mon Jan 07 02:48:52 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1bafb8", + "_rev": "1-dcfe0f1af35ff0d18b9298e00f50cf79", + "oldid": "4eb390af3de67c5117000370", + "contributors": null, + "truncated": false, + "text": "Furniture Australia - Furnishing Large Rooms http://t.co/lV1drfQb", + "in_reply_to_status_id": null, + "id": 132355471272189950, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 45, + 65 + ], + "url": "http://t.co/lV1drfQb", + "expanded_url": "http://bit.ly/vGjlhr", + "display_url": "bit.ly/vGjlhr" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.763594, + -32.084713 + ] + }, + "source": "<a href=\"http://getreachcast.com\" rel=\"nofollow\">ReachCast Australia</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355471272189953", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1539366869/Twitter_Logo_normal.png", + "profile_sidebar_fill_color": "bcdceb", + "id": 369451522, + "profile_text_color": "333333", + "followers_count": 576, + "profile_sidebar_border_color": "429bc7", + "id_str": "369451522", + "profile_background_color": "6ac5f2", + "listed_count": 1, + "utc_offset": 28800, + "statuses_count": 15, + "description": "Bella Furniture is an online, fully customisable luxury furniture retailer that provides free delivery & installation (Aus Wide). Reach Us At: 08 6555 3498", + "friends_count": 653, + "location": "WA", + "profile_link_color": "0084b4", + "profile_image_url": "http://a2.twimg.com/profile_images/1539366869/Twitter_Logo_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/333070326/Background2.png", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/333070326/Background2.png", + "name": "Bella Furniture", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Bella_Furniture", + "notifications": null, + "url": "http://www.bellafurnitureluxuryonline.com.au", + "created_at": "Wed Sep 07 11:30:39 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.084713, + 115.763594 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:18 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1bb03b", + "_rev": "1-5e5d9eb10e8fd629d44ebe2c6c67debd", + "oldid": "4eb390b03de67c5117000371", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@LeagueFreak: #3WordsAfterSex thanks Amy Adams.” shake n bake", + "created_at": "Fri Nov 04 07:16:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.05998998, + -33.85429823 + ] + }, + "id": 132355477068726270, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 13 + ], + "id": 83006345, + "id_str": "83006345", + "screen_name": "LeagueFreak", + "name": "League Freak" + } + ], + "hashtags": [ + { + "indices": [ + 15, + 30 + ], + "text": "3WordsAfterSex" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355477068726272", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85429823, + 151.05998998 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1578403188/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 380125668, + "profile_text_color": "333333", + "followers_count": 92, + "profile_sidebar_border_color": "C0DEED", + "id_str": "380125668", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 461, + "description": "Riff Born & Bred Since 1971, Panthers & LFC Man to the Core, Sports Lover, Bean Counter Extraordinaire & Father of Two Great Boys", + "friends_count": 912, + "location": "Riff Town Of Course", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1578403188/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Riffy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "RiffMan771", + "notifications": null, + "url": null, + "created_at": "Mon Sep 26 03:32:12 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1bb106", + "_rev": "1-a46ab45ee6e83a5268819a0a2ec10d0b", + "oldid": "4eb390b23de67c5117000372", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "mmm, frites and mayo. Belgian health food", + "created_at": "Fri Nov 04 07:16:21 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.98082958, + -37.84826069 + ] + }, + "id": 132355484404551680, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355484404551680", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.84826069, + 144.98082958 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1570225831/no_beardy_me_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 19267585, + "profile_text_color": "333333", + "followers_count": 1284, + "profile_sidebar_border_color": "C0DEED", + "id_str": "19267585", + "profile_background_color": "C0DEED", + "listed_count": 96, + "utc_offset": 36000, + "statuses_count": 13553, + "description": "bookish sort; enthusiast of old cars; collector of watches, etc. 'A droll bugger', apparently. Grumpy, frequently. Insomniac, often. Dipsomaniac, always.", + "friends_count": 1132, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1570225831/no_beardy_me_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Tim Coronel", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "Tim_Coronel", + "notifications": null, + "url": "http://twitter.com/#!/Tim_Coronel/media/grid", + "created_at": "Wed Jan 21 00:40:32 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1bbae5", + "_rev": "1-e08629fa12e5bbb95abd22b436e65087", + "oldid": "4eb390b33de67c5117000373", + "contributors": null, + "truncated": false, + "text": "Nobbies, BRAH @ Phillip Island http://t.co/prjqx8DE", + "in_reply_to_status_id": null, + "id": 132355487252496380, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 32, + 52 + ], + "url": "http://t.co/prjqx8DE", + "expanded_url": "http://instagr.am/p/Sqa43/", + "display_url": "instagr.am/p/Sqa43/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.2424, + -38.47223 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355487252496384", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1557358395/redhair-baw_normal.jpg", + "profile_sidebar_fill_color": "bdbbb2", + "id": 39001582, + "profile_text_color": "333333", + "followers_count": 51, + "profile_sidebar_border_color": "bdbbb2", + "id_str": "39001582", + "profile_background_color": "94918e", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 990, + "description": "i ♥ jonny craig\n~ dance gavin dance is my life", + "friends_count": 120, + "location": "Whitsundays, Qld", + "profile_link_color": "363330", + "profile_image_url": "http://a1.twimg.com/profile_images/1557358395/redhair-baw_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/298293645/Background__2_.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/298293645/Background__2_.jpg", + "name": "Celina Crawshaw", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 26, + "screen_name": "wahswarc", + "notifications": null, + "url": "http://celinacrawshaw4l.tumblr.com/", + "created_at": "Sun May 10 05:14:38 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.47223, + 145.2424 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:21 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1bc242", + "_rev": "1-9e3b3853caf9980ede11adcee1d6a9ee", + "oldid": "4eb390b93de67c5117000374", + "contributors": null, + "truncated": false, + "text": "I'm at Brisbane Convention & Exhibition Centre (Merivale St, at Glenelg St, South Brisbane) w/ 2 others http://t.co/pLqUMOBH", + "in_reply_to_status_id": null, + "id": 132355514813255680, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 104, + 124 + ], + "url": "http://t.co/pLqUMOBH", + "expanded_url": "http://4sq.com/uaoJjD", + "display_url": "4sq.com/uaoJjD" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.01901579, + -27.47804483 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355514813255680", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 20416818, + "profile_text_color": "333333", + "followers_count": 204, + "profile_sidebar_border_color": "C0DEED", + "id_str": "20416818", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": -36000, + "statuses_count": 1680, + "description": "I'm a commercial photographer based in Brisbane, Australia - loving the job and each new challenge that I face every day.", + "friends_count": 167, + "location": "iPhone: -27.559235,152.978851", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/83205459/nmpsq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Naz Mulla", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 354, + "screen_name": "nazmulla", + "notifications": null, + "url": "http://www.nazmulla.com", + "created_at": "Mon Feb 09 04:56:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.47804483, + 153.01901579 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:28 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1bd15c", + "_rev": "1-ed4784784c7fed01c226dc08a5a878fc", + "oldid": "4eb390b93de67c5117000375", + "contributors": null, + "truncated": false, + "text": "I'm at Madame Brussels w/ @nikkers5 http://t.co/7fgUQOtL", + "in_reply_to_status_id": null, + "id": 132355515215904770, + "entities": { + "user_mentions": [ + { + "indices": [ + 26, + 35 + ], + "id": 20897610, + "id_str": "20897610", + "screen_name": "nikkers5", + "name": "Nicole Brockhouse" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 36, + 56 + ], + "url": "http://t.co/7fgUQOtL", + "expanded_url": "http://4sq.com/ukuJfd", + "display_url": "4sq.com/ukuJfd" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.971508, + -37.811851 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355515215904768", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1577334659/image_normal.jpg", + "profile_sidebar_fill_color": "f6ffd1", + "id": 20824745, + "profile_text_color": "333333", + "followers_count": 107, + "profile_sidebar_border_color": "fff8ad", + "id_str": "20824745", + "profile_background_color": "FFF04D", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2516, + "description": "Rugby League & Union fan. Melbourne Storm & Melbourne Rebels member, learning photography as hobby. Forgetful twitter updater-er! Licks to lick stamps.", + "friends_count": 309, + "location": "Melbourne, Australia", + "profile_link_color": "0099CC", + "profile_image_url": "http://a2.twimg.com/profile_images/1577334659/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/204722606/rainbowsnall.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/204722606/rainbowsnall.jpg", + "name": "Janet Moffat", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "Moffierocks", + "notifications": null, + "url": null, + "created_at": "Sat Feb 14 01:51:46 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.811851, + 144.971508 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:28 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1bda24", + "_rev": "1-06463c7a30a3ac07ea9be93695637aad", + "oldid": "4eb390c03de67c5117000376", + "contributors": null, + "truncated": false, + "text": "Country landscape @ Geelong http://t.co/OMnyFmUV", + "in_reply_to_status_id": null, + "id": 132355542575366140, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 29, + 49 + ], + "url": "http://t.co/OMnyFmUV", + "expanded_url": "http://instagr.am/p/SqbDp/", + "display_url": "instagr.am/p/SqbDp/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.3013, + -38.1356 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "id_str": "132355542575366145", + "retweet_count": 0, + "in_reply_to_user_id": null, + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "id": 251037444, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1404517536/6_normal.jpg", + "profile_sidebar_fill_color": "000000", + "geo_enabled": true, + "profile_text_color": "fafafa", + "followers_count": 17, + "protected": false, + "location": "Melbourne, Australia", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 331, + "description": "cherish every moment everyday! :)", + "friends_count": 77, + "profile_link_color": "d40707", + "profile_image_url": "http://a1.twimg.com/profile_images/1404517536/6_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/279569084/1.1.jpg", + "id_str": "251037444", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/279569084/1.1.jpg", + "name": "Khai L Chan", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "chankhailing", + "notifications": null, + "url": "http://chankhailing.blogspot.com/", + "created_at": "Sat Feb 12 09:22:12 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "profile_sidebar_border_color": "000000", + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -38.1356, + 144.3013 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:35 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1be435", + "_rev": "1-fad7475cf003102c035bad8e2e0c23c1", + "oldid": "4eb390c23de67c5117000377", + "favorited": false, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "โกรธตอนให้รอ แต่พอเห็นหน้าแล้วก็โกรธไม่ลง", + "created_at": "Fri Nov 04 07:16:36 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20261607, + -33.88281945 + ] + }, + "in_reply_to_user_id_str": null, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "id_str": "132355550066388992", + "place": null, + "in_reply_to_user_id": null, + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88281945, + 151.20261607 + ] + }, + "id": 132355550066389000, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "id": 166073690, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616267388/image_normal.jpg", + "profile_sidebar_fill_color": "E6F6F9", + "geo_enabled": true, + "profile_text_color": "333333", + "followers_count": 83, + "protected": false, + "location": "Sydney", + "profile_background_color": "DBE9ED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2678, + "description": "Everything I like is either illegal, immortal, fattening, addictive, expensive, or impossible.\r\nMD 80// Ascham 10// Cofa 14", + "friends_count": 151, + "profile_link_color": "CC3366", + "profile_image_url": "http://a2.twimg.com/profile_images/1616267388/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme17/bg.gif", + "id_str": "166073690", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme17/bg.gif", + "name": "Nat Soontornvinate", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 13, + "screen_name": "natsoont", + "notifications": null, + "url": null, + "created_at": "Tue Jul 13 07:31:35 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "profile_sidebar_border_color": "DBE9ED", + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1bee0d", + "_rev": "1-bd9992a346281492816ff68353de2a9b", + "oldid": "4eb390c73de67c5117000378", + "contributors": null, + "truncated": false, + "text": "Omfg #pokèmon heaven @ JB Hi-Fi http://t.co/u6ovnwh7", + "in_reply_to_status_id": null, + "id": 132355570106765310, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 5, + 13 + ], + "text": "pokèmon" + } + ], + "urls": [ + { + "indices": [ + 33, + 53 + ], + "url": "http://t.co/u6ovnwh7", + "expanded_url": "http://instagr.am/p/SqbI3/", + "display_url": "instagr.am/p/SqbI3/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9622, + -37.812225 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355570106765312", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1280347732/portalcake_normal.jpg", + "profile_sidebar_fill_color": "36343d", + "id": 6572902, + "profile_text_color": "666666", + "followers_count": 148, + "profile_sidebar_border_color": "181A1E", + "id_str": "6572902", + "profile_background_color": "000000", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 3504, + "description": "I play some games, I make some videos, I take some photos, and I talk a bunch. Can't get enough of me on YouTube? Follow me on Twitter!", + "friends_count": 89, + "location": "http://www.twitch.tv/sambonz", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1280347732/portalcake_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/320743068/sambonz_twitter_bgroundFixedFont_20110827_vFinalGlowCompressed.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/320743068/sambonz_twitter_bgroundFixedFont_20110827_vFinalGlowCompressed.jpg", + "name": "Sambo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "sambonz", + "notifications": null, + "url": "http://www.youtube.com/sambonz", + "created_at": "Mon Jun 04 15:40:00 +0000 2007", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.812225, + 144.9622 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:41 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1bfc13", + "_rev": "1-a8eb3c4cd6d09c9055445b635bb05cc3", + "oldid": "4eb390c83de67c5117000379", + "favorited": false, + "in_reply_to_user_id": 15436644, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@springah @lil_lisamarie so Grade A bullplop all round then!", + "created_at": "Fri Nov 04 07:16:43 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132351518832726016", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.87034871, + -32.73198169 + ] + }, + "id": 132355577006407680, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 15436644, + "id_str": "15436644", + "screen_name": "springah", + "name": "springah" + }, + { + "indices": [ + 10, + 24 + ], + "id": 24845570, + "id_str": "24845570", + "screen_name": "lil_lisamarie", + "name": "lisa thompson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132351518832726020, + "in_reply_to_screen_name": "springah", + "id_str": "132355577006407680", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.73198169, + 151.87034871 + ] + }, + "in_reply_to_user_id_str": "15436644", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1533487871/275158_717925783_702497_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 3036281, + "profile_text_color": "666666", + "followers_count": 1974, + "profile_sidebar_border_color": "181A1E", + "id_str": "3036281", + "profile_background_color": "1A1B1F", + "listed_count": 99, + "utc_offset": 36000, + "statuses_count": 22250, + "description": "ERP Analyst specialising in HR. Fiancée of @ashleigh_carin, proud father of two [powered by coffee]", + "friends_count": 2074, + "location": "Newcastle & Sydney, NSW", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/1533487871/275158_717925783_702497_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Nicholas Rayner", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 37, + "screen_name": "aussienick", + "notifications": null, + "url": "http://nicholasrayner.com/blog", + "created_at": "Sat Mar 31 03:42:18 +0000 2007", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1bfe66", + "_rev": "1-5fb86412f3ed061f57f7a849b41c3b66", + "oldid": "4eb390c93de67c511700037a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Dj Makcik Gila beltin out your fav choons and ten ringgit teh-o-ais limau jugs at the bar pwoah @kevmlow @jeanotron @whiteroutine nostalgix", + "created_at": "Fri Nov 04 07:16:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95910874, + -37.79867496 + ] + }, + "id": 132355582396088320, + "entities": { + "user_mentions": [ + { + "indices": [ + 96, + 104 + ], + "id": 270711871, + "id_str": "270711871", + "screen_name": "kevmlow", + "name": "Kevin Low" + }, + { + "indices": [ + 105, + 115 + ], + "id": 45820941, + "id_str": "45820941", + "screen_name": "jeanotron", + "name": "jeanotron" + }, + { + "indices": [ + 116, + 129 + ], + "id": 45012317, + "id_str": "45012317", + "screen_name": "whiteroutine", + "name": "Steph Chng" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355582396088320", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.79867496, + 144.95910874 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1402091282/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 304920054, + "profile_text_color": "333333", + "followers_count": 12, + "profile_sidebar_border_color": "C0DEED", + "id_str": "304920054", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 172, + "description": null, + "friends_count": 8, + "location": null, + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1402091282/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Lee Chee Aun", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "lycheeaun", + "notifications": null, + "url": null, + "created_at": "Wed May 25 10:10:05 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c0d3b", + "_rev": "1-1ca289fb5b27206685e4e328eed4b70f", + "oldid": "4eb390ca3de67c511700037b", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "So because I can't work until half 1 tonight my boss has told me not to bother coming in how does that make sense?", + "created_at": "Fri Nov 04 07:16:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.70454937, + -31.67981797 + ] + }, + "id": 132355584988151800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355584988151808", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -31.67981797, + 115.70454937 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1516470008/oldschool_normal.jpg", + "profile_sidebar_fill_color": "2900CB", + "id": 25048672, + "profile_text_color": "E6D306", + "followers_count": 231, + "profile_sidebar_border_color": "EED00B", + "id_str": "25048672", + "profile_background_color": "0A01AD", + "listed_count": 6, + "utc_offset": 28800, + "statuses_count": 2081, + "description": "Man of many thoughts.... mainly wrong and discusting\r\nCardiff City, Football, Wrestling, Music and banter all in good fun\r\nMost things I say on here are a JOKE", + "friends_count": 425, + "location": "Brecon South Wales", + "profile_link_color": "0A0A01", + "profile_image_url": "http://a2.twimg.com/profile_images/1516470008/oldschool_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/277498779/x87c925940cc04d1c098e47a4fbd29d0.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/277498779/x87c925940cc04d1c098e47a4fbd29d0.jpg", + "name": "Benji Price", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 3, + "screen_name": "thebenprice", + "notifications": null, + "url": "http://facebook.com/thebenprice", + "created_at": "Wed Mar 18 09:16:34 +0000 2009", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c1233", + "_rev": "1-1701f9be10be38666e2045860f4c1ad1", + "oldid": "4eb390cc3de67c511700037c", + "contributors": null, + "truncated": false, + "text": "I'm at Armidale Station http://t.co/lAkHeIJl", + "in_reply_to_status_id": null, + "id": 132355592110092290, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 24, + 44 + ], + "url": "http://t.co/lAkHeIJl", + "expanded_url": "http://4sq.com/uEbBtG", + "display_url": "4sq.com/uEbBtG" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.65220499, + -30.517023 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355592110092288", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1378493770/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 309501165, + "profile_text_color": "333333", + "followers_count": 467, + "profile_sidebar_border_color": "C0DEED", + "id_str": "309501165", + "profile_background_color": "C0DEED", + "listed_count": 22, + "utc_offset": null, + "statuses_count": 3663, + "description": "The adventures of one Aussie rogue both at home and abroad. With just a dash of sex, romance, and alcoholism ", + "friends_count": 553, + "location": "The Long and Winding Road", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1378493770/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Aussie on the Road", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "aussieontheroad", + "notifications": null, + "url": "http://www.aussieontheroad.com", + "created_at": "Thu Jun 02 05:56:46 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -30.517023, + 151.65220499 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:46 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c1e30", + "_rev": "1-56db000687e3e9545a1b8ac29df28eab", + "oldid": "4eb390ce3de67c511700037d", + "contributors": null, + "truncated": false, + "text": "I'm at Melbourne Central Shopping Centre (211 La Trobe St., Melbourne) w/ 7 others http://t.co/qSQtOLtc", + "in_reply_to_status_id": null, + "id": 132355603724124160, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 83, + 103 + ], + "url": "http://t.co/qSQtOLtc", + "expanded_url": "http://4sq.com/tYGJ37", + "display_url": "4sq.com/tYGJ37" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96311903, + -37.81052987 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355603724124160", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1172841729/p_large_eOiE_15326i016062_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 17612855, + "profile_text_color": "3C3940", + "followers_count": 28, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "17612855", + "profile_background_color": "0099B9", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 313, + "description": "", + "friends_count": 148, + "location": "Fuzhou", + "profile_link_color": "0099B9", + "profile_image_url": "http://a2.twimg.com/profile_images/1172841729/p_large_eOiE_15326i016062_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "Alan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 126, + "screen_name": "gilzero", + "notifications": null, + "url": null, + "created_at": "Tue Nov 25 05:02:49 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81052987, + 144.96311903 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:49 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c21b6", + "_rev": "1-32f2b248fd0008d82c55aa858eb2e6d8", + "oldid": "4eb390d43de67c511700037e", + "favorited": false, + "in_reply_to_user_id": 20652674, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@randallgill That's hillarious, they all have so much less media training than today's players", + "created_at": "Fri Nov 04 07:16:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132339308442030081", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.22682881, + -36.44179236 + ] + }, + "id": 132355627648421890, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 20652674, + "id_str": "20652674", + "screen_name": "randallgill", + "name": "Randall Gillespie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132339308442030080, + "in_reply_to_screen_name": "randallgill", + "id_str": "132355627648421888", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.44179236, + 145.22682881 + ] + }, + "in_reply_to_user_id_str": "20652674", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1211795093/Summer-Holiday-2010-11-4_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 14354451, + "profile_text_color": "333333", + "followers_count": 2981, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "14354451", + "profile_background_color": "9AE4E8", + "listed_count": 50, + "utc_offset": 36000, + "statuses_count": 7682, + "description": "Happily Married to @marlain, Three Great Kids, Construction Worker & Internet Tragic! ", + "friends_count": 2309, + "location": "Shepparton Victoria Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1211795093/Summer-Holiday-2010-11-4_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/3861082/gunpowder2.gif", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/3861082/gunpowder2.gif", + "name": "Kevin Perry", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 44, + "screen_name": "kevmarl", + "notifications": null, + "url": "http://kevmarl.com", + "created_at": "Thu Apr 10 19:40:27 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c29f2", + "_rev": "1-e10a34503a7d9598517ef935d11a2405", + "oldid": "4eb390d53de67c511700037f", + "favorited": false, + "in_reply_to_user_id": 28278655, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@Spoonyman of course I'll say hi! And I'll try and keep the discombobulation to a minimum", + "created_at": "Fri Nov 04 07:16:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132276740839047169", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.061762, + -33.94939147 + ] + }, + "id": 132355627929452540, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 28278655, + "id_str": "28278655", + "screen_name": "Spoonyman", + "name": "Spoonman" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132276740839047170, + "in_reply_to_screen_name": "Spoonyman", + "id_str": "132355627929452544", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.94939147, + 151.061762 + ] + }, + "in_reply_to_user_id_str": "28278655", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/76714967/1009416333_l_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 20434305, + "profile_text_color": "666666", + "followers_count": 130, + "profile_sidebar_border_color": "181A1E", + "id_str": "20434305", + "profile_background_color": "1A1B1F", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 4848, + "description": "Just tryin to make this world a lil more enjoyable...", + "friends_count": 309, + "location": "I SEE TOWELS!!!", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/76714967/1009416333_l_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Samuel Kiejda", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 12, + "screen_name": "Drpepper1988", + "notifications": null, + "url": "http://www.sgakco.com", + "created_at": "Mon Feb 09 13:22:41 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c3424", + "_rev": "1-cfd6320a3e29e58ed7c62a5950e368b4", + "oldid": "4eb390d83de67c5117000380", + "contributors": null, + "truncated": false, + "text": "Hair cut. (@ Mods And Rockers) http://t.co/QGiPmgf9", + "in_reply_to_status_id": null, + "id": 132355645943980030, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 31, + 51 + ], + "url": "http://t.co/QGiPmgf9", + "expanded_url": "http://4sq.com/uBgnKs", + "display_url": "4sq.com/uBgnKs" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.429594, + -27.999571 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355645943980032", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1465478185/Qld_20Territorial_20Waters_2001-20110717-00185_normal.jpg", + "profile_sidebar_fill_color": "C0DFEC", + "id": 88835925, + "profile_text_color": "333333", + "followers_count": 38, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "88835925", + "profile_background_color": "022330", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 374, + "description": "Trying to see as much of this rock as I can... Wish I would have went into sports broadcasting so I could get paid to talk about the Leafs.", + "friends_count": 279, + "location": "Surfer's Paradise", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1465478185/Qld_20Territorial_20Waters_2001-20110717-00185_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", + "name": "Tyler Ell", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "tylerguyell", + "notifications": null, + "url": null, + "created_at": "Tue Nov 10 03:00:47 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.999571, + 153.429594 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:16:59 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c3df8", + "_rev": "1-0a0606552525ec71dbbee93622917451", + "oldid": "4eb390da3de67c5117000381", + "contributors": null, + "truncated": false, + "text": "K yeah http://t.co/ShtVMm4m", + "in_reply_to_status_id": null, + "id": 132355648963887100, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY4wvDCQAADsgf.jpg", + "expanded_url": "http://twitter.com/Ssaysettha/status/132355648963887104/photo/1", + "display_url": "pic.twitter.com/ShtVMm4m", + "url": "http://t.co/ShtVMm4m", + "sizes": { + "large": { + "h": 640, + "w": 640, + "resize": "fit" + }, + "small": { + "h": 340, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 600, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132355648968081408", + "indices": [ + 7, + 27 + ], + "type": "photo", + "id": 132355648968081400, + "media_url": "http://p.twimg.com/AdY4wvDCQAADsgf.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.04374353, + -37.88959199 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355648963887104", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621717664/Photo_on_2011-11-04_at_18.01__6_normal.jpg", + "profile_sidebar_fill_color": "e7e8d6", + "id": 222089335, + "profile_text_color": "333333", + "followers_count": 16, + "profile_sidebar_border_color": "8ddae0", + "id_str": "222089335", + "profile_background_color": "2d403d", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 60, + "description": "Me---Sibounheuang Saysettha(KoNG) (LaotianLAOS,vientiane) currently live in melbourne, work hard play hard $$$$$$$$$$$$$$$$$$$$$", + "friends_count": 27, + "location": "melbourne", + "profile_link_color": "185c39", + "profile_image_url": "http://a3.twimg.com/profile_images/1621717664/Photo_on_2011-11-04_at_18.01__6_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/353198404/1348.bag-of-money.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/353198404/1348.bag-of-money.jpg", + "name": "Ssaysettha", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Ssaysettha", + "notifications": null, + "url": "http://www.facebook.com/Saysettha.s", + "created_at": "Thu Dec 02 12:42:03 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.88959199, + 145.04374353 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:17:01 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c40ad", + "_rev": "1-99a0383f8a11a609ede24aac6272f9f8", + "oldid": "4eb390db3de67c5117000382", + "favorited": false, + "in_reply_to_user_id": 293876458, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@RicanSTEEZ \n\nAw sweetie my cock just leapt when it saw your gorgeous face", + "created_at": "Fri Nov 04 07:17:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.92549541, + -32.04725766 + ] + }, + "id": 132355654592626690, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 293876458, + "id_str": "293876458", + "screen_name": "RicanSTEEZ", + "name": "Luis Santiaqo" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "RicanSTEEZ", + "id_str": "132355654592626688", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04725766, + 115.92549541 + ] + }, + "in_reply_to_user_id_str": "293876458", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608974720/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 315725052, + "profile_text_color": "333333", + "followers_count": 909, + "profile_sidebar_border_color": "C0DEED", + "id_str": "315725052", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": null, + "statuses_count": 9576, + "description": "want 2 chat , follow me ! i follow back . i like boys !!", + "friends_count": 1709, + "location": "australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608974720/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Bernie Boo 14 yo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "bernieshinnick", + "notifications": null, + "url": null, + "created_at": "Sun Jun 12 10:23:07 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c4ced", + "_rev": "1-6d0c5d022fd936b8b8b6cc31cfe209d0", + "oldid": "4eb390dc3de67c5117000383", + "contributors": null, + "truncated": false, + "text": "“@MiaFreedman:Its Friday afternoon. Is now a bad time to ask about your relationship with alcohol? http://t.co/jpSpW0IA” great time, cheers", + "in_reply_to_status_id": null, + "id": 132355659881644030, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 13 + ], + "id": 19178668, + "id_str": "19178668", + "screen_name": "MiaFreedman", + "name": "Mia Freedman Mamamia" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 100, + 120 + ], + "url": "http://t.co/jpSpW0IA", + "expanded_url": "http://bit.ly/ubtyK3", + "display_url": "bit.ly/ubtyK3" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0440849, + -33.86243838 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355659881644032", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608163861/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 328340294, + "profile_text_color": "333333", + "followers_count": 24, + "profile_sidebar_border_color": "C0DEED", + "id_str": "328340294", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 200, + "description": null, + "friends_count": 130, + "location": "Sydney\n", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608163861/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Erin Taylor", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "erinlouissa", + "notifications": null, + "url": null, + "created_at": "Sun Jul 03 05:32:30 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86243838, + 151.0440849 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:17:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c581e", + "_rev": "1-43d521ca87bc67e643ad2a71df4f0689", + "oldid": "4eb390eb3de67c5117000384", + "favorited": false, + "in_reply_to_user_id": 36912422, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@joshstarkey affinity series... Used... From the states.. Hmm. What's the postage?", + "created_at": "Fri Nov 04 07:17:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355136206012416", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.44260214, + -33.19053633 + ] + }, + "id": 132355723186282500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 36912422, + "id_str": "36912422", + "screen_name": "joshstarkey", + "name": "Joshua" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355136206012420, + "in_reply_to_screen_name": "joshstarkey", + "id_str": "132355723186282497", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.19053633, + 151.44260214 + ] + }, + "in_reply_to_user_id_str": "36912422", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608914209/Untitled_normal.png", + "profile_sidebar_fill_color": "9eba9e", + "id": 399254757, + "profile_text_color": "5e4a5e", + "followers_count": 14, + "profile_sidebar_border_color": "8cadbd", + "id_str": "399254757", + "profile_background_color": "83ca62", + "listed_count": 0, + "utc_offset": -36000, + "statuses_count": 34, + "description": "My name is Peter. My tweets are of no intellectual benefit to you. ", + "friends_count": 33, + "location": "Central Coast, NSW, Australia", + "profile_link_color": "758a77", + "profile_image_url": "http://a0.twimg.com/profile_images/1608914209/Untitled_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/356216938/ac_wallpaper.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/356216938/ac_wallpaper.jpg", + "name": "Peter Sanderson", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "petersanderson3", + "notifications": null, + "url": "http://thingsilostinthefires.tumblr.com", + "created_at": "Thu Oct 27 07:03:21 +0000 2011", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c6490", + "_rev": "1-0e436491922d9aa74f7be0c3cd049b56", + "oldid": "4eb390f43de67c5117000385", + "favorited": false, + "in_reply_to_user_id": 107290395, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JonathanRWegner agreed - but you can't put them on a tv advert. But I just find qr codes ugly", + "created_at": "Fri Nov 04 07:17:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355416154841088", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.98156923, + -33.71272675 + ] + }, + "id": 132355762285576200, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 107290395, + "id_str": "107290395", + "screen_name": "JonathanRWegner", + "name": "Jonathan R Wegner" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355416154841090, + "in_reply_to_screen_name": "JonathanRWegner", + "id_str": "132355762285576192", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.71272675, + 150.98156923 + ] + }, + "in_reply_to_user_id_str": "107290395", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 14839013, + "profile_text_color": "333333", + "followers_count": 713, + "profile_sidebar_border_color": "C0DEED", + "id_str": "14839013", + "profile_background_color": "C0DEED", + "listed_count": 36, + "utc_offset": 36000, + "statuses_count": 1249, + "description": "Director - Community Builders Australia & legal.consult; President NSW Society for Computers & the Law", + "friends_count": 465, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1222498183/arp_avatar_sq_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andrew Perry", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "andrewperry", + "notifications": null, + "url": "http://www.andrewperry.id.au", + "created_at": "Mon May 19 23:23:55 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c6590", + "_rev": "1-f7d851b88be0316c11947d5675d5bbdb", + "oldid": "4eb390f93de67c5117000386", + "contributors": null, + "truncated": false, + "text": "I'm at Marios' Cafe (303 Brunswick Street, Fitzroy) http://t.co/of3Hq6Sp", + "in_reply_to_status_id": null, + "id": 132355784511193090, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 52, + 72 + ], + "url": "http://t.co/of3Hq6Sp", + "expanded_url": "http://4sq.com/uNqJ9Z", + "display_url": "4sq.com/uNqJ9Z" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.978543, + -37.798049 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355784511193088", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1203109579/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 17208877, + "profile_text_color": "666666", + "followers_count": 102, + "profile_sidebar_border_color": "181A1E", + "id_str": "17208877", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1726, + "description": "burma!", + "friends_count": 180, + "location": "Melbourne", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1203109579/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "jimmyjack72", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "jimmyjack72", + "notifications": null, + "url": "http://wheredobirdsgo.blogspot.com/", + "created_at": "Thu Nov 06 10:31:40 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.798049, + 144.978543 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:17:32 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c6909", + "_rev": "1-3e38a8a570ad10aa1130367d425225a7", + "oldid": "4eb390fb3de67c5117000387", + "contributors": null, + "truncated": false, + "text": "I'm at Since I Left You w/ @alryan http://t.co/i51dVLHT", + "in_reply_to_status_id": null, + "id": 132355791624736770, + "entities": { + "user_mentions": [ + { + "indices": [ + 27, + 34 + ], + "id": 14841964, + "id_str": "14841964", + "screen_name": "AlRyan", + "name": "Al " + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 35, + 55 + ], + "url": "http://t.co/i51dVLHT", + "expanded_url": "http://4sq.com/uLfmk2", + "display_url": "4sq.com/uLfmk2" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.205072, + -33.869656 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355791624736768", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/76695482/ProfilePic_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 16325610, + "profile_text_color": "333333", + "followers_count": 151, + "profile_sidebar_border_color": "eeeeee", + "id_str": "16325610", + "profile_background_color": "B2DFDA", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 629, + "description": "Geek chic, digital marketer. Apple enthusiast, street art devotee, mother of 'Leroy Brown' & 'Poppy', miniature sausage dog extraordinaires!", + "friends_count": 188, + "location": "Sydney", + "profile_link_color": "93A644", + "profile_image_url": "http://a0.twimg.com/profile_images/76695482/ProfilePic_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme13/bg.gif", + "name": "Vanessa Veo", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 81, + "screen_name": "VanessaVeo", + "notifications": null, + "url": null, + "created_at": "Wed Sep 17 09:00:20 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.869656, + 151.205072 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:17:34 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c7580", + "_rev": "1-da99cf61928f2f6b3081b958fa2d676a", + "oldid": "4eb390fc3de67c5117000388", + "contributors": null, + "truncated": false, + "text": "@burgertheory ... finally! (@ ViaMedia) http://t.co/z9SHrCRp", + "in_reply_to_status_id": null, + "id": 132355793973547000, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 239603343, + "id_str": "239603343", + "screen_name": "burgertheory", + "name": "Burger Theory" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 40, + 60 + ], + "url": "http://t.co/z9SHrCRp", + "expanded_url": "http://4sq.com/vNG789", + "display_url": "4sq.com/vNG789" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.593745, + -34.9064 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": "burgertheory", + "in_reply_to_user_id": 239603343, + "retweet_count": 0, + "id_str": "132355793973547008", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1183840608/photo1crop_normal.jpg", + "profile_sidebar_fill_color": "A0C5C7", + "id": 22901075, + "profile_text_color": "333333", + "followers_count": 1235, + "profile_sidebar_border_color": "86A4A6", + "id_str": "22901075", + "profile_background_color": "709397", + "listed_count": 87, + "utc_offset": 34200, + "statuses_count": 10342, + "description": "Projects/Online Media in a not for profit organisation x day...the rest you'll probably find out here...", + "friends_count": 1185, + "location": "Adelaide", + "profile_link_color": "FF3300", + "profile_image_url": "http://a2.twimg.com/profile_images/1183840608/photo1crop_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/5921735/Photo-0013.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/5921735/Photo-0013.jpg", + "name": "Jane Durbridge", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 93, + "screen_name": "jdtoo", + "notifications": null, + "url": null, + "created_at": "Thu Mar 05 09:25:48 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.9064, + 138.593745 + ] + }, + "in_reply_to_user_id_str": "239603343", + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:17:34 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c8271", + "_rev": "1-7ee9d7d791388a71b5939adac0335dcc", + "oldid": "4eb391023de67c5117000389", + "contributors": null, + "truncated": false, + "text": "I'm at Hotel Wright St. (88 Wright St, Adelaide) w/ 4 others http://t.co/A4H07Vh1", + "in_reply_to_status_id": null, + "id": 132355817277104130, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 61, + 81 + ], + "url": "http://t.co/A4H07Vh1", + "expanded_url": "http://4sq.com/uhr5ux", + "display_url": "4sq.com/uhr5ux" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.597083, + -34.931536 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355817277104128", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1019160908/Bos_Font2_normal.jpg", + "profile_sidebar_fill_color": "dddddd", + "id": 158042149, + "profile_text_color": "000000", + "followers_count": 225, + "profile_sidebar_border_color": "000000", + "id_str": "158042149", + "profile_background_color": "000000", + "listed_count": 9, + "utc_offset": 34200, + "statuses_count": 534, + "description": "Sound, it costs you nothing. But is more precious than gold - Tim Bos", + "friends_count": 461, + "location": "Adelaide, Australia", + "profile_link_color": "000000", + "profile_image_url": "http://a3.twimg.com/profile_images/1019160908/Bos_Font2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/121317722/Bos_Font3.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/121317722/Bos_Font3.jpg", + "name": "Tim Bos", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "MusicBos", + "notifications": null, + "url": "http://www.facebook.com/timbos", + "created_at": "Mon Jun 21 16:28:13 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.931536, + 138.597083 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:17:40 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1c907e", + "_rev": "1-c513627d2a15b9bbffcab91ce0e754f7", + "oldid": "4eb3910c3de67c511700038a", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "If you have to tell someone youre not chasing them it makes it kinda awkward and clear you know you crossed the line and you are lol", + "created_at": "Fri Nov 04 07:17:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0305339, + -33.8469258 + ] + }, + "id": 132355860981755900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355860981755904", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8469258, + 151.0305339 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 29427165, + "profile_text_color": "3D1957", + "followers_count": 67, + "profile_sidebar_border_color": "65B0DA", + "id_str": "29427165", + "profile_background_color": "642D8B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1636, + "description": "Controlled by society. As wise as ever.", + "friends_count": 134, + "location": "Sydney's Suburbs.", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Vanessa Burton", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "__robotowl", + "notifications": null, + "url": null, + "created_at": "Tue Apr 07 11:13:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c960c", + "_rev": "1-9d3c531eab6455111d006d180fae49d4", + "oldid": "4eb391143de67c511700038b", + "favorited": false, + "in_reply_to_user_id": 106275079, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@TomPTYP what is your plan though! Would be keen to give you your gift and pre", + "created_at": "Fri Nov 04 07:17:59 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355010750201856", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.17960743, + -33.933789 + ] + }, + "id": 132355896033546240, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 106275079, + "id_str": "106275079", + "screen_name": "TomPTYP", + "name": "Thomas Salkowski" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355010750201860, + "in_reply_to_screen_name": "TomPTYP", + "id_str": "132355896033546240", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.933789, + 151.17960743 + ] + }, + "in_reply_to_user_id_str": "106275079", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595399771/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16257578, + "profile_text_color": "333333", + "followers_count": 227, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16257578", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 6577, + "description": "Twitter account of sean mildred. word to big bird", + "friends_count": 123, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1595399771/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sean Patrick Mildred", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "SeanMildred", + "notifications": null, + "url": "http://seanyptyp.tumblr.com", + "created_at": "Fri Sep 12 15:16:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1c998d", + "_rev": "1-ea6938acb7b6e1c5932a52a583aa06d3", + "oldid": "4eb391173de67c511700038c", + "favorited": false, + "in_reply_to_user_id": 23561103, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@EmmaClapham 2 step plan?", + "created_at": "Fri Nov 04 07:18:02 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132295789350367234", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.30774271, + -36.76375151 + ] + }, + "id": 132355908771659780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 23561103, + "id_str": "23561103", + "screen_name": "EmmaClapham", + "name": "emma clapham" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132295789350367230, + "in_reply_to_screen_name": "EmmaClapham", + "id_str": "132355908771659776", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.76375151, + 144.30774271 + ] + }, + "in_reply_to_user_id_str": "23561103", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1355719502/j914TP0g_normal", + "profile_sidebar_fill_color": "DDEEF6", + "id": 264987556, + "profile_text_color": "333333", + "followers_count": 21, + "profile_sidebar_border_color": "C0DEED", + "id_str": "264987556", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 96, + "description": "Electrician, Fitness Trainer/nut, alpaca farmer", + "friends_count": 79, + "location": "Bendigo/Point Lonsdale", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1355719502/j914TP0g_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Kris Watt", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "w4ttie", + "notifications": null, + "url": null, + "created_at": "Sat Mar 12 20:21:34 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ca822", + "_rev": "1-ee894a5e97111416c6b6d46df9490475", + "oldid": "4eb3911a3de67c511700038d", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF love being ignored :( by the hottest guy on earth :/ <3", + "created_at": "Fri Nov 04 07:18:05 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132355922822561800, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132355922822561794", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621723479/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3322, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1787, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621723479/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1cafd3", + "_rev": "1-30db270b3b3bbc5886707997d33cc9c1", + "oldid": "4eb3911e3de67c511700038e", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Long range forecast for Melbourne on the 18 of November is 17 degrees. What is going on? Global warming is on a holiday? #fail", + "created_at": "Fri Nov 04 07:18:09 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12635586, + -37.77886567 + ] + }, + "id": 132355939113246720, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 121, + 126 + ], + "text": "fail" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132355939113246722", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.77886567, + 145.12635586 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 276847675, + "profile_text_color": "333333", + "followers_count": 288, + "profile_sidebar_border_color": "C0DEED", + "id_str": "276847675", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2731, + "description": "Grumpy Old Man, social commentator, social entrepreneur, coffee Afficianado, wifi protagonist and Hawthorn Tragic. Blocked by @saintfrankly.", + "friends_count": 1056, + "location": "State of Confusion", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dominic A Papasergio", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "The_FishmanAU", + "notifications": null, + "url": "http://www.thefishman.net.au", + "created_at": "Mon Apr 04 06:08:28 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1cb350", + "_rev": "1-90d08dc21fcb28972ec9ffaf23ad5b0b", + "oldid": "4eb391243de67c511700038f", + "contributors": null, + "truncated": false, + "text": "Melbourne is so beautiful http://t.co/OGM9PBtD", + "in_reply_to_status_id": null, + "id": 132355959493361660, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY5Cz3CAAAqpy9.jpg", + "expanded_url": "http://twitter.com/grootiaus/status/132355959493361664/photo/1", + "display_url": "pic.twitter.com/OGM9PBtD", + "url": "http://t.co/OGM9PBtD", + "sizes": { + "large": { + "h": 648, + "w": 484, + "resize": "fit" + }, + "small": { + "h": 455, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 648, + "w": 484, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132355959497555968", + "indices": [ + 26, + 46 + ], + "type": "photo", + "id": 132355959497555970, + "media_url": "http://p.twimg.com/AdY5Cz3CAAAqpy9.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.980352, + -37.814668 + ] + }, + "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Camera on iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355959493361664", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 356699439, + "profile_text_color": "333333", + "followers_count": 11, + "profile_sidebar_border_color": "C0DEED", + "id_str": "356699439", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 23, + "description": "My passions are bread, coffee, cooking cafes and restaurants.", + "friends_count": 66, + "location": "Melbourne Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Ian de Groot", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "grootiaus", + "notifications": null, + "url": null, + "created_at": "Wed Aug 17 07:04:41 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.814668, + 144.980352 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:15 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1cb643", + "_rev": "1-4ca6cc912deac6ddcfa76ba2d0f89c43", + "oldid": "4eb391283de67c5117000390", + "contributors": null, + "truncated": false, + "text": "I'm at Westfield Carousel (1382 Albany Hwy, Cecil Ave, Cannington) http://t.co/3G9zeQfc", + "in_reply_to_status_id": null, + "id": 132355981446361090, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 67, + 87 + ], + "url": "http://t.co/3G9zeQfc", + "expanded_url": "http://4sq.com/ua8Llg", + "display_url": "4sq.com/ua8Llg" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.93777657, + -32.01913818 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355981446361088", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1561814706/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 48998301, + "profile_text_color": "333333", + "followers_count": 121, + "profile_sidebar_border_color": "C0DEED", + "id_str": "48998301", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 28800, + "statuses_count": 7943, + "description": "full-time professional procrastinator :D", + "friends_count": 103, + "location": "Kuching , Sarawak , Malaysia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1561814706/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Josephine Wong", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "ahjo_w", + "notifications": null, + "url": null, + "created_at": "Sat Jun 20 12:50:45 +0000 2009", + "contributors_enabled": false, + "time_zone": "Kuala Lumpur", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.01913818, + 115.93777657 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1cb7f4", + "_rev": "1-d10c28244634b2c7d7fa1ec1a42ed0b1", + "oldid": "4eb391293de67c5117000391", + "contributors": null, + "truncated": false, + "text": "Goodbye ~ my first house in Australia (@ Elliswood) http://t.co/ayGIa3rJ", + "in_reply_to_status_id": null, + "id": 132355984839557120, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 52, + 72 + ], + "url": "http://t.co/ayGIa3rJ", + "expanded_url": "http://4sq.com/vZhUza", + "display_url": "4sq.com/vZhUza" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.18059, + -33.799411 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132355984839557120", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1604902719/ProfilePhoto_normal.png", + "profile_sidebar_fill_color": "FFF7CC", + "id": 130521546, + "profile_text_color": "0C3E53", + "followers_count": 271, + "profile_sidebar_border_color": "F2E195", + "id_str": "130521546", + "profile_background_color": "BADFCD", + "listed_count": 9, + "utc_offset": 32400, + "statuses_count": 13995, + "description": "86 / iPhone / 노래 / DSLR / 여행 / 인하대 / 맥주 / 일본어 / 영어 / 노래하는 거 완전 좋아하는 인천사는 대학생 ~ 노래없인 못 살아 / There is no tomorrow :P", + "friends_count": 185, + "location": "Sydney", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1604902719/ProfilePhoto_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme12/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme12/bg.gif", + "name": "노래쟁이♬", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "muzik_o", + "notifications": null, + "url": "http://www.cyworld.com/muzik86", + "created_at": "Wed Apr 07 14:45:24 +0000 2010", + "contributors_enabled": false, + "time_zone": "Seoul", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.799411, + 151.18059 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:20 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1cba39", + "_rev": "1-9b23f5c9d46841c61d1513ea4c3e2d08", + "oldid": "4eb3912b3de67c5117000392", + "favorited": false, + "in_reply_to_user_id": 296619290, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@dannmauro you can play tennis all year round here in Australia outdoors", + "created_at": "Fri Nov 04 07:18:22 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355113187688448", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42666511, + -27.99962695 + ] + }, + "id": 132355992192159740, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 296619290, + "id_str": "296619290", + "screen_name": "dannmauro", + "name": "Daniel Mauro" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355113187688450, + "in_reply_to_screen_name": "dannmauro", + "id_str": "132355992192159744", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.99962695, + 153.42666511 + ] + }, + "in_reply_to_user_id_str": "296619290", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527157009/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 366934445, + "profile_text_color": "333333", + "followers_count": 224, + "profile_sidebar_border_color": "C0DEED", + "id_str": "366934445", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 266, + "description": "loves AFL and the @Brisbanelions Also do not mind a good party.. Recently moved to Sydney for work", + "friends_count": 1121, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1527157009/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Brad Schutz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "bradjloveafl", + "notifications": null, + "url": null, + "created_at": "Sat Sep 03 02:45:39 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1cbbb0", + "_rev": "1-056071a0ef87c8e33a476fd22f4eaa51", + "oldid": "4eb391303de67c5117000393", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "#officepolitics makes my weeks amazing", + "created_at": "Fri Nov 04 07:18:27 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0313589, + -33.8473144 + ] + }, + "id": 132356012417101820, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 15 + ], + "text": "officepolitics" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356012417101825", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8473144, + 151.0313589 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 29427165, + "profile_text_color": "3D1957", + "followers_count": 67, + "profile_sidebar_border_color": "65B0DA", + "id_str": "29427165", + "profile_background_color": "642D8B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1637, + "description": "Controlled by society. As wise as ever.", + "friends_count": 134, + "location": "Sydney's Suburbs.", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Vanessa Burton", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "__robotowl", + "notifications": null, + "url": null, + "created_at": "Tue Apr 07 11:13:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1cbde0", + "_rev": "1-b8de38af3070b5dec4a7559e21fb3f0b", + "oldid": "4eb391313de67c5117000394", + "contributors": null, + "truncated": false, + "text": "I'm at Chilli Padi (Waterfront City, Docklands) http://t.co/h4syFeQ2", + "in_reply_to_status_id": null, + "id": 132356015961284600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 48, + 68 + ], + "url": "http://t.co/h4syFeQ2", + "expanded_url": "http://4sq.com/rJDluv", + "display_url": "4sq.com/rJDluv" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.93793845, + -37.81223357 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356015961284608", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616910608/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 141841840, + "profile_text_color": "3D1957", + "followers_count": 75, + "profile_sidebar_border_color": "65B0DA", + "id_str": "141841840", + "profile_background_color": "642D8B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 3067, + "description": "", + "friends_count": 58, + "location": "melbourne", + "profile_link_color": "140707", + "profile_image_url": "http://a2.twimg.com/profile_images/1616910608/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "trangles doaners", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "tranglesdoaners", + "notifications": null, + "url": null, + "created_at": "Sun May 09 05:43:25 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81223357, + 144.93793845 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:27 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1cc54b", + "_rev": "1-2b1952ff3f82ff8433c5cd8d989dfd80", + "oldid": "4eb391373de67c5117000395", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@ccyellowarmy: An hour and a half 'til kick off. Get excited.” EXCITED!!! GO MARINERS!!!!!!!!!!!!!!!!!! #yellowarmy", + "created_at": "Fri Nov 04 07:18:34 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.03819066, + -33.85648435 + ] + }, + "id": 132356041873702910, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 14 + ], + "id": 143793550, + "id_str": "143793550", + "screen_name": "ccyellowarmy", + "name": "Yellow Army" + } + ], + "hashtags": [ + { + "indices": [ + 105, + 116 + ], + "text": "yellowarmy" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356041873702912", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85648435, + 151.03819066 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1608163861/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 328340294, + "profile_text_color": "333333", + "followers_count": 24, + "profile_sidebar_border_color": "C0DEED", + "id_str": "328340294", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": null, + "statuses_count": 202, + "description": null, + "friends_count": 130, + "location": "Sydney\n", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1608163861/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Erin Taylor", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "erinlouissa", + "notifications": null, + "url": null, + "created_at": "Sun Jul 03 05:32:30 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1cd51c", + "_rev": "1-e30ccefbd0c720933a81a8dcf170e60f", + "oldid": "4eb391423de67c5117000396", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://www.nibirutech.com\" rel=\"nofollow\">TwitBird</a>", + "text": "Elvis was 12 stone when he left the army. The king ate nothing but mashed potato & meatloaf for two years & died at 19 stone.", + "created_at": "Fri Nov 04 07:18:44 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.30879813, + -33.67480129 + ] + }, + "id": 132356087184769020, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356087184769024", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.67480129, + 151.30879813 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1004467553/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 135866350, + "profile_text_color": "333333", + "followers_count": 152, + "profile_sidebar_border_color": "C0DEED", + "id_str": "135866350", + "profile_background_color": "C0DEED", + "listed_count": 4, + "utc_offset": null, + "statuses_count": 4973, + "description": "Northern Irish Dad, husband, runner, surfer, football obsessive. Only get paid to be project manager.", + "friends_count": 222, + "location": "Sydney's Northern Beaches", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1004467553/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Will Brown", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 13, + "screen_name": "willbrownsydney", + "notifications": null, + "url": null, + "created_at": "Thu Apr 22 12:35:55 +0000 2010", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ce1c3", + "_rev": "1-c796d2d8b6e12d243476878fa229907c", + "oldid": "4eb391423de67c5117000397", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Knowing my lips are gonna hate me coz I didn't bring my lip balm :(", + "created_at": "Fri Nov 04 07:18:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.32801771, + -33.64238932 + ] + }, + "id": 132356088107511800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356088107511808", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.64238932, + 151.32801771 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1470508320/Nat_Dancing_normal", + "profile_sidebar_fill_color": "7AC3EE", + "id": 345834713, + "profile_text_color": "3D1957", + "followers_count": 19, + "profile_sidebar_border_color": "65B0DA", + "id_str": "345834713", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 137, + "description": "Soo Im Natalie Junee. Im 19 and live in the most beautiful place in the world Northern Beaches, Sydney, Australia. Im new at this so bare with me !!!!!\r\n", + "friends_count": 124, + "location": "Northern Beaches ", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1470508320/Nat_Dancing_normal", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Natalie Junee", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "NatalieJunee", + "notifications": null, + "url": "http://www.facebook.com/NatalieJunee", + "created_at": "Sun Jul 31 07:34:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ce632", + "_rev": "1-3372032c487dd581d82009e6ddf683b8", + "oldid": "4eb391433de67c5117000398", + "contributors": null, + "truncated": false, + "text": "Don't tempt me... 10 minutes walk from Sydenham station... (@ Summer Hill Station) http://t.co/XxqOSs1c", + "in_reply_to_status_id": null, + "id": 132356092071133180, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 83, + 103 + ], + "url": "http://t.co/XxqOSs1c", + "expanded_url": "http://picplz.com/HBGB", + "display_url": "picplz.com/HBGB" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.139216, + -33.89051 + ] + }, + "source": "<a href=\"http://picplz.com/\" rel=\"nofollow\">picplz</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356092071133184", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1459276751/photo_normal.JPG", + "profile_sidebar_fill_color": "fffdf3", + "id": 22669548, + "profile_text_color": "222222", + "followers_count": 348, + "profile_sidebar_border_color": "fffdf3", + "id_str": "22669548", + "profile_background_color": "2f2e34", + "listed_count": 10, + "utc_offset": 36000, + "statuses_count": 3084, + "description": "The musings of a teacher interested in Web2.0, social media, pop culture, technology and its applications in education.", + "friends_count": 161, + "location": "Sydney, Australia", + "profile_link_color": "595654", + "profile_image_url": "http://a1.twimg.com/profile_images/1459276751/photo_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/357925673/temp_kuvva_production_35822_6319_1.jpeg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/357925673/temp_kuvva_production_35822_6319_1.jpeg", + "name": "Jessica Jorna", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "craftylibrarian", + "notifications": null, + "url": "http://about.me/jessicajorna", + "created_at": "Tue Mar 03 20:03:06 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.89051, + 151.139216 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:46 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1cefaa", + "_rev": "1-cd65add7e56203035c86b112ee948450", + "oldid": "4eb391433de67c5117000399", + "contributors": null, + "truncated": false, + "text": "I'm at SURFCiTY Cafe (3046 Surfers Paradise Blvd., Surfers Paradise) http://t.co/woiQbiCF", + "in_reply_to_status_id": null, + "id": 132356093941784580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 69, + 89 + ], + "url": "http://t.co/woiQbiCF", + "expanded_url": "http://4sq.com/sDiPMj", + "display_url": "4sq.com/sDiPMj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42856765, + -28.00550851 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356093941784576", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/594319126/Michael_Green_hair_normal.JPG", + "profile_sidebar_fill_color": "FFF7CC", + "id": 19684844, + "profile_text_color": "0C3E53", + "followers_count": 62716, + "profile_sidebar_border_color": "f0dd8a", + "id_str": "19684844", + "profile_background_color": "BADFCD", + "listed_count": 3441, + "utc_offset": 36000, + "statuses_count": 26842, + "description": "Find all mine & display all your online places at http://xeeme.com/michaelqtodd Recovering Kiwi lawyer into juggling & daily #lifegasm. Author & love promoter. ", + "friends_count": 47197, + "location": "Empire Avenue, Tokyo", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/594319126/Michael_Green_hair_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/313479534/todd-twitter.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/313479534/todd-twitter.jpg", + "name": "Michael Q Todd", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 182, + "screen_name": "mqtodd", + "notifications": null, + "url": "http://xeeme.com/michaelqtodd", + "created_at": "Wed Jan 28 23:49:36 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.00550851, + 153.42856765 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:46 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1cfd41", + "_rev": "1-5c9beb25f559ded4637b68236f96b5a0", + "oldid": "4eb391443de67c511700039a", + "contributors": null, + "truncated": false, + "text": "I'm at Top Ryde City (Devlin St., Blaxland Rd., Ryde) http://t.co/hXpnfud8", + "in_reply_to_status_id": null, + "id": 132356095585943550, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 54, + 74 + ], + "url": "http://t.co/hXpnfud8", + "expanded_url": "http://4sq.com/w0IWW9", + "display_url": "4sq.com/w0IWW9" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.10608578, + -33.81231463 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356095585943552", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1364307780/my_love_normal.jpg", + "profile_sidebar_fill_color": "0d0806", + "id": 128201749, + "profile_text_color": "332d23", + "followers_count": 62, + "profile_sidebar_border_color": "4f606e", + "id_str": "128201749", + "profile_background_color": "000000", + "listed_count": 1, + "utc_offset": -36000, + "statuses_count": 425, + "description": "everything is gonna be fine..\r\njust do what you can, and God will do what you can't :)\r\n", + "friends_count": 65, + "location": "sydney", + "profile_link_color": "544c45", + "profile_image_url": "http://a2.twimg.com/profile_images/1364307780/my_love_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/166607499/xd658bd415184c18df7953080da0e8a3.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/166607499/xd658bd415184c18df7953080da0e8a3.jpg", + "name": "farhaddaud", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 43, + "screen_name": "aban_abadi", + "notifications": null, + "url": "http://farhaddaud.blogspot.com/", + "created_at": "Wed Mar 31 12:12:56 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.81231463, + 151.10608578 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:46 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1cfec9", + "_rev": "1-eccc80d01c73cbfa33364abfffa5abfa", + "oldid": "4eb3914b3de67c511700039b", + "contributors": null, + "truncated": false, + "text": "Taco truck!! #fuckyeah http://t.co/dLUuYEoB", + "in_reply_to_status_id": null, + "id": 132356125638139900, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 13, + 22 + ], + "text": "fuckyeah" + } + ], + "urls": [ + { + "indices": [ + 23, + 43 + ], + "url": "http://t.co/dLUuYEoB", + "expanded_url": "http://yfrog.com/ocgyeobj", + "display_url": "yfrog.com/ocgyeobj" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.99362153, + -37.77687358 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356125638139906", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1359294363/jono_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 188573968, + "profile_text_color": "333333", + "followers_count": 102, + "profile_sidebar_border_color": "eeeeee", + "id_str": "188573968", + "profile_background_color": "131516", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 672, + "description": "software engineer @ monash uni, creator of http://mykileaks.org, drummer, electro beat maker", + "friends_count": 288, + "location": "Melbourne", + "profile_link_color": "009999", + "profile_image_url": "http://a1.twimg.com/profile_images/1359294363/jono_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Jonathan Mullins", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 7, + "screen_name": "monofonik", + "notifications": null, + "url": "http://jonathan-mullins.com", + "created_at": "Thu Sep 09 01:52:04 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.77687358, + 144.99362153 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:18:54 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1d029b", + "_rev": "1-9b6465755d2635f1307618a07fc35468", + "oldid": "4eb3914c3de67c511700039c", + "favorited": false, + "in_reply_to_user_id": 391857440, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JamesyboyF :((( blaaaaaaaaah your hot and you won't follow me :/", + "created_at": "Fri Nov 04 07:18:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132354770936676352", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132356130583228420, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 391857440, + "id_str": "391857440", + "screen_name": "JamesyboyF", + "name": "James Boy" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132354770936676350, + "in_reply_to_screen_name": "JamesyboyF", + "id_str": "132356130583228416", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "391857440", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621723479/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3323, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1787, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621723479/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d0ea5", + "_rev": "1-fb22714819d60218a8f8069b4736ad1f", + "oldid": "4eb391533de67c511700039d", + "contributors": null, + "truncated": false, + "text": "BRB eating feelings (@ KFC) http://t.co/6yuBvIYJ", + "in_reply_to_status_id": null, + "id": 132356160111128580, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 28, + 48 + ], + "url": "http://t.co/6yuBvIYJ", + "expanded_url": "http://4sq.com/stnE2z", + "display_url": "4sq.com/stnE2z" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.04224195, + -37.876809 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356160111128576", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618560757/IMG_2587_normal.JPG", + "profile_sidebar_fill_color": "abb2ff", + "id": 18152992, + "profile_text_color": "4d4c4b", + "followers_count": 1000, + "profile_sidebar_border_color": "084a66", + "id_str": "18152992", + "profile_background_color": "babec2", + "listed_count": 59, + "utc_offset": 36000, + "statuses_count": 24192, + "description": "Mildy nerdy, often complaining, easily excited. Nerd Bait, Over-Thinker, Teacher. Sings a lot, runs a little, likes inneuendo. flirts easily (too easily) ", + "friends_count": 597, + "location": "Melbourne", + "profile_link_color": "11172e", + "profile_image_url": "http://a1.twimg.com/profile_images/1618560757/IMG_2587_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/328896808/2010_0125Europe0481__Desktop_Resolution_.JPG", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/328896808/2010_0125Europe0481__Desktop_Resolution_.JPG", + "name": "Mel P", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 91, + "screen_name": "superhotmel", + "notifications": null, + "url": "http://sothisisstrange.tumblr.com/", + "created_at": "Tue Dec 16 01:49:36 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.876809, + 145.04224195 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:19:02 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1d1636", + "_rev": "1-c031a4cb936acaf7fb6e4121d73eb85b", + "oldid": "4eb391533de67c511700039e", + "favorited": false, + "in_reply_to_user_id": 324270768, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@akaLezleeJ & @traxlmaz ready to get ur #JetLi on bitches??!! (:", + "created_at": "Fri Nov 04 07:19:02 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.01859583, + -33.83347065 + ] + }, + "id": 132356161222606850, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 324270768, + "id_str": "324270768", + "screen_name": "akaLezleeJ", + "name": "Leslie Janer" + }, + { + "indices": [ + 14, + 23 + ], + "id": 27848973, + "id_str": "27848973", + "screen_name": "traxlmaz", + "name": "Marianne Traxl" + } + ], + "hashtags": [ + { + "indices": [ + 40, + 46 + ], + "text": "JetLi" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": "akaLezleeJ", + "id_str": "132356161222606848", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.83347065, + 151.01859583 + ] + }, + "in_reply_to_user_id_str": "324270768", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1228834606/rsz_1img_3280_normal.jpg", + "profile_sidebar_fill_color": "D7008E", + "id": 23418835, + "profile_text_color": "C1C1C1", + "followers_count": 775, + "profile_sidebar_border_color": "04CCD0", + "id_str": "23418835", + "profile_background_color": "212121", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 6036, + "description": "Live. Love. Laugh. Just a lil obsessed with Enrique & Miami ♥ Blame it on the Goose (: #Enriquers", + "friends_count": 1676, + "location": "Mi Casa, Sydney Australia", + "profile_link_color": "AD0035", + "profile_image_url": "http://a3.twimg.com/profile_images/1228834606/rsz_1img_3280_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/328937672/Miami_Skyline_Mike07.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/328937672/Miami_Skyline_Mike07.jpg", + "name": "Linda T", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1407, + "screen_name": "Lynz6891", + "notifications": null, + "url": null, + "created_at": "Mon Mar 09 09:40:22 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d16f5", + "_rev": "1-4f2c116caadd62d82d781cd2910451dc", + "oldid": "4eb3915b3de67c511700039f", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Dead", + "created_at": "Fri Nov 04 07:19:09 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.19392953, + -33.93282621 + ] + }, + "id": 132356191576789000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356191576788992", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93282621, + 151.19392953 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 209302946, + "profile_text_color": "666666", + "followers_count": 16, + "profile_sidebar_border_color": "181A1E", + "id_str": "209302946", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 229, + "description": "love many, trust a few", + "friends_count": 14, + "location": "Sydney, australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a1.twimg.com/profile_images/1312420941/194399_10150499121885565_636430564_18393095_8366029_o__1__normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "T. Emerald M. Windra", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "emeraldkta", + "notifications": null, + "url": null, + "created_at": "Thu Oct 28 22:59:24 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d1d99", + "_rev": "1-09f7171fbff4efcaff50d0f2165cc0ae", + "oldid": "4eb3915c3de67c51170003a0", + "contributors": null, + "truncated": false, + "text": "Freestyle step and weight training (: (@ Fernwood Capalaba) http://t.co/v1b0UJEa", + "in_reply_to_status_id": null, + "id": 132356198686146560, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 60, + 80 + ], + "url": "http://t.co/v1b0UJEa", + "expanded_url": "http://4sq.com/uxdErv", + "display_url": "4sq.com/uxdErv" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.201545, + -27.521709 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "id_str": "132356198686146560", + "retweet_count": 0, + "in_reply_to_user_id": null, + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "id": 241737910, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1589189752/IMG_2385_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "geo_enabled": true, + "profile_text_color": "333333", + "followers_count": 2, + "protected": false, + "location": "", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 11, + "description": "", + "friends_count": 9, + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1589189752/IMG_2385_normal.jpg", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/196156846/x11dfcd8a1d69489da0b41fe211eaf23.png", + "id_str": "241737910", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/196156846/x11dfcd8a1d69489da0b41fe211eaf23.png", + "name": "Sarah Coles", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "oxSarahBabyxo", + "notifications": null, + "url": null, + "created_at": "Sun Jan 23 01:14:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "profile_sidebar_border_color": "C0DEED", + "default_profile": false, + "is_translator": false + }, + "geo": { + "type": "Point", + "coordinates": [ + -27.521709, + 153.201545 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:19:11 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1d288b", + "_rev": "1-75fa17f932396a13a61c564cbc02323b", + "oldid": "4eb3915d3de67c51170003a1", + "favorited": false, + "in_reply_to_user_id": 295922840, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@NotarfrancescoE tweeting from a chopper sounds fun! #ch10news", + "created_at": "Fri Nov 04 07:19:12 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345520218836992", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12453298, + -37.7839949 + ] + }, + "id": 132356202729439230, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 295922840, + "id_str": "295922840", + "screen_name": "NotarfrancescoE", + "name": "Emma Notarfrancesco" + } + ], + "hashtags": [ + { + "indices": [ + 53, + 62 + ], + "text": "ch10news" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132345520218837000, + "in_reply_to_screen_name": "NotarfrancescoE", + "id_str": "132356202729439232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.7839949, + 145.12453298 + ] + }, + "in_reply_to_user_id_str": "295922840", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 276847675, + "profile_text_color": "333333", + "followers_count": 288, + "profile_sidebar_border_color": "C0DEED", + "id_str": "276847675", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2733, + "description": "Grumpy Old Man, social commentator, social entrepreneur, coffee Afficianado, wifi protagonist and Hawthorn Tragic. Blocked by @saintfrankly.", + "friends_count": 1056, + "location": "State of Confusion", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dominic A Papasergio", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "The_FishmanAU", + "notifications": null, + "url": "http://www.thefishman.net.au", + "created_at": "Mon Apr 04 06:08:28 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d2a79", + "_rev": "1-c84a8df367c3af9262648f45c1f87afa", + "oldid": "4eb3915f3de67c51170003a2", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "One more day n I'm gone from this hell hole booyah", + "created_at": "Fri Nov 04 07:19:14 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.77592824, + -37.70108708 + ] + }, + "id": 132356209348063230, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356209348063232", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.70108708, + 144.77592824 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1211818643/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 39532516, + "profile_text_color": "333333", + "followers_count": 19, + "profile_sidebar_border_color": "C0DEED", + "id_str": "39532516", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 708, + "description": "I am who I am....I am wat I am", + "friends_count": 33, + "location": "Universe of Perdana Park", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1211818643/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Winnie Wong", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "brizwin", + "notifications": null, + "url": "http://www.brizwin.com", + "created_at": "Tue May 12 16:15:16 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d2c5c", + "_rev": "1-acfd43a2827edae0951630f433560a3b", + "oldid": "4eb391623de67c51170003a3", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "#GrandTheftAutoMemories Beating up the hooker and getting your money back", + "created_at": "Fri Nov 04 07:19:16 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.04155832, + -26.38686603 + ] + }, + "id": 132356221381513220, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 0, + 23 + ], + "text": "GrandTheftAutoMemories" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356221381513216", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -26.38686603, + 153.04155832 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1531655013/image_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 64289290, + "profile_text_color": "333333", + "followers_count": 123, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "64289290", + "profile_background_color": "9AE4E8", + "listed_count": 4, + "utc_offset": -21600, + "statuses_count": 1160, + "description": "", + "friends_count": 359, + "location": "winnipeg", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1531655013/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/100698953/n72602070480_3615939_9293.jpg", + "name": "Ryan Barnard", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 4, + "screen_name": "barnardnt", + "notifications": null, + "url": null, + "created_at": "Mon Aug 10 00:10:11 +0000 2009", + "contributors_enabled": false, + "time_zone": "Central Time (US & Canada)", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d35bb", + "_rev": "1-e49ed81267e8c62f68308ed79d7a296e", + "oldid": "4eb391633de67c51170003a4", + "favorited": false, + "in_reply_to_user_id": 29432127, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@JoelCaffery I know right! Outrageous I tell you!! Outrageous! #crymeariver", + "created_at": "Fri Nov 04 07:19:17 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355940753215488", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.22499261, + -33.87166914 + ] + }, + "id": 132356225642921980, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 29432127, + "id_str": "29432127", + "screen_name": "JoelCaffery", + "name": "JC" + } + ], + "hashtags": [ + { + "indices": [ + 63, + 75 + ], + "text": "crymeariver" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132355940753215490, + "in_reply_to_screen_name": "JoelCaffery", + "id_str": "132356225642921985", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87166914, + 151.22499261 + ] + }, + "in_reply_to_user_id_str": "29432127", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 254449910, + "profile_text_color": "333333", + "followers_count": 316, + "profile_sidebar_border_color": "C0DEED", + "id_str": "254449910", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 1173, + "description": "Senior .NET Developer@ Amnesia Razorfish, melbournian @ heart, 24/7 homosexual, My thoughts are my own and dont represent my employers or clients views.", + "friends_count": 549, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robbie Tapping", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "robbiectapping", + "notifications": null, + "url": "http://www.robbietapping.com.au", + "created_at": "Sat Feb 19 09:00:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d3e69", + "_rev": "1-341b161de46057ae551cfb1c5f619970", + "oldid": "4eb391643de67c51170003a5", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Notes on desks like youre in high school #officepolitics", + "created_at": "Fri Nov 04 07:19:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0202127, + -33.8389788 + ] + }, + "id": 132356230156009470, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 41, + 56 + ], + "text": "officepolitics" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356230156009473", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8389788, + 151.0202127 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 29427165, + "profile_text_color": "3D1957", + "followers_count": 67, + "profile_sidebar_border_color": "65B0DA", + "id_str": "29427165", + "profile_background_color": "642D8B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1638, + "description": "Controlled by society. As wise as ever.", + "friends_count": 134, + "location": "Sydney's Suburbs.", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Vanessa Burton", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "__robotowl", + "notifications": null, + "url": null, + "created_at": "Tue Apr 07 11:13:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d4e4a", + "_rev": "1-f3947fa97de2cdda1d9a3d1663085ede", + "oldid": "4eb391673de67c51170003a6", + "contributors": null, + "truncated": false, + "text": "Ok kana (^⌣^) RT @kanahkl: @berlinerzz when u catch it text me! I can catch same one! http://t.co/RrHkRlBL", + "in_reply_to_status_id": null, + "id": 132356243451936770, + "entities": { + "user_mentions": [ + { + "indices": [ + 18, + 26 + ], + "id": 89578933, + "id_str": "89578933", + "screen_name": "kanahkl", + "name": "Kana" + }, + { + "indices": [ + 28, + 39 + ], + "id": 113592643, + "id_str": "113592643", + "screen_name": "berlinerzz", + "name": "Ayu berliner hugua" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 87, + 107 + ], + "url": "http://t.co/RrHkRlBL", + "expanded_url": "http://myloc.me/no74f", + "display_url": "myloc.me/no74f" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.8383822, + -31.8739917 + ] + }, + "source": "<a href=\"http://ubersocial.com\" rel=\"nofollow\">UberSocial for BlackBerry</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356243451936768", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610999493/328811293_normal.jpg", + "profile_sidebar_fill_color": "000000", + "id": 113592643, + "profile_text_color": "404040", + "followers_count": 448, + "profile_sidebar_border_color": "333333", + "id_str": "113592643", + "profile_background_color": "ffffff", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 6478, + "description": "I was an ordinary teenager full of joy and madness LOL :D. friends usually call my name berlin.", + "friends_count": 330, + "location": "ÜT: -31.8745763,115.8407291", + "profile_link_color": "999999", + "profile_image_url": "http://a0.twimg.com/profile_images/1610999493/328811293_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/303972749/hjhyy.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/303972749/hjhyy.jpg", + "name": "Ayu berliner hugua", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 11, + "screen_name": "berlinerzz", + "notifications": null, + "url": null, + "created_at": "Fri Feb 12 10:03:17 +0000 2010", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.8739917, + 115.8383822 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:19:22 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1d576e", + "_rev": "1-7dcd9e23314144fcb86af198ebfe90f2", + "oldid": "4eb3916b3de67c51170003a7", + "contributors": null, + "truncated": false, + "text": "Checking in after ten attempts. Thanks Optus (@ Bull And Bush) http://t.co/p2kk1XDs", + "in_reply_to_status_id": null, + "id": 132356260237541380, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 63, + 83 + ], + "url": "http://t.co/p2kk1XDs", + "expanded_url": "http://4sq.com/tQcnc5", + "display_url": "4sq.com/tQcnc5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.864585, + -32.74076 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356260237541377", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/70557100/148_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 18849689, + "profile_text_color": "666666", + "followers_count": 3, + "profile_sidebar_border_color": "181A1E", + "id_str": "18849689", + "profile_background_color": "1A1B1F", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1542, + "description": "Photographer living in Newcastle, Australia", + "friends_count": 13, + "location": "Newcastle Australia ", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a0.twimg.com/profile_images/70557100/148_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Daniel Hall", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 7, + "screen_name": "DanielJHall", + "notifications": null, + "url": "http://bigkev64.wordpress.com", + "created_at": "Sat Jan 10 23:00:37 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -32.74076, + 151.864585 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:19:26 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1d65be", + "_rev": "1-821728e46aaf80b49a064789ea079928", + "oldid": "4eb391783de67c51170003a8", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "I'm so bored on the train home. I need to download some games to kill time.", + "created_at": "Fri Nov 04 07:19:39 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9084482, + -37.7747433 + ] + }, + "id": 132356317603045380, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356317603045376", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.7747433, + 144.9084482 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 393046239, + "profile_text_color": "333333", + "followers_count": 23, + "profile_sidebar_border_color": "C0DEED", + "id_str": "393046239", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 365, + "description": "Hi there, I'm Mandy. I'm average. I like things and love someone, and yeah.", + "friends_count": 45, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1594040833/Photo_on_2011-03-27_at_16.26_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Mandy Gu", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 132, + "screen_name": "mandyguzza", + "notifications": null, + "url": "http://mandy-blah-xox.tumblr.com/", + "created_at": "Mon Oct 17 23:12:51 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d7097", + "_rev": "1-95223641d577e3ff6247c47725a77a96", + "oldid": "4eb391793de67c51170003a9", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "รอ 4 ชม. โทรตาม 2 ครั้ง #Ithinkthatsok", + "created_at": "Fri Nov 04 07:19:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20267246, + -33.88282974 + ] + }, + "id": 132356321302425600, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 24, + 38 + ], + "text": "Ithinkthatsok" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356321302425600", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.88282974, + 151.20267246 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616267388/image_normal.jpg", + "profile_sidebar_fill_color": "E6F6F9", + "id": 166073690, + "profile_text_color": "333333", + "followers_count": 83, + "profile_sidebar_border_color": "DBE9ED", + "id_str": "166073690", + "profile_background_color": "DBE9ED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2679, + "description": "Everything I like is either illegal, immortal, fattening, addictive, expensive, or impossible.\r\nMD 80// Ascham 10// Cofa 14", + "friends_count": 151, + "location": "Sydney", + "profile_link_color": "CC3366", + "profile_image_url": "http://a2.twimg.com/profile_images/1616267388/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme17/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme17/bg.gif", + "name": "Nat Soontornvinate", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 13, + "screen_name": "natsoont", + "notifications": null, + "url": null, + "created_at": "Tue Jul 13 07:31:35 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d8067", + "_rev": "1-299309c038b41e3f9147ddcd16d15537", + "oldid": "4eb3917e3de67c51170003aa", + "favorited": false, + "in_reply_to_user_id": 204100411, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@CarlaDelVecchio Yeah but I think I want some now.", + "created_at": "Fri Nov 04 07:19:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355980263555072", + "coordinates": { + "type": "Point", + "coordinates": [ + 147.71035673, + -37.90329914 + ] + }, + "id": 132356340571049980, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 204100411, + "id_str": "204100411", + "screen_name": "CarlaDelVecchio", + "name": "Carla Del Vecchio" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355980263555070, + "in_reply_to_screen_name": "CarlaDelVecchio", + "id_str": "132356340571049984", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.90329914, + 147.71035673 + ] + }, + "in_reply_to_user_id_str": "204100411", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1368238343/250234_10150260787110400_557760399_9402997_1886090_n_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 6989, + "profile_text_color": "666666", + "followers_count": 2787, + "profile_sidebar_border_color": "181A1E", + "id_str": "6989", + "profile_background_color": "1A1B1F", + "listed_count": 170, + "utc_offset": 36000, + "statuses_count": 34429, + "description": "Online community manager, traveller.\nMoving to Hong Kong on 12 January 2012.", + "friends_count": 2088, + "location": "Paynesville, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1368238343/250234_10150260787110400_557760399_9402997_1886090_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/187640146/141300158_9e21723ad5_o.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/187640146/141300158_9e21723ad5_o.jpg", + "name": "Greg Lexiphanic", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 628, + "screen_name": "lexiphanic", + "notifications": null, + "url": "http://greg.lexiphanic.com", + "created_at": "Wed Sep 27 03:48:34 +0000 2006", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d9061", + "_rev": "1-622dacc7e162553c6db7377ca6daca77", + "oldid": "4eb3917e3de67c51170003ab", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Is three parking inspectors in one street really necessary??", + "created_at": "Fri Nov 04 07:19:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.02869999, + -27.47006612 + ] + }, + "id": 132356342261354500, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356342261354496", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.47006612, + 153.02869999 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1487327258/IMG_3466_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 244596370, + "profile_text_color": "333333", + "followers_count": 71, + "profile_sidebar_border_color": "C0DEED", + "id_str": "244596370", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 200, + "description": "A law and psychological science student with a passion for politics and social justice who loves to get on stage and share the beauty of music whenever he can", + "friends_count": 306, + "location": "Brisbane", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1487327258/IMG_3466_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Fraser Lane", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "Fraser_Lane", + "notifications": null, + "url": null, + "created_at": "Sat Jan 29 17:40:30 +0000 2011", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d9697", + "_rev": "1-906eb2adb15a1528fc5f6d703cc74b8d", + "oldid": "4eb391833de67c51170003ac", + "favorited": false, + "in_reply_to_user_id": 324270768, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@akaLezleeJ LOVE!!!!!", + "created_at": "Fri Nov 04 07:19:50 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "93891486483087361", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.9637552, + -33.81656869 + ] + }, + "id": 132356362729570300, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 324270768, + "id_str": "324270768", + "screen_name": "akaLezleeJ", + "name": "Leslie Janer" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 93891486483087360, + "in_reply_to_screen_name": "akaLezleeJ", + "id_str": "132356362729570306", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.81656869, + 150.9637552 + ] + }, + "in_reply_to_user_id_str": "324270768", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1228834606/rsz_1img_3280_normal.jpg", + "profile_sidebar_fill_color": "D7008E", + "id": 23418835, + "profile_text_color": "C1C1C1", + "followers_count": 775, + "profile_sidebar_border_color": "04CCD0", + "id_str": "23418835", + "profile_background_color": "212121", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 6038, + "description": "Live. Love. Laugh. Just a lil obsessed with Enrique & Miami ♥ Blame it on the Goose (: #Enriquers", + "friends_count": 1676, + "location": "Mi Casa, Sydney Australia", + "profile_link_color": "AD0035", + "profile_image_url": "http://a3.twimg.com/profile_images/1228834606/rsz_1img_3280_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/328937672/Miami_Skyline_Mike07.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/328937672/Miami_Skyline_Mike07.jpg", + "name": "Linda T", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1407, + "screen_name": "Lynz6891", + "notifications": null, + "url": null, + "created_at": "Mon Mar 09 09:40:22 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d9829", + "_rev": "1-345cd5df783e1cc42c500b826ba67848", + "oldid": "4eb391863de67c51170003ad", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "“@TeenagersPost: Lady Gaga surely likes Math: The Gaga Equation: (RAH)² (AH)³ + RO (MA + MAMA) + (GA)² + OOH(LA)² = Bad Romance.”", + "created_at": "Fri Nov 04 07:19:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.86231142, + -32.04701405 + ] + }, + "id": 132356374540713980, + "entities": { + "user_mentions": [ + { + "indices": [ + 1, + 15 + ], + "id": 148779151, + "id_str": "148779151", + "screen_name": "TeenagersPost", + "name": "Clarissa|Dave|Sara" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356374540713985", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.04701405, + 115.86231142 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616962706/image_normal.jpg", + "profile_sidebar_fill_color": "efefef", + "id": 312546016, + "profile_text_color": "0a050a", + "followers_count": 238, + "profile_sidebar_border_color": "120612", + "id_str": "312546016", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 28800, + "statuses_count": 18084, + "description": "an optimistic person who never stopped loving her family, manchester united, Chicharito,HIMYM, her best mates, Tangled & ice cream☺.", + "friends_count": 329, + "location": "in the freezer", + "profile_link_color": "090a0a", + "profile_image_url": "http://a2.twimg.com/profile_images/1616962706/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/342779739/DESIGN.jpg", + "name": "❥C.Christine", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 94, + "screen_name": "chynietoto", + "notifications": null, + "url": null, + "created_at": "Tue Jun 07 09:00:06 +0000 2011", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1d9d59", + "_rev": "1-c1ccc84fa6a03a8f48d388e127247d72", + "oldid": "4eb3918a3de67c51170003ae", + "favorited": false, + "in_reply_to_user_id": 29183782, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@MattThompsonSEN we all are #ch10news", + "created_at": "Fri Nov 04 07:19:57 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346317119827968", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12506861, + -37.78373594 + ] + }, + "id": 132356389984149500, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 16 + ], + "id": 29183782, + "id_str": "29183782", + "screen_name": "MattThompsonSEN", + "name": "Matt Thompson" + } + ], + "hashtags": [ + { + "indices": [ + 28, + 37 + ], + "text": "ch10news" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132346317119827970, + "in_reply_to_screen_name": "MattThompsonSEN", + "id_str": "132356389984149504", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.78373594, + 145.12506861 + ] + }, + "in_reply_to_user_id_str": "29183782", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 276847675, + "profile_text_color": "333333", + "followers_count": 288, + "profile_sidebar_border_color": "C0DEED", + "id_str": "276847675", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2734, + "description": "Grumpy Old Man, social commentator, social entrepreneur, coffee Afficianado, wifi protagonist and Hawthorn Tragic. Blocked by @saintfrankly.", + "friends_count": 1056, + "location": "State of Confusion", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dominic A Papasergio", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "The_FishmanAU", + "notifications": null, + "url": "http://www.thefishman.net.au", + "created_at": "Mon Apr 04 06:08:28 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1da2e8", + "_rev": "1-aae210f39d8fc1dc0ca60110a6c0e7b6", + "oldid": "4eb3918b3de67c51170003af", + "favorited": false, + "in_reply_to_user_id": 20652674, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@randallgill well how can you not love roast something...", + "created_at": "Fri Nov 04 07:19:58 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356161520406528", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.22561645, + -36.44524203 + ] + }, + "id": 132356395482886140, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 20652674, + "id_str": "20652674", + "screen_name": "randallgill", + "name": "Randall Gillespie" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356161520406530, + "in_reply_to_screen_name": "randallgill", + "id_str": "132356395482886144", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -36.44524203, + 145.22561645 + ] + }, + "in_reply_to_user_id_str": "20652674", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1211795093/Summer-Holiday-2010-11-4_normal.jpg", + "profile_sidebar_fill_color": "DDFFCC", + "id": 14354451, + "profile_text_color": "333333", + "followers_count": 2981, + "profile_sidebar_border_color": "BDDCAD", + "id_str": "14354451", + "profile_background_color": "9AE4E8", + "listed_count": 50, + "utc_offset": 36000, + "statuses_count": 7683, + "description": "Happily Married to @marlain, Three Great Kids, Construction Worker & Internet Tragic! ", + "friends_count": 2309, + "location": "Shepparton Victoria Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1211795093/Summer-Holiday-2010-11-4_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/3861082/gunpowder2.gif", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/3861082/gunpowder2.gif", + "name": "Kevin Perry", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 44, + "screen_name": "kevmarl", + "notifications": null, + "url": "http://kevmarl.com", + "created_at": "Thu Apr 10 19:40:27 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1dad34", + "_rev": "1-dd62d7dda266c04da78f027241d6ae0c", + "oldid": "4eb3918e3de67c51170003b0", + "favorited": false, + "in_reply_to_user_id": 188257647, + "contributors": null, + "source": "<a href=\"http://streamie.org\" rel=\"nofollow\">streamie</a>", + "text": "@emireewilson you're welcome! what did you have today?", + "created_at": "Fri Nov 04 07:20:00 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356078510931968", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.0381719, + -37.8228372 + ] + }, + "id": 132356405746348030, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 188257647, + "id_str": "188257647", + "screen_name": "emireewilson", + "name": "Emily Wilson" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356078510931970, + "in_reply_to_screen_name": "emireewilson", + "id_str": "132356405746348032", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.8228372, + 145.0381719 + ] + }, + "in_reply_to_user_id_str": "188257647", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1532223274/2b89ea9e00d1f98165d6b8645a6b69be_18855018_normal.jpg", + "profile_sidebar_fill_color": "F3F3F3", + "id": 27615888, + "profile_text_color": "333333", + "followers_count": 152, + "profile_sidebar_border_color": "DFDFDF", + "id_str": "27615888", + "profile_background_color": "EBEBEB", + "listed_count": 13, + "utc_offset": 36000, + "statuses_count": 6370, + "description": "First year BIT student at Swinburne, in my spare time I race human powered vehicles. I love music and photos, and talking to people. Talk to me!", + "friends_count": 141, + "location": "Melbourne, Australia", + "profile_link_color": "990000", + "profile_image_url": "http://a1.twimg.com/profile_images/1532223274/2b89ea9e00d1f98165d6b8645a6b69be_18855018_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme7/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme7/bg.gif", + "name": "Angus Houston", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 211, + "screen_name": "bleum937", + "notifications": null, + "url": null, + "created_at": "Mon Mar 30 10:42:23 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1db626", + "_rev": "1-0628b8c81a0c9aee641f1af711f2a795", + "oldid": "4eb391963de67c51170003b1", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1566740294/gue01_resize_normal.JPG", + "profile_sidebar_fill_color": "d4be2f", + "is_translator": false, + "id": 161580256, + "profile_text_color": "5c405c", + "followers_count": 448, + "protected": false, + "id_str": "161580256", + "default_profile_image": false, + "listed_count": 3, + "utc_offset": 34200, + "statuses_count": 2553, + "description": "I'm......the less you know, the better!! That's it.", + "friends_count": 99, + "location": "Adelaide, South Australia", + "profile_link_color": "1100ff", + "profile_image_url": "http://a2.twimg.com/profile_images/1566740294/gue01_resize_normal.JPG", + "notifications": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131753363/Foto_Thema_Wawan05.jpg", + "profile_background_color": "2c9ba1", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/131753363/Foto_Thema_Wawan05.jpg", + "name": "Ridwan Anom", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "WawanAnom", + "url": "http://ridwananom79.wordpress.com/", + "created_at": "Thu Jul 01 05:55:34 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "profile_sidebar_border_color": "87bc44", + "default_profile": false, + "following": null + }, + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "truncated": false, + "text": "Sedih rasanya harus berpisah dgn teman\" sekelas..", + "created_at": "Fri Nov 04 07:20:08 +0000 2011", + "retweeted": false, + "in_reply_to_status_id": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.611859, + -34.927845 + ] + }, + "id": 132356439514689540, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id_str": null, + "place": null, + "source": "<a href=\"http://www.handmark.com\" rel=\"nofollow\">TweetCaster for iOS</a>", + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.927845, + 138.611859 + ] + }, + "in_reply_to_user_id_str": null, + "id_str": "132356439514689537" + }, + { + "_id": "51f39676462cca21859bd92d8e1dbe33", + "_rev": "1-5e6fd6770318c7a60c7a5ed8b2f07466", + "oldid": "4eb391973de67c51170003b2", + "contributors": null, + "truncated": false, + "text": "No Outback com a Ju (@ Outback Steakhouse) http://t.co/B7coI0d0", + "in_reply_to_status_id": null, + "id": 132356443948072960, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 43, + 63 + ], + "url": "http://t.co/B7coI0d0", + "expanded_url": "http://4sq.com/tml3Y0", + "display_url": "4sq.com/tml3Y0" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 150.68364859, + -33.76003464 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356443948072962", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1104261524/eu2mini_normal.jpg", + "profile_sidebar_fill_color": "1c1c1c", + "id": 31822238, + "profile_text_color": "666666", + "followers_count": 54, + "profile_sidebar_border_color": "404040", + "id_str": "31822238", + "profile_background_color": "0f0f0f", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 338, + "description": "Brasileiro vivendo em Melbourne com a esposa", + "friends_count": 92, + "location": "Melbourne, Australia", + "profile_link_color": "627e91", + "profile_image_url": "http://a0.twimg.com/profile_images/1104261524/eu2mini_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/258376782/xe2f1772d1ed8ebaf15cea79096a2390.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/258376782/xe2f1772d1ed8ebaf15cea79096a2390.jpg", + "name": "Samir Buchaim", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "alucardsp", + "notifications": null, + "url": "http://samirau.wordpress.com", + "created_at": "Thu Apr 16 14:15:19 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.76003464, + 150.68364859 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:20:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1dc73a", + "_rev": "1-584ae51f6c71de420337adcd17a2a0b4", + "oldid": "4eb391973de67c51170003b3", + "favorited": false, + "in_reply_to_user_id": 241713561, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@voyerfreak I'm turning into a vile old queen!! #sharingisforcaring", + "created_at": "Fri Nov 04 07:20:10 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356203748659200", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.22532117, + -33.8706445 + ] + }, + "id": 132356445936168960, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 241713561, + "id_str": "241713561", + "screen_name": "voyerfreak", + "name": "JohnnySin" + } + ], + "hashtags": [ + { + "indices": [ + 48, + 67 + ], + "text": "sharingisforcaring" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132356203748659200, + "in_reply_to_screen_name": "voyerfreak", + "id_str": "132356445936168960", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8706445, + 151.22532117 + ] + }, + "in_reply_to_user_id_str": "241713561", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 254449910, + "profile_text_color": "333333", + "followers_count": 316, + "profile_sidebar_border_color": "C0DEED", + "id_str": "254449910", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 1174, + "description": "Senior .NET Developer@ Amnesia Razorfish, melbournian @ heart, 24/7 homosexual, My thoughts are my own and dont represent my employers or clients views.", + "friends_count": 549, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robbie Tapping", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "robbiectapping", + "notifications": null, + "url": "http://www.robbietapping.com.au", + "created_at": "Sat Feb 19 09:00:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1dd2ff", + "_rev": "1-c3ba2d6d91355c761331f713ada504f7", + "oldid": "4eb391a33de67c51170003b4", + "contributors": null, + "truncated": false, + "text": "Friday super pump #gym (@ Fitness First Platinum) http://t.co/TrakAo4U", + "in_reply_to_status_id": null, + "id": 132356494980165630, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 18, + 22 + ], + "text": "gym" + } + ], + "urls": [ + { + "indices": [ + 50, + 70 + ], + "url": "http://t.co/TrakAo4U", + "expanded_url": "http://4sq.com/t1NVTg", + "display_url": "4sq.com/t1NVTg" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 153.40883732, + -28.03865248 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356494980165632", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/56426464/eu_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 15360204, + "profile_text_color": "333333", + "followers_count": 75, + "profile_sidebar_border_color": "C0DEED", + "id_str": "15360204", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 678, + "description": "", + "friends_count": 125, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/56426464/eu_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andre", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "abocati", + "notifications": null, + "url": null, + "created_at": "Wed Jul 09 00:39:51 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -28.03865248, + 153.40883732 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:20:22 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1ddd00", + "_rev": "1-6a667ab938088693dc348617d264fdc9", + "oldid": "4eb391a63de67c51170003b5", + "contributors": null, + "truncated": false, + "text": "I'm at Mount Barker Central (Hutchinson street, Mt Barker) http://t.co/f0wNfIfp", + "in_reply_to_status_id": null, + "id": 132356509060448260, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 59, + 79 + ], + "url": "http://t.co/f0wNfIfp", + "expanded_url": "http://4sq.com/v0DhK5", + "display_url": "4sq.com/v0DhK5" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.859638, + -35.064582 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356509060448256", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1326062532/Di_normal.jpg", + "profile_sidebar_fill_color": "4A1A2C", + "id": 163662934, + "profile_text_color": "BDCF4F", + "followers_count": 458, + "profile_sidebar_border_color": "BE3557", + "id_str": "163662934", + "profile_background_color": "F7F2B2", + "listed_count": 6, + "utc_offset": 34200, + "statuses_count": 1373, + "description": "With so many fun things to do, how come there is so little time and money to do them.....?", + "friends_count": 857, + "location": "Hahndorf", + "profile_link_color": "84815B", + "profile_image_url": "http://a0.twimg.com/profile_images/1326062532/Di_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/219735999/x669db08733bfb54bde0a30d7216cc75.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/219735999/x669db08733bfb54bde0a30d7216cc75.png", + "name": "Di Meyer", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "Amble2", + "notifications": null, + "url": "http://www.amble-at-hahndorf.com.au", + "created_at": "Wed Jul 07 00:12:20 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.064582, + 138.859638 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:20:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1dde18", + "_rev": "1-1fcf8ce75951814c9ccce6466cbb83b2", + "oldid": "4eb391ad3de67c51170003b6", + "favorited": false, + "in_reply_to_user_id": 296619290, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@dannmauro will you be here in January for the Sydney international?", + "created_at": "Fri Nov 04 07:20:32 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355113187688448", + "coordinates": { + "type": "Point", + "coordinates": [ + 153.42666511, + -27.99962695 + ] + }, + "id": 132356539704016900, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 10 + ], + "id": 296619290, + "id_str": "296619290", + "screen_name": "dannmauro", + "name": "Daniel Mauro" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355113187688450, + "in_reply_to_screen_name": "dannmauro", + "id_str": "132356539704016896", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -27.99962695, + 153.42666511 + ] + }, + "in_reply_to_user_id_str": "296619290", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1527157009/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 366934445, + "profile_text_color": "333333", + "followers_count": 224, + "profile_sidebar_border_color": "C0DEED", + "id_str": "366934445", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": null, + "statuses_count": 267, + "description": "loves AFL and the @Brisbanelions Also do not mind a good party.. Recently moved to Sydney for work", + "friends_count": 1121, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1527157009/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Brad Schutz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "bradjloveafl", + "notifications": null, + "url": null, + "created_at": "Sat Sep 03 02:45:39 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1de89e", + "_rev": "1-279ab6246770b4efadd6218921d7b1a5", + "oldid": "4eb391b33de67c51170003b7", + "contributors": null, + "truncated": false, + "text": "GB 7th Anniversarry Botol Music,For NgeMC ToNight. (@ Botol Musik) http://t.co/qBh3dS8E", + "in_reply_to_status_id": null, + "id": 132356561954816000, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 67, + 87 + ], + "url": "http://t.co/qBh3dS8E", + "expanded_url": "http://4sq.com/sEDWq0", + "display_url": "4sq.com/sEDWq0" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 123.5948518, + -10.1843014 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356561954816000", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1241300534/CID9677_normal.jpg", + "profile_sidebar_fill_color": "95E8EC", + "id": 72439089, + "profile_text_color": "3C3940", + "followers_count": 170, + "profile_sidebar_border_color": "5ED4DC", + "id_str": "72439089", + "profile_background_color": "0099B9", + "listed_count": 2, + "utc_offset": 28800, + "statuses_count": 3105, + "description": "♥ Put ♥ this ♥ on ♥ anyone's ♥ page ♥ who ♥ made ♥ you ♥ smile♥ somewhere ♥ sometime ♥ in ♥ your ♥ life. ♥♥ It ♥ may ♥ surprise ♥ you, ♥ but ♥ ", + "friends_count": 231, + "location": "ÜT: -10.158658,123.613255", + "profile_link_color": "0099B9", + "profile_image_url": "http://a0.twimg.com/profile_images/1241300534/CID9677_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme4/bg.gif", + "name": "khenzy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "KennySaja", + "notifications": null, + "url": null, + "created_at": "Tue Sep 08 01:31:54 +0000 2009", + "contributors_enabled": false, + "time_zone": "Kuala Lumpur", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -10.1843014, + 123.5948518 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:20:38 +0000 2011", + "in_reply_to_status_id_str": null, + "place": { + "country_code": "ID", + "url": "http://api.twitter.com/1/geo/id/7b6d4729251ea40b.json", + "country": "Indonesia", + "place_type": "admin", + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 117.344055, + -10.997407 + ], + [ + 125.169182, + -10.997407 + ], + [ + 125.169182, + -8.062931 + ], + [ + 117.344055, + -8.062931 + ] + ] + ] + }, + "full_name": "Nusa Tenggara Timur, Indonesia", + "attributes": {}, + "id": "7b6d4729251ea40b", + "name": "Nusa Tenggara Timur" + } + }, + { + "_id": "51f39676462cca21859bd92d8e1dedc2", + "_rev": "1-c09edf8d888f81c731ff6d8b9eb2d9c8", + "oldid": "4eb391b43de67c51170003b8", + "contributors": null, + "truncated": false, + "text": "I'm at Flinders Street Station (Flinders St., at St. Kilda Rd., Melbourne) w/ 13 others http://t.co/QpVKM6cb", + "in_reply_to_status_id": null, + "id": 132356568355323900, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 88, + 108 + ], + "url": "http://t.co/QpVKM6cb", + "expanded_url": "http://4sq.com/vgzVEt", + "display_url": "4sq.com/vgzVEt" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96705651, + -37.81833607 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356568355323904", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1259363917/268860453_normal.jpg", + "profile_sidebar_fill_color": "e5d6e8", + "id": 162262909, + "profile_text_color": "2b2424", + "followers_count": 87, + "profile_sidebar_border_color": "d6cbcb", + "id_str": "162262909", + "profile_background_color": "070708", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1893, + "description": "✧Late Bloomer ✧Soul Searcher ✧ Professional Poser ✧", + "friends_count": 126, + "location": "Where the smiles are......", + "profile_link_color": "12a4e3", + "profile_image_url": "http://a1.twimg.com/profile_images/1259363917/268860453_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/119376865/c-00512.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/119376865/c-00512.jpg", + "name": "Jolene Chin", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "JoleneChin", + "notifications": null, + "url": null, + "created_at": "Sat Jul 03 04:19:54 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81833607, + 144.96705651 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:20:39 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1df00c", + "_rev": "1-45cdd54e1ad65acd9d788a85021696a8", + "oldid": "4eb391b73de67c51170003b9", + "contributors": null, + "truncated": false, + "text": "Going to Melbourne to take my 3 daughters to Stakes Day at Flemington tomorrow (@ Gate 3 (T3 Qantas Domestic)) http://t.co/q5yQ9uUz", + "in_reply_to_status_id": null, + "id": 132356581236023300, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 111, + 131 + ], + "url": "http://t.co/q5yQ9uUz", + "expanded_url": "http://4sq.com/rzRWs6", + "display_url": "4sq.com/rzRWs6" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.179495, + -33.932553 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356581236023297", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1244795242/madmen_icon_normal.jpg", + "profile_sidebar_fill_color": "f2ede9", + "id": 16235511, + "profile_text_color": "333333", + "followers_count": 4000, + "profile_sidebar_border_color": "0a0907", + "id_str": "16235511", + "profile_background_color": "f7f7f7", + "listed_count": 61, + "utc_offset": 36000, + "statuses_count": 3132, + "description": "Pitch Doctor, Negotiator, Problem Solver, Founder & MD of TrinityP3 - marketing management consultants. Also Ex-scientist & Ex-CD", + "friends_count": 4398, + "location": "Sydney", + "profile_link_color": "192085", + "profile_image_url": "http://a1.twimg.com/profile_images/1244795242/madmen_icon_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/205638371/madmen_standard.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/205638371/madmen_standard.jpg", + "name": "Darren Woolley", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "darrenp3", + "notifications": null, + "url": "http://www.trinityp3.com", + "created_at": "Thu Sep 11 06:46:23 +0000 2008", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.932553, + 151.179495 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:20:42 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1df4cc", + "_rev": "1-e76549852cc396ed37c20bf2e5239208", + "oldid": "4eb391be3de67c51170003ba", + "favorited": false, + "in_reply_to_user_id": 718713, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@decryption how much did you pay for it?", + "created_at": "Fri Nov 04 07:20:48 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356164347367424", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.19218687, + -37.80266503 + ] + }, + "id": 132356605613318140, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 718713, + "id_str": "718713", + "screen_name": "decryption", + "name": "Anthony Agius" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356164347367420, + "in_reply_to_screen_name": "decryption", + "id_str": "132356605613318144", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.80266503, + 145.19218687 + ] + }, + "in_reply_to_user_id_str": "718713", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "profile_sidebar_fill_color": "252429", + "id": 16662767, + "profile_text_color": "666666", + "followers_count": 186, + "profile_sidebar_border_color": "181A1E", + "id_str": "16662767", + "profile_background_color": "1A1B1F", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 5443, + "description": "DJ, Video Editor, & All round Geek", + "friends_count": 285, + "location": "Bulleen, Victoria", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1303909267/James__-_cropped_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "James Smith", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 20, + "screen_name": "smithjw", + "notifications": null, + "url": "http://smithjw.me", + "created_at": "Thu Oct 09 05:47:54 +0000 2008", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1dfe6e", + "_rev": "1-83fa79aad35482ed3bb028236143fc75", + "oldid": "4eb391c23de67c51170003bb", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "I get constantly annoyed when I can't figure out the names of the people coming out of the Chairman's Lounge, with tell-tale black q-tags", + "created_at": "Fri Nov 04 07:20:53 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.19438871, + -35.30762739 + ] + }, + "id": 132356625527877630, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356625527877632", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.30762739, + 149.19438871 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1389907488/gitmo3_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 139084515, + "profile_text_color": "333333", + "followers_count": 30, + "profile_sidebar_border_color": "C0DEED", + "id_str": "139084515", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 189, + "description": "", + "friends_count": 144, + "location": "", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1389907488/gitmo3_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "byro", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "byrokelly", + "notifications": null, + "url": null, + "created_at": "Sat May 01 14:02:31 +0000 2010", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e05ea", + "_rev": "1-ab583fe390a4919ffec2c109e37cf823", + "oldid": "4eb391c43de67c51170003bc", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://sandaysoft.com/\" rel=\"nofollow\">Sandaysoft Cumulus</a>", + "text": "Wind 4.7 kts NE. Barometer 1012.4 mb, Rising slowly. Temperature 23.0 °C. Rain today 0.0 mm. Humidity 43%", + "created_at": "Fri Nov 04 07:20:55 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.76305556, + -32.74527778 + ] + }, + "id": 132356632960184320, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356632960184320", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.74527778, + 151.76305556 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1559106823/PFTechlogo_avatar_normal.png", + "profile_sidebar_fill_color": "DDEEF6", + "id": 379712969, + "profile_text_color": "333333", + "followers_count": 1, + "profile_sidebar_border_color": "C0DEED", + "id_str": "379712969", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 2509, + "description": "Local weather from PF Technologies - Providing quality, affordable IT support in the Hunter Region and beyond ", + "friends_count": 4, + "location": "Raymond Terrace, NSW Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a0.twimg.com/profile_images/1559106823/PFTechlogo_avatar_normal.png", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "PF Technologies", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "PF_Technologies", + "notifications": null, + "url": "http://www.pftech.com.au", + "created_at": "Sun Sep 25 12:42:32 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e0a4a", + "_rev": "1-66310592411f6988ae659d18dc8462cd", + "oldid": "4eb391c63de67c51170003bd", + "favorited": false, + "in_reply_to_user_id": 21176388, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@bewaretheteddy why thankyou!", + "created_at": "Fri Nov 04 07:20:56 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132350985929625600", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.24746972, + -33.87529017 + ] + }, + "id": 132356640761577470, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 21176388, + "id_str": "21176388", + "screen_name": "bewaretheteddy", + "name": "Ben Clarke" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132350985929625600, + "in_reply_to_screen_name": "bewaretheteddy", + "id_str": "132356640761577472", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87529017, + 151.24746972 + ] + }, + "in_reply_to_user_id_str": "21176388", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1379697512/Screen_shot_2011-06-03_at_1.49.19_PM_normal.png", + "profile_sidebar_fill_color": "130F14", + "id": 174934407, + "profile_text_color": "B6B6B6", + "followers_count": 95, + "profile_sidebar_border_color": "FFFFFF", + "id_str": "174934407", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 447, + "description": "dabbling in the different design worlds", + "friends_count": 156, + "location": "melbourne, australia", + "profile_link_color": "31C8FD", + "profile_image_url": "http://a1.twimg.com/profile_images/1379697512/Screen_shot_2011-06-03_at_1.49.19_PM_normal.png", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131234415/x168fea96e9d13dd879e98d5daa002fb.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/131234415/x168fea96e9d13dd879e98d5daa002fb.jpg", + "name": "thomas frank", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "thomasfrank_", + "notifications": null, + "url": "http://www.thomasfrank.com.au", + "created_at": "Thu Aug 05 05:20:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e1252", + "_rev": "1-a4c9179a9e63055d02c97d6fd99b364c", + "oldid": "4eb391cd3de67c51170003be", + "contributors": null, + "truncated": false, + "text": "Is hoping Judy's home.. (@ Flinders Street Station w/ 13 others) http://t.co/FOrNQpeh", + "in_reply_to_status_id": null, + "id": 132356670302064640, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 65, + 85 + ], + "url": "http://t.co/FOrNQpeh", + "expanded_url": "http://4sq.com/utVibo", + "display_url": "4sq.com/utVibo" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96705651, + -37.81833607 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356670302064640", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1259363917/268860453_normal.jpg", + "profile_sidebar_fill_color": "e5d6e8", + "id": 162262909, + "profile_text_color": "2b2424", + "followers_count": 87, + "profile_sidebar_border_color": "d6cbcb", + "id_str": "162262909", + "profile_background_color": "070708", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1894, + "description": "✧Late Bloomer ✧Soul Searcher ✧ Professional Poser ✧", + "friends_count": 126, + "location": "Where the smiles are......", + "profile_link_color": "12a4e3", + "profile_image_url": "http://a1.twimg.com/profile_images/1259363917/268860453_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/119376865/c-00512.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/119376865/c-00512.jpg", + "name": "Jolene Chin", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "JoleneChin", + "notifications": null, + "url": null, + "created_at": "Sat Jul 03 04:19:54 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81833607, + 144.96705651 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e1309", + "_rev": "1-e99deb5a92b68f4bf337519456049659", + "oldid": "4eb391d23de67c51170003bf", + "favorited": false, + "in_reply_to_user_id": 255174160, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Hawksnicky @mattthompsonsen any passionate Melbournian would be upset she chose Sydney over #Melbourne", + "created_at": "Fri Nov 04 07:21:09 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347199131627520", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12453897, + -37.78380915 + ] + }, + "id": 132356693408485380, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 255174160, + "id_str": "255174160", + "screen_name": "Hawksnicky", + "name": "Nicky Laughton" + }, + { + "indices": [ + 12, + 28 + ], + "id": 29183782, + "id_str": "29183782", + "screen_name": "MattThompsonSEN", + "name": "Matt Thompson" + } + ], + "hashtags": [ + { + "indices": [ + 93, + 103 + ], + "text": "Melbourne" + } + ], + "urls": [] + }, + "in_reply_to_status_id": 132347199131627520, + "in_reply_to_screen_name": "Hawksnicky", + "id_str": "132356693408485376", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.78380915, + 145.12453897 + ] + }, + "in_reply_to_user_id_str": "255174160", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 276847675, + "profile_text_color": "333333", + "followers_count": 288, + "profile_sidebar_border_color": "C0DEED", + "id_str": "276847675", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2735, + "description": "Grumpy Old Man, social commentator, social entrepreneur, coffee Afficianado, wifi protagonist and Hawthorn Tragic. Blocked by @saintfrankly.", + "friends_count": 1056, + "location": "State of Confusion", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dominic A Papasergio", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "The_FishmanAU", + "notifications": null, + "url": "http://www.thefishman.net.au", + "created_at": "Mon Apr 04 06:08:28 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e20a5", + "_rev": "1-2d68c1e8cc61c8543c32b7ee4a492fb9", + "oldid": "4eb391db3de67c51170003c0", + "favorited": false, + "in_reply_to_user_id": 23947811, + "contributors": null, + "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iPhone</a>", + "text": "@doddas toughen up princess", + "created_at": "Fri Nov 04 07:21:18 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132353867995291648", + "coordinates": { + "type": "Point", + "coordinates": [ + 146.50907154, + -38.18928895 + ] + }, + "id": 132356731337576450, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 7 + ], + "id": 23947811, + "id_str": "23947811", + "screen_name": "doddas", + "name": "Shane Dodman" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132353867995291650, + "in_reply_to_screen_name": "doddas", + "id_str": "132356731337576448", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -38.18928895, + 146.50907154 + ] + }, + "in_reply_to_user_id_str": "23947811", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1610552346/hy2A2Chz_normal", + "profile_sidebar_fill_color": "252429", + "id": 33896361, + "profile_text_color": "666666", + "followers_count": 237, + "profile_sidebar_border_color": "181A1E", + "id_str": "33896361", + "profile_background_color": "1A1B1F", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 7128, + "description": "I'm me! that's it..love love love MFC :)", + "friends_count": 396, + "location": "The valley ,Victoria ", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/1610552346/hy2A2Chz_normal", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/236928925/39743_419569464494_607849494_4929537_5668064_n.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/236928925/39743_419569464494_607849494_4929537_5668064_n.jpg", + "name": "Ang", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 5, + "screen_name": "DemonGirl24x", + "notifications": null, + "url": null, + "created_at": "Tue Apr 21 13:06:28 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e2aeb", + "_rev": "1-6031e3d8fd74ee629f15ea2a994cd56c", + "oldid": "4eb391dd3de67c51170003c1", + "favorited": false, + "in_reply_to_user_id": 55752335, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Holdenman78 nice.. Enjoy. I love Inception! Great movie.", + "created_at": "Fri Nov 04 07:21:19 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132346664085225472", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.70060127, + -37.56520472 + ] + }, + "id": 132356737452875780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 55752335, + "id_str": "55752335", + "screen_name": "Holdenman78", + "name": "Shannon" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132346664085225470, + "in_reply_to_screen_name": "Holdenman78", + "id_str": "132356737452875776", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.56520472, + 144.70060127 + ] + }, + "in_reply_to_user_id_str": "55752335", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1616747879/image_normal.jpg", + "profile_sidebar_fill_color": "060805", + "id": 22597064, + "profile_text_color": "ff058f", + "followers_count": 196, + "profile_sidebar_border_color": "655f8c", + "id_str": "22597064", + "profile_background_color": "873b40", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 3949, + "description": "I love Glitter, Manic Panic Hair Dye, Cupcakes, Tattoos, Lip Gloss, P!nk, Collingwood Football Club, My Kids, My Husband & My Best Friend.", + "friends_count": 940, + "location": "Australia", + "profile_link_color": "1294ff", + "profile_image_url": "http://a2.twimg.com/profile_images/1616747879/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/123046242/Stars.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/123046242/Stars.jpg", + "name": "Kelly", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 547, + "screen_name": "Kels1979", + "notifications": null, + "url": null, + "created_at": "Tue Mar 03 07:06:24 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e2e34", + "_rev": "1-a6fe85d34c6847dcc1b06fab07ee0128", + "oldid": "4eb391e33de67c51170003c2", + "favorited": false, + "in_reply_to_user_id": 19045202, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@jeyyounit11 folllllllow MEEEEEEEEEEEEE pleassssseeeee?", + "created_at": "Fri Nov 04 07:21:26 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355945882853376", + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132356766183866370, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 19045202, + "id_str": "19045202", + "screen_name": "jeyyounit11", + "name": "Jeydon Wale" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355945882853380, + "in_reply_to_screen_name": "jeyyounit11", + "id_str": "132356766183866369", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": "19045202", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621725063/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3325, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1787, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621725063/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e30bf", + "_rev": "1-61f9d011c11d78c31a3419cd5a15a0fb", + "oldid": "4eb391e53de67c51170003c3", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "If you can get out of a work business trip, do you? #officepolitics", + "created_at": "Fri Nov 04 07:21:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.0183168, + -33.8334438 + ] + }, + "id": 132356771598700540, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 52, + 67 + ], + "text": "officepolitics" + } + ], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132356771598700545", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8334438, + 151.0183168 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 29427165, + "profile_text_color": "3D1957", + "followers_count": 67, + "profile_sidebar_border_color": "65B0DA", + "id_str": "29427165", + "profile_background_color": "642D8B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1639, + "description": "Controlled by society. As wise as ever.", + "friends_count": 134, + "location": "Sydney's Suburbs.", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Vanessa Burton", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "__robotowl", + "notifications": null, + "url": null, + "created_at": "Tue Apr 07 11:13:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e381e", + "_rev": "1-f9b7c5d43ab6ec1a9622e95f9a34850a", + "oldid": "4eb391e83de67c51170003c4", + "contributors": null, + "truncated": false, + "text": "Kata siapa??RT @dosen_creek: tuh yg mau android... @ponimiring >>RT Andoid Gampang Rusak: (cont) http://t.co/7oEtTur0", + "in_reply_to_status_id": null, + "id": 132356782868807680, + "entities": { + "user_mentions": [ + { + "indices": [ + 15, + 27 + ], + "id": 45786989, + "id_str": "45786989", + "screen_name": "dosen_creek", + "name": "abdiok" + }, + { + "indices": [ + 51, + 62 + ], + "id": 77378655, + "id_str": "77378655", + "screen_name": "ponimiring", + "name": "poni" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 104, + 124 + ], + "url": "http://t.co/7oEtTur0", + "expanded_url": "http://tl.gd/e073gf", + "display_url": "tl.gd/e073gf" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.600771, + -34.923055 + ] + }, + "source": "<a href=\"http://www.handmark.com\" rel=\"nofollow\">TweetCaster for iOS</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356782868807680", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1566740294/gue01_resize_normal.JPG", + "profile_sidebar_fill_color": "d4be2f", + "id": 161580256, + "profile_text_color": "5c405c", + "followers_count": 448, + "profile_sidebar_border_color": "87bc44", + "id_str": "161580256", + "profile_background_color": "2c9ba1", + "listed_count": 3, + "utc_offset": 34200, + "statuses_count": 2554, + "description": "I'm......the less you know, the better!! That's it.", + "friends_count": 99, + "location": "Adelaide, South Australia", + "profile_link_color": "1100ff", + "profile_image_url": "http://a2.twimg.com/profile_images/1566740294/gue01_resize_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/131753363/Foto_Thema_Wawan05.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/131753363/Foto_Thema_Wawan05.jpg", + "name": "Ridwan Anom", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "WawanAnom", + "notifications": null, + "url": "http://ridwananom79.wordpress.com/", + "created_at": "Thu Jul 01 05:55:34 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -34.923055, + 138.600771 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:30 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e41bd", + "_rev": "1-dac519116c47dbe6717788943bcf149d", + "oldid": "4eb391e83de67c51170003c5", + "contributors": null, + "truncated": false, + "text": "Just posted a photo @ Pitt Street Mall http://t.co/TKQ0aF6C", + "in_reply_to_status_id": null, + "id": 132356785658015740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 40, + 60 + ], + "url": "http://t.co/TKQ0aF6C", + "expanded_url": "http://instagr.am/p/SqcSx/", + "display_url": "instagr.am/p/SqcSx/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20824575, + -33.86986324 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356785658015745", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/628541347/n630961191_287075_3027_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 21298838, + "profile_text_color": "663B12", + "followers_count": 97, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "21298838", + "profile_background_color": "C6E2EE", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 543, + "description": "Just ordinary man with extra-ordinary God", + "friends_count": 125, + "location": "Sydney, New South Wales", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a0.twimg.com/profile_images/628541347/n630961191_287075_3027_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Ferdinand Dinz", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "Deedinz", + "notifications": null, + "url": null, + "created_at": "Thu Feb 19 13:46:53 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.86986324, + 151.20824575 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:31 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e4518", + "_rev": "1-f55503ca39f2e361a4ae819b7a7e5cc2", + "oldid": "4eb391ed3de67c51170003c6", + "contributors": null, + "truncated": false, + "text": "I'm at Hoo Haa (1/105 Chapel St., btwn Green St. & Union St., Windsor) http://t.co/vJxdV8GD", + "in_reply_to_status_id": null, + "id": 132356807086714880, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 71, + 91 + ], + "url": "http://t.co/vJxdV8GD", + "expanded_url": "http://4sq.com/s4UjGg", + "display_url": "4sq.com/s4UjGg" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.992799, + -37.853929 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356807086714880", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/382042517/n575941524_2156868_4098044_normal.jpg", + "profile_sidebar_fill_color": "f6ffd1", + "id": 25994839, + "profile_text_color": "333333", + "followers_count": 351, + "profile_sidebar_border_color": "fff8ad", + "id_str": "25994839", + "profile_background_color": "FFF04D", + "listed_count": 7, + "utc_offset": 36000, + "statuses_count": 545, + "description": "Assistant Producer of @RossAndJohn on @3AW693; \r\nPolitics nerd; &\r\nDemons tragic. \r\nMy tweets are my own & quotes/RTs are not indicative of endorsement.", + "friends_count": 919, + "location": "Melbourne, Australia", + "profile_link_color": "0099CC", + "profile_image_url": "http://a2.twimg.com/profile_images/382042517/n575941524_2156868_4098044_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme19/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme19/bg.gif", + "name": "Ellen Feely", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 5, + "screen_name": "ellenjade", + "notifications": null, + "url": null, + "created_at": "Mon Mar 23 12:54:37 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.853929, + 144.992799 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:36 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e4d69", + "_rev": "1-7660dfedcf0b85edd6faec20bae0a1c0", + "oldid": "4eb391ef3de67c51170003c7", + "contributors": null, + "truncated": false, + "text": "Here it its.. The charlotte royal. :) @ William Angliss Institute http://t.co/UYV8633l", + "in_reply_to_status_id": null, + "id": 132356813143293950, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 67, + 87 + ], + "url": "http://t.co/UYV8633l", + "expanded_url": "http://instagr.am/p/SqcPm/", + "display_url": "instagr.am/p/SqcPm/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.9537432, + -37.812878 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356813143293952", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1333943852/290418316_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 149362029, + "profile_text_color": "333333", + "followers_count": 193, + "profile_sidebar_border_color": "C0DEED", + "id_str": "149362029", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 25200, + "statuses_count": 2233, + "description": "Big dreamer!", + "friends_count": 175, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a1.twimg.com/profile_images/1333943852/290418316_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Elwin yohan", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 59, + "screen_name": "ElwinYohan", + "notifications": null, + "url": null, + "created_at": "Sat May 29 03:03:39 +0000 2010", + "contributors_enabled": false, + "time_zone": "Jakarta", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.812878, + 144.9537432 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:37 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e56f5", + "_rev": "1-9e41982b7828465c4cb6dd4f47403c4a", + "oldid": "4eb391f73de67c51170003c8", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1470508320/Nat_Dancing_normal", + "profile_sidebar_fill_color": "7AC3EE", + "id": 345834713, + "profile_text_color": "3D1957", + "followers_count": 19, + "protected": false, + "id_str": "345834713", + "default_profile_image": false, + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 138, + "description": "Soo Im Natalie Junee. Im 19 and live in the most beautiful place in the world Northern Beaches, Sydney, Australia. Im new at this so bare with me !!!!!\r\n", + "friends_count": 124, + "location": "Northern Beaches ", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1470508320/Nat_Dancing_normal", + "notifications": null, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_color": "642D8B", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Natalie Junee", + "lang": "en", + "following": null, + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "NatalieJunee", + "url": "http://www.facebook.com/NatalieJunee", + "created_at": "Sun Jul 31 07:34:23 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "profile_sidebar_border_color": "65B0DA", + "default_profile": false, + "is_translator": false + }, + "favorited": false, + "in_reply_to_user_id": 20322929, + "contributors": null, + "truncated": false, + "text": "@RealWizKhalifa I'm pretty sure you need to come to #Australia ASAP we love you here !! Sincerely your Aussie fans xx", + "created_at": "Fri Nov 04 07:21:46 +0000 2011", + "retweeted": false, + "in_reply_to_status_id": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.32402443, + -33.64834943 + ] + }, + "id": 132356849335943170, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 20322929, + "id_str": "20322929", + "screen_name": "RealWizKhalifa", + "name": "Wiz Khalifa" + } + ], + "hashtags": [ + { + "indices": [ + 52, + 62 + ], + "text": "Australia" + } + ], + "urls": [] + }, + "in_reply_to_status_id_str": null, + "place": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": "RealWizKhalifa", + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.64834943, + 151.32402443 + ] + }, + "in_reply_to_user_id_str": "20322929", + "id_str": "132356849335943168" + }, + { + "_id": "51f39676462cca21859bd92d8e1e6662", + "_rev": "1-c37d599d2c58306bedd0c5e98e420ee0", + "oldid": "4eb391fa3de67c51170003c9", + "contributors": null, + "truncated": false, + "text": "I'm at The Mansfield Hotel (86 High St., Mansfield) http://t.co/SPfFQF5C", + "in_reply_to_status_id": null, + "id": 132356860979318780, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 52, + 72 + ], + "url": "http://t.co/SPfFQF5C", + "expanded_url": "http://4sq.com/tfEMOl", + "display_url": "4sq.com/tfEMOl" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.0884538, + -37.0524569 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356860979318784", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/934933186/Limos_By_James_lower_res_normal.jpg", + "profile_sidebar_fill_color": "ddffcd", + "id": 79685198, + "profile_text_color": "333333", + "followers_count": 1122, + "profile_sidebar_border_color": "bddcad", + "id_str": "79685198", + "profile_background_color": "ffffff", + "listed_count": 66, + "utc_offset": 36000, + "statuses_count": 5379, + "description": "limobyjames.com \ne limobyjames@gmail.com \nbh Call 13 LIMO (13 5466) or \nah 0411 745 132 \nFirst Class Service for all Occasions. ", + "friends_count": 2000, + "location": "Brisbane Airport, Queensland", + "profile_link_color": "0084b4", + "profile_image_url": "http://a1.twimg.com/profile_images/934933186/Limos_By_James_lower_res_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/106545344/2010-05-29_19-59-39_60.231.154.6.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/106545344/2010-05-29_19-59-39_60.231.154.6.jpg", + "name": "limobyjames.com", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1328, + "screen_name": "limobyjames", + "notifications": null, + "url": "http://limobyjames.com", + "created_at": "Sun Oct 04 08:22:57 +0000 2009", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.0524569, + 146.0884538 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:49 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e6c35", + "_rev": "1-869d458bed06d0da795c38866bdba3f0", + "oldid": "4eb391fa3de67c51170003ca", + "favorited": false, + "in_reply_to_user_id": 53237689, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@FallofReach on bluray I assume?\nIt's a pretty great season.", + "created_at": "Fri Nov 04 07:21:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132345112909975552", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.1458817, + -37.03216543 + ] + }, + "id": 132356861411332100, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 12 + ], + "id": 53237689, + "id_str": "53237689", + "screen_name": "FallofReach", + "name": "Cameron Savage" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132345112909975550, + "in_reply_to_screen_name": "FallofReach", + "id_str": "132356861411332096", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.03216543, + 145.1458817 + ] + }, + "in_reply_to_user_id_str": "53237689", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1587309833/avatar33392_1_normal.gif", + "profile_sidebar_fill_color": "DDEEF6", + "id": 37848654, + "profile_text_color": "333333", + "followers_count": 72, + "profile_sidebar_border_color": "C0DEED", + "id_str": "37848654", + "profile_background_color": "000000", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1946, + "description": "Aussie Gamer & Writer. Starting a game dev, somehow, now taking applications :D", + "friends_count": 194, + "location": "Melbourne, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1587309833/avatar33392_1_normal.gif", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/129876800/16633_194003908865_789528865_2938115_6175529_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/129876800/16633_194003908865_789528865_2938115_6175529_n.jpg", + "name": "Leo Stevenson", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 1, + "screen_name": "DeltaPhoenix08", + "notifications": null, + "url": "http://gameslifeaus.blogspot.com/", + "created_at": "Tue May 05 03:40:40 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e7239", + "_rev": "1-95ea31c4756c41f99ce0fd5891960ca6", + "oldid": "4eb391fc3de67c51170003cb", + "contributors": null, + "truncated": false, + "text": "Early end to the week with workmates /cc @frontiergroup – at The Brown Fox http://t.co/1Be8YTjn", + "in_reply_to_status_id": null, + "id": 132356868986249220, + "entities": { + "user_mentions": [ + { + "indices": [ + 41, + 55 + ], + "id": 16125438, + "id_str": "16125438", + "screen_name": "frontiergroup", + "name": "The Frontier Group" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 75, + 95 + ], + "url": "http://t.co/1Be8YTjn", + "expanded_url": "http://gowalla.com/stories/5cxjh", + "display_url": "gowalla.com/stories/5cxjh" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 115.84040165, + -31.94711886 + ] + }, + "source": "<a href=\"http://gowalla.com/\" rel=\"nofollow\">Gowalla</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356868986249216", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1367810267/twit_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 1484761, + "profile_text_color": "333333", + "followers_count": 1065, + "profile_sidebar_border_color": "C0DEED", + "id_str": "1484761", + "profile_background_color": "C0DEED", + "listed_count": 86, + "utc_offset": 28800, + "statuses_count": 23615, + "description": "Designer/Developer working on websites and applications for the most populated tubes in the world from the most isolated city in the world, Perth, WA.", + "friends_count": 95, + "location": "Perth, Western Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a3.twimg.com/profile_images/1367810267/twit_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Karl Brightman", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 753, + "screen_name": "karlbright", + "notifications": null, + "url": "http://www.dribbble.com/karlbright", + "created_at": "Mon Mar 19 09:22:24 +0000 2007", + "contributors_enabled": false, + "time_zone": "Perth", + "protected": false, + "default_profile": true, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -31.94711886, + 115.84040165 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:51 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e7678", + "_rev": "1-48a7eccbf3c89754e5043dbd9a3175ef", + "oldid": "4eb391ff3de67c51170003cc", + "favorited": false, + "in_reply_to_user_id": 106275079, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@TomPTYP pft, saw it and thought you might want it. Alright, well me Ryan and Sam are going out probably will organize something soon", + "created_at": "Fri Nov 04 07:21:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356316088893440", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.17956833, + -33.93390527 + ] + }, + "id": 132356882886168580, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 8 + ], + "id": 106275079, + "id_str": "106275079", + "screen_name": "TomPTYP", + "name": "Thomas Salkowski" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356316088893440, + "in_reply_to_screen_name": "TomPTYP", + "id_str": "132356882886168577", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93390527, + 151.17956833 + ] + }, + "in_reply_to_user_id_str": "106275079", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595399771/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16257578, + "profile_text_color": "333333", + "followers_count": 228, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16257578", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 6578, + "description": "Twitter account of sean mildred. word to big bird", + "friends_count": 123, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1595399771/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sean Patrick Mildred", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "SeanMildred", + "notifications": null, + "url": "http://seanyptyp.tumblr.com", + "created_at": "Fri Sep 12 15:16:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e794c", + "_rev": "1-a70a367e810220ef48e111b3c26754bc", + "oldid": "4eb392003de67c51170003cd", + "favorited": false, + "in_reply_to_user_id": 255174160, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Hawksnicky it needs Hawthorn footballers to make it better!", + "created_at": "Fri Nov 04 07:21:54 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132347609208717312", + "coordinates": { + "type": "Point", + "coordinates": [ + 145.12486692, + -37.78413958 + ] + }, + "id": 132356884253519870, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 255174160, + "id_str": "255174160", + "screen_name": "Hawksnicky", + "name": "Nicky Laughton" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132347609208717310, + "in_reply_to_screen_name": "Hawksnicky", + "id_str": "132356884253519872", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.78413958, + 145.12486692 + ] + }, + "in_reply_to_user_id_str": "255174160", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 276847675, + "profile_text_color": "333333", + "followers_count": 288, + "profile_sidebar_border_color": "C0DEED", + "id_str": "276847675", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 2736, + "description": "Grumpy Old Man, social commentator, social entrepreneur, coffee Afficianado, wifi protagonist and Hawthorn Tragic. Blocked by @saintfrankly.", + "friends_count": 1056, + "location": "State of Confusion", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1308919163/fishmans2_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Dominic A Papasergio", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 19, + "screen_name": "The_FishmanAU", + "notifications": null, + "url": "http://www.thefishman.net.au", + "created_at": "Mon Apr 04 06:08:28 +0000 2011", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1e85fb", + "_rev": "1-ba498424e8f5efbd7a5da9160dddae25", + "oldid": "4eb392033de67c51170003ce", + "contributors": null, + "truncated": false, + "text": "Here with @soniaquinn, the kids, my dad & his partner (@ Two Metre Tall Brewery) http://t.co/RMYhvEUB", + "in_reply_to_status_id": null, + "id": 132356896463134720, + "entities": { + "user_mentions": [ + { + "indices": [ + 10, + 21 + ], + "id": 244893468, + "id_str": "244893468", + "screen_name": "soniaquinn", + "name": "Sonia Quinn" + } + ], + "hashtags": [], + "urls": [ + { + "indices": [ + 81, + 101 + ], + "url": "http://t.co/RMYhvEUB", + "expanded_url": "http://4sq.com/vjlIgk", + "display_url": "4sq.com/vjlIgk" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 146.961057, + -42.727199 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356896463134720", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1504435536/image_normal.jpg", + "profile_sidebar_fill_color": "ebc6c1", + "id": 18366745, + "profile_text_color": "333333", + "followers_count": 696, + "profile_sidebar_border_color": "a8c7f7", + "id_str": "18366745", + "profile_background_color": "022330", + "listed_count": 37, + "utc_offset": 36000, + "statuses_count": 17151, + "description": "Husband, father & small business owner - who said being self- employed is a dream job!! Loves collecting, & drinking, wine & whiskies!!", + "friends_count": 551, + "location": "Hobart, Tasmania, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1504435536/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Andrew Quinn", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "quinnal", + "notifications": null, + "url": null, + "created_at": "Wed Dec 24 23:09:58 +0000 2008", + "contributors_enabled": false, + "time_zone": "Hobart", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -42.727199, + 146.961057 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:57 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e8f54", + "_rev": "1-6111bd5a00edb594a13ec95df97f3480", + "oldid": "4eb392043de67c51170003cf", + "contributors": null, + "truncated": false, + "text": "I'm at CPSU House (191-199 Thomas St., Ultimo Road, Haymarket) http://t.co/l9eTg7Jt", + "in_reply_to_status_id": null, + "id": 132356900368031740, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 63, + 83 + ], + "url": "http://t.co/l9eTg7Jt", + "expanded_url": "http://4sq.com/s7EDSA", + "display_url": "4sq.com/s7EDSA" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.203737, + -33.881008 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356900368031744", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1358740559/image_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 40659915, + "profile_text_color": "634047", + "followers_count": 447, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "40659915", + "profile_background_color": "EDECE9", + "listed_count": 39, + "utc_offset": 36000, + "statuses_count": 14232, + "description": "Passions: Good food, good wine, good company, Australian politics, human rights\r\nVices: coffee, gin, sci fi\r\nViews are my own\r\n", + "friends_count": 202, + "location": "Kellyville Ridge, Australia", + "profile_link_color": "088253", + "profile_image_url": "http://a2.twimg.com/profile_images/1358740559/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme3/bg.gif", + "name": "Brad Harvey", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 18, + "screen_name": "bradpharvey", + "notifications": null, + "url": "http://bradpharvey.blogspot.com", + "created_at": "Sun May 17 13:38:44 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -33.881008, + 151.203737 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:58 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1e9c5e", + "_rev": "1-7f2d33ff7405bb37693566685dfd089c", + "oldid": "4eb392043de67c51170003d0", + "contributors": null, + "truncated": false, + "text": "I'm at The Chop Shop (Mt Barker Central, Hutchison St., Mt Barker) http://t.co/feTnwYrV", + "in_reply_to_status_id": null, + "id": 132356901974441980, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 67, + 87 + ], + "url": "http://t.co/feTnwYrV", + "expanded_url": "http://4sq.com/rHOgFa", + "display_url": "4sq.com/rHOgFa" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.8587342, + -35.0672411 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356901974441985", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1326062532/Di_normal.jpg", + "profile_sidebar_fill_color": "4A1A2C", + "id": 163662934, + "profile_text_color": "BDCF4F", + "followers_count": 458, + "profile_sidebar_border_color": "BE3557", + "id_str": "163662934", + "profile_background_color": "F7F2B2", + "listed_count": 6, + "utc_offset": 34200, + "statuses_count": 1374, + "description": "With so many fun things to do, how come there is so little time and money to do them.....?", + "friends_count": 857, + "location": "Hahndorf", + "profile_link_color": "84815B", + "profile_image_url": "http://a0.twimg.com/profile_images/1326062532/Di_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/219735999/x669db08733bfb54bde0a30d7216cc75.png", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/219735999/x669db08733bfb54bde0a30d7216cc75.png", + "name": "Di Meyer", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 2, + "screen_name": "Amble2", + "notifications": null, + "url": "http://www.amble-at-hahndorf.com.au", + "created_at": "Wed Jul 07 00:12:20 +0000 2010", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.0672411, + 138.8587342 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:21:59 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1eaad6", + "_rev": "1-52e86c1844cda8e803f0342b3baad596", + "oldid": "4eb392083de67c51170003d1", + "contributors": null, + "truncated": false, + "text": "I'm at OpenHub (Level 1, 243 Collins Street, Manchester Lane, Melbourne) http://t.co/9QxQ6dkw", + "in_reply_to_status_id": null, + "id": 132356920668467200, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 73, + 93 + ], + "url": "http://t.co/9QxQ6dkw", + "expanded_url": "http://4sq.com/uuxUcw", + "display_url": "4sq.com/uuxUcw" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.965788, + -37.815988 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356920668467200", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1205174057/image_normal.jpg", + "profile_sidebar_fill_color": "cccccc", + "id": 29178625, + "profile_text_color": "333333", + "followers_count": 58, + "profile_sidebar_border_color": "bdb9bd", + "id_str": "29178625", + "profile_background_color": "131516", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 2056, + "description": "designer, artist, hack photographer, music lover, book reader, traveller", + "friends_count": 46, + "location": "", + "profile_link_color": "009999", + "profile_image_url": "http://a2.twimg.com/profile_images/1205174057/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme14/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme14/bg.gif", + "name": "Mark G", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 9, + "screen_name": "msg621", + "notifications": null, + "url": "http://about.me/markgeorgeson", + "created_at": "Mon Apr 06 10:48:22 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.815988, + 144.965788 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:22:03 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1eb860", + "_rev": "1-7c769f3efaa7d8859add7443956f25b9", + "oldid": "4eb3920c3de67c51170003d2", + "contributors": null, + "truncated": false, + "text": "Yes ... Time to pick myself up... and I will. xxx (@ Fitness First w/ 2 others) http://t.co/L66MWjVn", + "in_reply_to_status_id": null, + "id": 132356934807457800, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 80, + 100 + ], + "url": "http://t.co/L66MWjVn", + "expanded_url": "http://4sq.com/sR0oAL", + "display_url": "4sq.com/sR0oAL" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96324, + -37.81052 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356934807457793", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1547033189/aB_Licious__12__-_Copy_normal.JPG", + "profile_sidebar_fill_color": "03010a", + "id": 182179968, + "profile_text_color": "f5f6fa", + "followers_count": 241, + "profile_sidebar_border_color": "010d0d", + "id_str": "182179968", + "profile_background_color": "fa1414", + "listed_count": 1, + "utc_offset": -36000, + "statuses_count": 7424, + "description": "If you 'came OUT' as str8; I won't discriminate cos I’m AWESOME | My tweets are YOUR fault | Writing about nomadic journey of my life in underwear.. eh!", + "friends_count": 352, + "location": "Australia", + "profile_link_color": "fc6a71", + "profile_image_url": "http://a3.twimg.com/profile_images/1547033189/aB_Licious__12__-_Copy_normal.JPG", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/356367591/aB_Licious__7_.JPG", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/356367591/aB_Licious__7_.JPG", + "name": "Szebastian One ™", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 34, + "screen_name": "SzebastianOne", + "notifications": null, + "url": "http://Szebastian.com", + "created_at": "Tue Aug 24 00:49:21 +0000 2010", + "contributors_enabled": false, + "time_zone": "Hawaii", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.81052, + 144.96324 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:22:06 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1ec797", + "_rev": "1-186186e4daa557649013a0b9a377019f", + "oldid": "4eb392183de67c51170003d3", + "contributors": null, + "truncated": false, + "text": "http://t.co/rYkZB57p", + "in_reply_to_status_id": null, + "id": 132356984036016130, + "entities": { + "user_mentions": [], + "media": [ + { + "media_url_https": "https://p.twimg.com/AdY5-ckCQAEf_3e.jpg", + "expanded_url": "http://twitter.com/Ssaysettha/status/132356984036016128/photo/1", + "display_url": "pic.twitter.com/rYkZB57p", + "url": "http://t.co/rYkZB57p", + "sizes": { + "large": { + "h": 1024, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 340, + "w": 340, + "resize": "fit" + }, + "medium": { + "h": 600, + "w": 600, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "id_str": "132356984036016129", + "indices": [ + 0, + 20 + ], + "type": "photo", + "id": 132356984036016130, + "media_url": "http://p.twimg.com/AdY5-ckCQAEf_3e.jpg" + } + ], + "hashtags": [], + "urls": [] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.04390673, + -37.88954668 + ] + }, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132356984036016128", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621717664/Photo_on_2011-11-04_at_18.01__6_normal.jpg", + "profile_sidebar_fill_color": "e7e8d6", + "id": 222089335, + "profile_text_color": "333333", + "followers_count": 16, + "profile_sidebar_border_color": "8ddae0", + "id_str": "222089335", + "profile_background_color": "2d403d", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 62, + "description": "Me---Sibounheuang Saysettha(KoNG) (LaotianLAOS,vientiane) currently live in melbourne, work hard play hard $$$$$$$$$$$$$$$$$$$$$", + "friends_count": 27, + "location": "melbourne", + "profile_link_color": "185c39", + "profile_image_url": "http://a3.twimg.com/profile_images/1621717664/Photo_on_2011-11-04_at_18.01__6_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/353198404/1348.bag-of-money.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/353198404/1348.bag-of-money.jpg", + "name": "Ssaysettha", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 0, + "screen_name": "Ssaysettha", + "notifications": null, + "url": "http://www.facebook.com/Saysettha.s", + "created_at": "Thu Dec 02 12:42:03 +0000 2010", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.88954668, + 145.04390673 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:22:19 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1ed56b", + "_rev": "1-0c175b0891c8217d0935ad09892a6400", + "oldid": "4eb3921e3de67c51170003d4", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Onde2 :D RT @emilyjane_x3: @StefJaW ooh what is in your display picture? :o looks very spongy ~”", + "created_at": "Fri Nov 04 07:22:24 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.06749562, + -33.77540636 + ] + }, + "id": 132357009650626560, + "entities": { + "user_mentions": [ + { + "indices": [ + 12, + 25 + ], + "id": 188699428, + "id_str": "188699428", + "screen_name": "emilyjane_x3", + "name": "Emily Jane Purnomo" + }, + { + "indices": [ + 27, + 35 + ], + "id": 211462749, + "id_str": "211462749", + "screen_name": "StefJaW", + "name": "Stefanus Jayawinata" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132357009650626560", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77540636, + 151.06749562 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1618611573/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 211462749, + "profile_text_color": "333333", + "followers_count": 218, + "profile_sidebar_border_color": "C0DEED", + "id_str": "211462749", + "profile_background_color": "C0DEED", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3717, + "description": "complicated = simple", + "friends_count": 214, + "location": "Indonesia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1618611573/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Stefanus Jayawinata", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "StefJaW", + "notifications": null, + "url": "http://www.stefjawgraph.blogspot.com", + "created_at": "Wed Nov 03 10:00:40 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ed5e5", + "_rev": "1-5aef12540fe2d7011cb9d1fab5bfc97a", + "oldid": "4eb3921e3de67c51170003d5", + "contributors": null, + "truncated": false, + "text": "I'm at Premier Images Photography (http://t.co/OAmr7Klh, Aberfoyle Park) http://t.co/X4PV4FMP", + "in_reply_to_status_id": null, + "id": 132357013383557120, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 35, + 55 + ], + "url": "http://t.co/OAmr7Klh", + "expanded_url": "http://www.premierimages.com.au", + "display_url": "premierimages.com.au" + }, + { + "indices": [ + 73, + 93 + ], + "url": "http://t.co/X4PV4FMP", + "expanded_url": "http://4sq.com/tWGLkT", + "display_url": "4sq.com/tWGLkT" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 138.598139, + -35.081903 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132357013383557120", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1098160734/q1137991910_4849_normal.jpg", + "profile_sidebar_fill_color": "DAECF4", + "id": 38147617, + "profile_text_color": "663B12", + "followers_count": 84, + "profile_sidebar_border_color": "C6E2EE", + "id_str": "38147617", + "profile_background_color": "C6E2EE", + "listed_count": 1, + "utc_offset": 34200, + "statuses_count": 346, + "description": "Professional Account Director.\r\nMaster of Photography", + "friends_count": 137, + "location": "Adelaide", + "profile_link_color": "1F98C7", + "profile_image_url": "http://a1.twimg.com/profile_images/1098160734/q1137991910_4849_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme2/bg.gif", + "name": "Christian Whamond", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 6, + "screen_name": "CWhamond", + "notifications": null, + "url": "http://www.whamond.net", + "created_at": "Wed May 06 09:40:49 +0000 2009", + "contributors_enabled": false, + "time_zone": "Adelaide", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -35.081903, + 138.598139 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:22:25 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1eda1f", + "_rev": "1-9994ef236c10a6f9061cecd01debd93b", + "oldid": "4eb392213de67c51170003d6", + "favorited": false, + "in_reply_to_user_id": 170925696, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@helenbanner98 now j see the relevance of yr newton q", + "created_at": "Fri Nov 04 07:22:28 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355282734039040", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.05998998, + -33.85429823 + ] + }, + "id": 132357024389406720, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 14 + ], + "id": 170925696, + "id_str": "170925696", + "screen_name": "helenbanner98", + "name": "Helen naylor" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355282734039040, + "in_reply_to_screen_name": "helenbanner98", + "id_str": "132357024389406720", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.85429823, + 151.05998998 + ] + }, + "in_reply_to_user_id_str": "170925696", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1578403188/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 380125668, + "profile_text_color": "333333", + "followers_count": 92, + "profile_sidebar_border_color": "C0DEED", + "id_str": "380125668", + "profile_background_color": "C0DEED", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 462, + "description": "Riff Born & Bred Since 1971, Panthers & LFC Man to the Core, Sports Lover, Bean Counter Extraordinaire & Father of Two Great Boys", + "friends_count": 913, + "location": "Riff Town Of Course", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1578403188/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Riffy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 14, + "screen_name": "RiffMan771", + "notifications": null, + "url": null, + "created_at": "Mon Sep 26 03:32:12 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1ee67a", + "_rev": "1-0e23827ca8263b83111a686b9f2c561a", + "oldid": "4eb392243de67c51170003d7", + "favorited": false, + "in_reply_to_user_id": 126274373, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "@LukeLukess fiddler sounds reasonable... Ill check my diary. Miss you!!", + "created_at": "Fri Nov 04 07:22:31 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132355338384052224", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.9980556, + -33.8320754 + ] + }, + "id": 132357036590637060, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 126274373, + "id_str": "126274373", + "screen_name": "LukeLukess", + "name": "Luke Lukess" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132355338384052220, + "in_reply_to_screen_name": "LukeLukess", + "id_str": "132357036590637056", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.8320754, + 150.9980556 + ] + }, + "in_reply_to_user_id_str": "126274373", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 29427165, + "profile_text_color": "3D1957", + "followers_count": 67, + "profile_sidebar_border_color": "65B0DA", + "id_str": "29427165", + "profile_background_color": "642D8B", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 1640, + "description": "Controlled by society. As wise as ever.", + "friends_count": 134, + "location": "Sydney's Suburbs.", + "profile_link_color": "FF0000", + "profile_image_url": "http://a1.twimg.com/profile_images/1352943797/aussievb_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme10/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme10/bg.gif", + "name": "Vanessa Burton", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 1, + "screen_name": "__robotowl", + "notifications": null, + "url": null, + "created_at": "Tue Apr 07 11:13:15 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1eee55", + "_rev": "1-8f5ee816b5743709549bd361f16a2a05", + "oldid": "4eb3922b3de67c51170003d8", + "favorited": false, + "in_reply_to_user_id": 57513894, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@TweetingDuff I'm hearing ya!!", + "created_at": "Fri Nov 04 07:22:38 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356702803734528", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.22578974, + -33.86945142 + ] + }, + "id": 132357067938865150, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 13 + ], + "id": 57513894, + "id_str": "57513894", + "screen_name": "TweetingDuff", + "name": "Jason Duff" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356702803734530, + "in_reply_to_screen_name": "TweetingDuff", + "id_str": "132357067938865152", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86945142, + 151.22578974 + ] + }, + "in_reply_to_user_id_str": "57513894", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 254449910, + "profile_text_color": "333333", + "followers_count": 316, + "profile_sidebar_border_color": "C0DEED", + "id_str": "254449910", + "profile_background_color": "C0DEED", + "listed_count": 5, + "utc_offset": 36000, + "statuses_count": 1175, + "description": "Senior .NET Developer@ Amnesia Razorfish, melbournian @ heart, 24/7 homosexual, My thoughts are my own and dont represent my employers or clients views.", + "friends_count": 549, + "location": "Sydney", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1521910533/304284_10150359534636719_589081718_9934065_6136640_n_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Robbie Tapping", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 10, + "screen_name": "robbiectapping", + "notifications": null, + "url": "http://www.robbietapping.com.au", + "created_at": "Sat Feb 19 09:00:18 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1efa50", + "_rev": "1-c2ff0eef8de4098dd97d783424069aae", + "oldid": "4eb3922e3de67c51170003d9", + "favorited": false, + "in_reply_to_user_id": 271854163, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@savagedd Sydney, waiting in domestic for 3 hours to get back to Brisbane sucks", + "created_at": "Fri Nov 04 07:22:40 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356212032405504", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.17963257, + -33.93387825 + ] + }, + "id": 132357077313142780, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 9 + ], + "id": 271854163, + "id_str": "271854163", + "screen_name": "savagedd", + "name": "Thomas Savage" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356212032405500, + "in_reply_to_screen_name": "savagedd", + "id_str": "132357077313142784", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.93387825, + 151.17963257 + ] + }, + "in_reply_to_user_id_str": "271854163", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595399771/image_normal.jpg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 16257578, + "profile_text_color": "333333", + "followers_count": 228, + "profile_sidebar_border_color": "C0DEED", + "id_str": "16257578", + "profile_background_color": "C0DEED", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 6579, + "description": "Twitter account of sean mildred. word to big bird", + "friends_count": 123, + "location": "Brisbane, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1595399771/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Sean Patrick Mildred", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "SeanMildred", + "notifications": null, + "url": "http://seanyptyp.tumblr.com", + "created_at": "Fri Sep 12 15:16:08 +0000 2008", + "contributors_enabled": false, + "time_zone": "Brisbane", + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1efcaf", + "_rev": "1-bd5be721eb295da13d3a5d77306c7af9", + "oldid": "4eb392323de67c51170003da", + "favorited": false, + "in_reply_to_user_id": 232992063, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@BrendenWoodTWO Gee. You & everyone else in media must be going.", + "created_at": "Fri Nov 04 07:22:45 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356646780411904", + "coordinates": { + "type": "Point", + "coordinates": [ + 151.11914108, + -33.77836667 + ] + }, + "id": 132357094853718020, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 232992063, + "id_str": "232992063", + "screen_name": "BrendenWoodTWO", + "name": "Brenden Wood" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356646780411900, + "in_reply_to_screen_name": "BrendenWoodTWO", + "id_str": "132357094853718016", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.77836667, + 151.11914108 + ] + }, + "in_reply_to_user_id_str": "232992063", + "user": { + "follow_request_sent": null, + "profile_use_background_image": false, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1436836987/Passport_Pic__3_normal.jpg", + "profile_sidebar_fill_color": "ffffff", + "id": 22340613, + "profile_text_color": "000000", + "followers_count": 152, + "profile_sidebar_border_color": "ffffff", + "id_str": "22340613", + "profile_background_color": "000000", + "listed_count": 6, + "utc_offset": 36000, + "statuses_count": 470, + "description": "Aspiring Media Mogul", + "friends_count": 164, + "location": "iPhone: -33.789055,151.084961", + "profile_link_color": "3b53f5", + "profile_image_url": "http://a3.twimg.com/profile_images/1436836987/Passport_Pic__3_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/26533025/sydney.jpg", + "profile_background_image_url": "http://a3.twimg.com/profile_background_images/26533025/sydney.jpg", + "name": "Robbie", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 2, + "screen_name": "RobbiejWood", + "notifications": null, + "url": null, + "created_at": "Sun Mar 01 07:15:06 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1f09c5", + "_rev": "1-fd57a49eecdf789750e0f523bdadd928", + "oldid": "4eb392333de67c51170003db", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": ":'( blaaaaah", + "created_at": "Fri Nov 04 07:22:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 116.03115936, + -32.13402619 + ] + }, + "id": 132357099345817600, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132357099345817600", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -32.13402619, + 116.03115936 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621725063/image_normal.jpg", + "profile_sidebar_fill_color": "7AC3EE", + "id": 128113950, + "profile_text_color": "3D1957", + "followers_count": 757, + "profile_sidebar_border_color": "65B0DA", + "id_str": "128113950", + "profile_background_color": "642D8B", + "listed_count": 0, + "utc_offset": -32400, + "statuses_count": 3326, + "description": "kaylene whyham.Single!.15.lip pierced. um sweeet funny cute :) im nice to eveyone.", + "friends_count": 1787, + "location": "Australia perth wa", + "profile_link_color": "FF0000", + "profile_image_url": "http://a2.twimg.com/profile_images/1621725063/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/243062648/167544_141853639209307_100001540163259_255201_5675340_n.jpg", + "name": "playboyscenecutie", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 161, + "screen_name": "kaylenebbe14", + "notifications": null, + "url": null, + "created_at": "Wed Mar 31 04:05:19 +0000 2010", + "contributors_enabled": false, + "time_zone": "Alaska", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1f12a8", + "_rev": "1-1b695f2428802d6c2f5cb90a3a8d17ff", + "oldid": "4eb392343de67c51170003dc", + "favorited": false, + "in_reply_to_user_id": 170306534, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@adamsantarossa omg!! U got both?!?!", + "created_at": "Fri Nov 04 07:22:46 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132336018685829120", + "coordinates": { + "type": "Point", + "coordinates": [ + 144.95149934, + -37.82805432 + ] + }, + "id": 132357102529294340, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 15 + ], + "id": 170306534, + "id_str": "170306534", + "screen_name": "adamsantarossa", + "name": "Adam Santarossa" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132336018685829120, + "in_reply_to_screen_name": "adamsantarossa", + "id_str": "132357102529294336", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -37.82805432, + 144.95149934 + ] + }, + "in_reply_to_user_id_str": "170306534", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/115646301/warhol-me_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 21726133, + "profile_text_color": "666666", + "followers_count": 189, + "profile_sidebar_border_color": "181A1E", + "id_str": "21726133", + "profile_background_color": "1A1B1F", + "listed_count": 4, + "utc_offset": 36000, + "statuses_count": 3161, + "description": "Shoot for the moon. Even if you miss, you'll land among the stars.", + "friends_count": 309, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a3.twimg.com/profile_images/115646301/warhol-me_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/232656848/twitback2.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/232656848/twitback2.jpg", + "name": "Lesley Weston", + "lang": "en", + "profile_background_tile": true, + "favourites_count": 13, + "screen_name": "LesleyWeston11", + "notifications": null, + "url": "http://lesleyweston.com", + "created_at": "Tue Feb 24 03:42:08 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1f194e", + "_rev": "1-6475e60a507e4aa3cf1ad9aed1f7397a", + "oldid": "4eb392373de67c51170003dd", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "Saw IL Divo @ Westfield and there were longer lines in the food court...", + "created_at": "Fri Nov 04 07:22:49 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20423199, + -33.87287431 + ] + }, + "id": 132357115124793340, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132357115124793344", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.87287431, + 151.20423199 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1417872136/image_normal.jpg", + "profile_sidebar_fill_color": "252429", + "id": 25596059, + "profile_text_color": "666666", + "followers_count": 101, + "profile_sidebar_border_color": "181A1E", + "id_str": "25596059", + "profile_background_color": "1A1B1F", + "listed_count": 0, + "utc_offset": 36000, + "statuses_count": 1078, + "description": "increase the peace~", + "friends_count": 91, + "location": "Sydney", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1417872136/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", + "profile_background_image_url": "http://a1.twimg.com/images/themes/theme9/bg.gif", + "name": "Eugene Ong", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 11, + "screen_name": "Eugene_O", + "notifications": null, + "url": null, + "created_at": "Fri Mar 20 23:11:29 +0000 2009", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1f27eb", + "_rev": "1-33b8d9a79c3281851e1f3220e8af13ee", + "oldid": "4eb392403de67c51170003de", + "favorited": false, + "in_reply_to_user_id": 195963947, + "contributors": null, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "@Lovemyjags hey bruh. How u doin??", + "created_at": "Fri Nov 04 07:22:59 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": "132356165043630080", + "coordinates": { + "type": "Point", + "coordinates": [ + 150.74418774, + -34.02966466 + ] + }, + "id": 132357154282811400, + "entities": { + "user_mentions": [ + { + "indices": [ + 0, + 11 + ], + "id": 195963947, + "id_str": "195963947", + "screen_name": "Lovemyjags", + "name": "mike williams" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": 132356165043630080, + "in_reply_to_screen_name": "Lovemyjags", + "id_str": "132357154282811392", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -34.02966466, + 150.74418774 + ] + }, + "in_reply_to_user_id_str": "195963947", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1595943793/IMG_0124_normal.JPG", + "profile_sidebar_fill_color": "DDEEF6", + "id": 365736160, + "profile_text_color": "333333", + "followers_count": 131, + "profile_sidebar_border_color": "C0DEED", + "id_str": "365736160", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": null, + "statuses_count": 2176, + "description": "No.1 Jacksonville Jaguars Fan Down Under in Australia!!! JAGS FOR LIFE!!! SEINFELD officiando!!!!", + "friends_count": 290, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1595943793/IMG_0124_normal.JPG", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", + "name": "Craig Fordham", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3, + "screen_name": "AussieJag", + "notifications": null, + "url": "http://www.facebook.com/pages/Australian-Jacksonville-Jaguars-Fans/267447316622907", + "created_at": "Wed Aug 31 22:58:43 +0000 2011", + "contributors_enabled": false, + "time_zone": null, + "protected": false, + "default_profile": true, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1f2ca2", + "_rev": "1-d82aaec01cc3f7b283d50a52519d133c", + "oldid": "4eb392423de67c51170003df", + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1188712004/avatar-1024x1024_normal.jpg", + "profile_sidebar_fill_color": "d2f4fa", + "id": 10706, + "profile_text_color": "012440", + "followers_count": 1562, + "protected": false, + "location": "Sydney, mostly.", + "default_profile_image": false, + "id_str": "10706", + "utc_offset": 28800, + "statuses_count": 34526, + "description": "I run Development at @ninefold. That's a thing I do.", + "friends_count": 1021, + "profile_link_color": "00909d", + "profile_image_url": "http://a1.twimg.com/profile_images/1188712004/avatar-1024x1024_normal.jpg", + "following": null, + "show_all_inline_media": true, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/146378857/bg.jpg", + "profile_background_color": "000000", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/146378857/bg.jpg", + "screen_name": "lachlanhardy", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 3100, + "name": "Lachlan Hardy", + "notifications": null, + "url": "http://lachstock.com.au", + "created_at": "Fri Oct 27 00:44:48 +0000 2006", + "contributors_enabled": false, + "time_zone": "Hong Kong", + "profile_sidebar_border_color": "003d69", + "default_profile": false, + "is_translator": false, + "listed_count": 198 + }, + "favorited": false, + "contributors": null, + "truncated": false, + "source": "<a href=\"http://twitter.com/#!/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", + "text": "OH in a loud pub: \n\"Rusty fat chicks, did you say?!\" \n\"Rustic fat cut chips.\" \n\"Oh…\"", + "created_at": "Fri Nov 04 07:23:01 +0000 2011", + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 151.20339322, + -33.86585282 + ] + }, + "id": 132357161853517820, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "place": null, + "id_str": "132357161853517824", + "in_reply_to_screen_name": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -33.86585282, + 151.20339322 + ] + }, + "in_reply_to_user_id_str": null, + "in_reply_to_user_id": null + }, + { + "_id": "51f39676462cca21859bd92d8e1f39a9", + "_rev": "1-098d5cb628c74f75a142b81d63ec46bc", + "oldid": "4eb392433de67c51170003e0", + "favorited": false, + "in_reply_to_user_id": null, + "contributors": null, + "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", + "text": "Epic swim!! @chmelle if you're awake ill be home in 20 if you want to skype", + "created_at": "Fri Nov 04 07:23:01 +0000 2011", + "truncated": false, + "retweeted": false, + "in_reply_to_status_id_str": null, + "coordinates": { + "type": "Point", + "coordinates": [ + 149.1331242, + -35.2783392 + ] + }, + "id": 132357165318012930, + "entities": { + "user_mentions": [ + { + "indices": [ + 12, + 20 + ], + "id": 30499330, + "id_str": "30499330", + "screen_name": "chmelle", + "name": "Rachelle Noble" + } + ], + "hashtags": [], + "urls": [] + }, + "in_reply_to_status_id": null, + "in_reply_to_screen_name": null, + "id_str": "132357165318012928", + "place": null, + "retweet_count": 0, + "geo": { + "type": "Point", + "coordinates": [ + -35.2783392, + 149.1331242 + ] + }, + "in_reply_to_user_id_str": null, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1621333730/317109_2470310034344_1150149109_32982076_2074488529_n_normal.jpeg", + "profile_sidebar_fill_color": "DDEEF6", + "id": 282949591, + "profile_text_color": "333333", + "followers_count": 62, + "profile_sidebar_border_color": "C0DEED", + "id_str": "282949591", + "profile_background_color": "C0DEED", + "listed_count": 3, + "utc_offset": 36000, + "statuses_count": 318, + "description": "Film noir addict, VFX compositor and curator of large mammals", + "friends_count": 284, + "location": "Sydney, Australia", + "profile_link_color": "0084B4", + "profile_image_url": "http://a2.twimg.com/profile_images/1621333730/317109_2470310034344_1150149109_32982076_2074488529_n_normal.jpeg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/304434734/Film_Noir_by_kidspy_Crop.jpg", + "profile_background_image_url": "http://a2.twimg.com/profile_background_images/304434734/Film_Noir_by_kidspy_Crop.jpg", + "name": "Mickey Hedges", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 47, + "screen_name": "MHVFX", + "notifications": null, + "url": "http://mehedges.com/", + "created_at": "Sat Apr 16 08:08:50 +0000 2011", + "contributors_enabled": false, + "time_zone": "Sydney", + "protected": false, + "default_profile": false, + "following": null + } + }, + { + "_id": "51f39676462cca21859bd92d8e1f4998", + "_rev": "1-7a506ab497aeb274d9e26afb791c159c", + "oldid": "4eb3924b3de67c51170003e1", + "contributors": null, + "truncated": false, + "text": "Lame #melbourne #igersmelbourne #iphonesia @ QV http://t.co/HzaGnVBl", + "in_reply_to_status_id": null, + "id": 132357198536912900, + "entities": { + "user_mentions": [], + "hashtags": [ + { + "indices": [ + 5, + 15 + ], + "text": "melbourne" + }, + { + "indices": [ + 16, + 31 + ], + "text": "igersmelbourne" + }, + { + "indices": [ + 32, + 42 + ], + "text": "iphonesia" + } + ], + "urls": [ + { + "indices": [ + 50, + 70 + ], + "url": "http://t.co/HzaGnVBl", + "expanded_url": "http://instagr.am/p/SqWBg/", + "display_url": "instagr.am/p/SqWBg/" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 144.96571541, + -37.8108011 + ] + }, + "source": "<a href=\"http://instagr.am\" rel=\"nofollow\">Instagram</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132357198536912896", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1453200166/image_normal.jpg", + "profile_sidebar_fill_color": "c9c9c9", + "id": 27978732, + "profile_text_color": "595959", + "followers_count": 271, + "profile_sidebar_border_color": "bfbfbf", + "id_str": "27978732", + "profile_background_color": "ffffff", + "listed_count": 2, + "utc_offset": 36000, + "statuses_count": 6118, + "description": "visual artist? ", + "friends_count": 177, + "location": "Melbourne, Australia", + "profile_link_color": "2FC2EF", + "profile_image_url": "http://a2.twimg.com/profile_images/1453200166/image_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/21576211/_MG_7274.jpg", + "profile_background_image_url": "http://a1.twimg.com/profile_background_images/21576211/_MG_7274.jpg", + "name": "Duta Alamsyah", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 4, + "screen_name": "dutaperdana", + "notifications": null, + "url": "http://dutadut.deviantart.com", + "created_at": "Tue Mar 31 22:19:08 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.8108011, + 144.96571541 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:23:09 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + }, + { + "_id": "51f39676462cca21859bd92d8e1f53bb", + "_rev": "1-31900fc72c71091d002a171f326767ba", + "oldid": "4eb3924e3de67c51170003e2", + "contributors": null, + "truncated": false, + "text": "I'm at Kew RSL (63 Cotham Road, Kew) http://t.co/0tiEm7ys", + "in_reply_to_status_id": null, + "id": 132357211501494270, + "entities": { + "user_mentions": [], + "hashtags": [], + "urls": [ + { + "indices": [ + 37, + 57 + ], + "url": "http://t.co/0tiEm7ys", + "expanded_url": "http://4sq.com/tbOaSE", + "display_url": "4sq.com/tbOaSE" + } + ] + }, + "retweeted": false, + "coordinates": { + "type": "Point", + "coordinates": [ + 145.035775, + -37.807168 + ] + }, + "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">foursquare</a>", + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "retweet_count": 0, + "id_str": "132357211501494272", + "favorited": false, + "user": { + "follow_request_sent": null, + "profile_use_background_image": true, + "default_profile_image": false, + "geo_enabled": true, + "verified": false, + "profile_image_url_https": "https://si0.twimg.com/profile_images/1092706303/41666_750563097_7806_q_normal.jpg", + "profile_sidebar_fill_color": "E3E2DE", + "id": 35675468, + "profile_text_color": "634047", + "followers_count": 52, + "profile_sidebar_border_color": "D3D2CF", + "id_str": "35675468", + "profile_background_color": "030303", + "listed_count": 1, + "utc_offset": 36000, + "statuses_count": 766, + "description": "", + "friends_count": 116, + "location": "Hawthorn East, Vic, Australia", + "profile_link_color": "088253", + "profile_image_url": "http://a3.twimg.com/profile_images/1092706303/41666_750563097_7806_q_normal.jpg", + "is_translator": false, + "show_all_inline_media": false, + "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/75783699/n750563097_2098479_6086.jpg", + "profile_background_image_url": "http://a0.twimg.com/profile_background_images/75783699/n750563097_2098479_6086.jpg", + "name": "Andrew Sciberras", + "lang": "en", + "profile_background_tile": false, + "favourites_count": 0, + "screen_name": "AndrewSciberras", + "notifications": null, + "url": null, + "created_at": "Mon Apr 27 04:58:50 +0000 2009", + "contributors_enabled": false, + "time_zone": "Melbourne", + "protected": false, + "default_profile": false, + "following": null + }, + "geo": { + "type": "Point", + "coordinates": [ + -37.807168, + 145.035775 + ] + }, + "in_reply_to_user_id_str": null, + "possibly_sensitive": false, + "created_at": "Fri Nov 04 07:23:12 +0000 2011", + "in_reply_to_status_id_str": null, + "place": null + } + ] +} diff --git a/twitter/language/_id b/twitter/language/_id new file mode 100644 index 0000000..3479de4 --- /dev/null +++ b/twitter/language/_id @@ -0,0 +1 @@ +_design/language \ No newline at end of file diff --git a/twitter/language/language b/twitter/language/language new file mode 100644 index 0000000..f504a95 --- /dev/null +++ b/twitter/language/language @@ -0,0 +1 @@ +javascript \ No newline at end of file diff --git a/twitter/language/lists/geojson 2.js b/twitter/language/lists/geojson 2.js new file mode 100644 index 0000000..151b8d6 --- /dev/null +++ b/twitter/language/lists/geojson 2.js @@ -0,0 +1,28 @@ +function (head, req) { + + provides("json", function() { + + send('{"type" : "FeatureCollection", "features" : ['); + var sep=""; + + while (row = getRow()) { + if (row.doc.coordinates) { + var feat = { + type: "Feature", + geometry: { + type: "Point", + coordinates: row.doc.coordinates.coordinates + }, + properties: { + text: row.doc.text, + user: row.doc.user.screen_name + } + }; + send(sep + JSON.stringify(feat)); + sep = ","; + } + } + + send("]}"); + }); +} diff --git a/twitter/language/lists/geojson.js b/twitter/language/lists/geojson.js new file mode 100644 index 0000000..151b8d6 --- /dev/null +++ b/twitter/language/lists/geojson.js @@ -0,0 +1,28 @@ +function (head, req) { + + provides("json", function() { + + send('{"type" : "FeatureCollection", "features" : ['); + var sep=""; + + while (row = getRow()) { + if (row.doc.coordinates) { + var feat = { + type: "Feature", + geometry: { + type: "Point", + coordinates: row.doc.coordinates.coordinates + }, + properties: { + text: row.doc.text, + user: row.doc.user.screen_name + } + }; + send(sep + JSON.stringify(feat)); + sep = ","; + } + } + + send("]}"); + }); +} diff --git a/twitter/language/lists/html 2.js b/twitter/language/lists/html 2.js new file mode 100644 index 0000000..3bd390d --- /dev/null +++ b/twitter/language/lists/html 2.js @@ -0,0 +1,10 @@ + (head, req) => { + provides("html", () => { + send(`<table border="2">`); + var row; + while (row = getRow()) { + send(`<tr><td>${JSON.stringify(row.key)}</td><td><td>${JSON.stringify(row.value)}</td></tr>`); + } + send(`</table>`); + }); +} diff --git a/twitter/language/lists/html.js b/twitter/language/lists/html.js new file mode 100644 index 0000000..3bd390d --- /dev/null +++ b/twitter/language/lists/html.js @@ -0,0 +1,10 @@ + (head, req) => { + provides("html", () => { + send(`<table border="2">`); + var row; + while (row = getRow()) { + send(`<tr><td>${JSON.stringify(row.key)}</td><td><td>${JSON.stringify(row.value)}</td></tr>`); + } + send(`</table>`); + }); +} diff --git a/twitter/language/shows/html 2.js b/twitter/language/shows/html 2.js new file mode 100644 index 0000000..61e8308 --- /dev/null +++ b/twitter/language/shows/html 2.js @@ -0,0 +1,8 @@ +(doc, req) => { + if (doc) { + let bold = (req.query.bold) ? '<b>' : ''; + return `<h2> ${doc.user.screen_name}</h2><p>${bold}${doc.text}</p>`; + } else { + return `<h2>No document found<>h2/>`; + } +} diff --git a/twitter/language/shows/html.js b/twitter/language/shows/html.js new file mode 100644 index 0000000..61e8308 --- /dev/null +++ b/twitter/language/shows/html.js @@ -0,0 +1,8 @@ +(doc, req) => { + if (doc) { + let bold = (req.query.bold) ? '<b>' : ''; + return `<h2> ${doc.user.screen_name}</h2><p>${bold}${doc.text}</p>`; + } else { + return `<h2>No document found<>h2/>`; + } +} diff --git a/twitter/language/views/language/map 2.js b/twitter/language/views/language/map 2.js new file mode 100644 index 0000000..b386f5f --- /dev/null +++ b/twitter/language/views/language/map 2.js @@ -0,0 +1,3 @@ +function (doc) { + emit([doc.user.lang], 1); +} \ No newline at end of file diff --git a/twitter/language/views/language/map.js b/twitter/language/views/language/map.js new file mode 100644 index 0000000..b386f5f --- /dev/null +++ b/twitter/language/views/language/map.js @@ -0,0 +1,3 @@ +function (doc) { + emit([doc.user.lang], 1); +} \ No newline at end of file diff --git a/twitter/language/views/language/reduce 2.js b/twitter/language/views/language/reduce 2.js new file mode 100644 index 0000000..7083820 --- /dev/null +++ b/twitter/language/views/language/reduce 2.js @@ -0,0 +1 @@ +_stats \ No newline at end of file diff --git a/twitter/language/views/language/reduce.js b/twitter/language/views/language/reduce.js new file mode 100644 index 0000000..7083820 --- /dev/null +++ b/twitter/language/views/language/reduce.js @@ -0,0 +1 @@ +_stats \ No newline at end of file diff --git a/twitter/language/views/languagegroup/map 2.js b/twitter/language/views/languagegroup/map 2.js new file mode 100644 index 0000000..7687145 --- /dev/null +++ b/twitter/language/views/languagegroup/map 2.js @@ -0,0 +1,4 @@ +function (doc) { + var lib = require("views/lib/lib"); + emit([lib.languageFamily(doc.user.lang), doc.user.lang], 1); +} \ No newline at end of file diff --git a/twitter/language/views/languagegroup/map.js b/twitter/language/views/languagegroup/map.js new file mode 100644 index 0000000..7687145 --- /dev/null +++ b/twitter/language/views/languagegroup/map.js @@ -0,0 +1,4 @@ +function (doc) { + var lib = require("views/lib/lib"); + emit([lib.languageFamily(doc.user.lang), doc.user.lang], 1); +} \ No newline at end of file diff --git a/twitter/language/views/languagegroup/reduce 2.js b/twitter/language/views/languagegroup/reduce 2.js new file mode 100644 index 0000000..7083820 --- /dev/null +++ b/twitter/language/views/languagegroup/reduce 2.js @@ -0,0 +1 @@ +_stats \ No newline at end of file diff --git a/twitter/language/views/languagegroup/reduce.js b/twitter/language/views/languagegroup/reduce.js new file mode 100644 index 0000000..7083820 --- /dev/null +++ b/twitter/language/views/languagegroup/reduce.js @@ -0,0 +1 @@ +_stats \ No newline at end of file diff --git a/twitter/language/views/lib/lib 2.js b/twitter/language/views/lib/lib 2.js new file mode 100644 index 0000000..9106b77 --- /dev/null +++ b/twitter/language/views/lib/lib 2.js @@ -0,0 +1,10 @@ +var families = {"eu": ["es", "en", "de", "pt", "fr", "it", "ru"], "as": ["ko", "ja", "id", "zh-cn", "tr"]}; +exports.languageFamily = function (lang) { + var langFamily = null; + Object.getOwnPropertyNames(families).forEach(function (family) { + if (families[family].indexOf(lang) >= 0) { + langFamily = family; + } + }); + return langFamily; +}; \ No newline at end of file diff --git a/twitter/language/views/lib/lib.js b/twitter/language/views/lib/lib.js new file mode 100644 index 0000000..9106b77 --- /dev/null +++ b/twitter/language/views/lib/lib.js @@ -0,0 +1,10 @@ +var families = {"eu": ["es", "en", "de", "pt", "fr", "it", "ru"], "as": ["ko", "ja", "id", "zh-cn", "tr"]}; +exports.languageFamily = function (lang) { + var langFamily = null; + Object.getOwnPropertyNames(families).forEach(function (family) { + if (families[family].indexOf(lang) >= 0) { + langFamily = family; + } + }); + return langFamily; +}; \ No newline at end of file diff --git a/twitter/language/views/useimpact/map 2.js b/twitter/language/views/useimpact/map 2.js new file mode 100644 index 0000000..37e1fcb --- /dev/null +++ b/twitter/language/views/useimpact/map 2.js @@ -0,0 +1,3 @@ +function (doc) { + emit([doc.user.id, doc._id], {followers: doc.user.followers_count, textlength: doc.text.split(" ").length}); +} \ No newline at end of file diff --git a/twitter/language/views/useimpact/map.js b/twitter/language/views/useimpact/map.js new file mode 100644 index 0000000..37e1fcb --- /dev/null +++ b/twitter/language/views/useimpact/map.js @@ -0,0 +1,3 @@ +function (doc) { + emit([doc.user.id, doc._id], {followers: doc.user.followers_count, textlength: doc.text.split(" ").length}); +} \ No newline at end of file diff --git a/twitter/language/views/useimpact/reduce 2.js b/twitter/language/views/useimpact/reduce 2.js new file mode 100644 index 0000000..235277c --- /dev/null +++ b/twitter/language/views/useimpact/reduce 2.js @@ -0,0 +1,13 @@ +function (keys, values, rereduce) { + var result = 0; + if (rereduce) { + values.forEach(function (v) { + result += v; + }); + } else { + values.forEach(function (vObj) { + result += vObj.followers * vObj.textlength; + }); + } + return (result); +} \ No newline at end of file diff --git a/twitter/language/views/useimpact/reduce.js b/twitter/language/views/useimpact/reduce.js new file mode 100644 index 0000000..235277c --- /dev/null +++ b/twitter/language/views/useimpact/reduce.js @@ -0,0 +1,13 @@ +function (keys, values, rereduce) { + var result = 0; + if (rereduce) { + values.forEach(function (v) { + result += v; + }); + } else { + values.forEach(function (vObj) { + result += vObj.followers * vObj.textlength; + }); + } + return (result); +} \ No newline at end of file diff --git a/twitter/language/views/words/map 2.js b/twitter/language/views/words/map 2.js new file mode 100644 index 0000000..afeb928 --- /dev/null +++ b/twitter/language/views/words/map 2.js @@ -0,0 +1,7 @@ +function (doc) { + doc.text.toLowerCase().split(/\W+/).forEach(function (word) { + if (word.length > 1) { + emit([word, doc.user.lang], 1); + } + }); +} diff --git a/twitter/language/views/words/map.js b/twitter/language/views/words/map.js new file mode 100644 index 0000000..afeb928 --- /dev/null +++ b/twitter/language/views/words/map.js @@ -0,0 +1,7 @@ +function (doc) { + doc.text.toLowerCase().split(/\W+/).forEach(function (word) { + if (word.length > 1) { + emit([word, doc.user.lang], 1); + } + }); +} diff --git a/twitter/language/views/words/reduce 2.js b/twitter/language/views/words/reduce 2.js new file mode 100644 index 0000000..4031379 --- /dev/null +++ b/twitter/language/views/words/reduce 2.js @@ -0,0 +1,23 @@ +function (keys, values, rereduce) { + var langs = []; + var count = 0; + if (!rereduce) { + keys.forEach(function (key) { + var lang = key[0][1]; + if (langs.indexOf(lang) < 0) { + langs.push(lang); + } + count++; + }); + } else { + values.forEach(function (value) { + value.languages.forEach(function (lang) { + if (langs.indexOf(lang) < 0) { + langs.push(lang); + } + count += value.count; + }); + }); + } + return {languages: langs, count: count}; +} \ No newline at end of file diff --git a/twitter/language/views/words/reduce.js b/twitter/language/views/words/reduce.js new file mode 100644 index 0000000..4031379 --- /dev/null +++ b/twitter/language/views/words/reduce.js @@ -0,0 +1,23 @@ +function (keys, values, rereduce) { + var langs = []; + var count = 0; + if (!rereduce) { + keys.forEach(function (key) { + var lang = key[0][1]; + if (langs.indexOf(lang) < 0) { + langs.push(lang); + } + count++; + }); + } else { + values.forEach(function (value) { + value.languages.forEach(function (lang) { + if (langs.indexOf(lang) < 0) { + langs.push(lang); + } + count += value.count; + }); + }); + } + return {languages: langs, count: count}; +} \ No newline at end of file diff --git a/twitter/textsearch/text.json b/twitter/textsearch/text.json new file mode 100644 index 0000000..78d7e21 --- /dev/null +++ b/twitter/textsearch/text.json @@ -0,0 +1,8 @@ +{ + "_id": "_design/textsearch/text", + "indexes": { + "text": { + "index": "function (doc) { index(\"default\", doc._id); index ('text', doc.text, {store: true}); index ('language', doc.user.lang, {facet: true, store: true});}" + } + } +} diff --git a/web/.dockerignore b/web/.dockerignore deleted file mode 100644 index 56e8146..0000000 --- a/web/.dockerignore +++ /dev/null @@ -1,5 +0,0 @@ -node_modules -build -.dockerignore -Dockerfile -Dockerfile.prod \ No newline at end of file diff --git a/web/.gitignore b/web/.gitignore deleted file mode 100644 index 4d29575..0000000 --- a/web/.gitignore +++ /dev/null @@ -1,23 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* diff --git a/web/Dockerfile b/web/Dockerfile deleted file mode 100644 index 0e2ef5e..0000000 --- a/web/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -# pull official base image -FROM node:13.12.0-alpine - -# set working directory -WORKDIR /app - -# add `/app/node_modules/.bin` to $PATH -ENV PATH /app/node_modules/.bin:$PATH - -# install app dependencies on container -COPY package.json ./ -COPY package-lock.json ./ -RUN npm install -RUN npm install react-scripts@3.4.1 -g - -# add app to containter -COPY . ./ - -# start app -CMD ["npm", "start"] \ No newline at end of file diff --git a/web/README.md b/web/README.md deleted file mode 100644 index 810b49d..0000000 --- a/web/README.md +++ /dev/null @@ -1,22 +0,0 @@ -## Deployment - -### Build and tag the Docker image -``` -docker-compose up -d --build -``` - -### View docker containers -``` -docker ps [-a] -``` - -### View docker images -``` -docker image ls -``` - -### Tag latest and push -``` -docker tag [img]:latest matt01671/web:[img-latest] -docker push matt01671/[img-latest] -``` \ No newline at end of file diff --git a/web/docker-compose.yaml b/web/docker-compose.yaml deleted file mode 100755 index e82d019..0000000 --- a/web/docker-compose.yaml +++ /dev/null @@ -1,17 +0,0 @@ -version: '3.7' - -services: - - react_app: - container_name: react_app - stdin_open: true - build: - context: . - dockerfile: Dockerfile - volumes: - - '.:/app' - - '/app/node_modules' - ports: - - 3001:3000 - environment: - - CHOKIDAR_USEPOLLING=true \ No newline at end of file diff --git a/web/package-lock.json b/web/package-lock.json deleted file mode 100644 index f8a2c69..0000000 --- a/web/package-lock.json +++ /dev/null @@ -1,15279 +0,0 @@ -{ - "name": "front-page", - "version": "0.1.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@babel/code-frame": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", - "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", - "requires": { - "@babel/highlight": "^7.8.3" - } - }, - "@babel/compat-data": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.9.0.tgz", - "integrity": "sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g==", - "requires": { - "browserslist": "^4.9.1", - "invariant": "^2.2.4", - "semver": "^5.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@babel/core": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz", - "integrity": "sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==", - "requires": { - "@babel/code-frame": "^7.8.3", - "@babel/generator": "^7.9.0", - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helpers": "^7.9.0", - "@babel/parser": "^7.9.0", - "@babel/template": "^7.8.6", - "@babel/traverse": "^7.9.0", - "@babel/types": "^7.9.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.13", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@babel/generator": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.5.tgz", - "integrity": "sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ==", - "requires": { - "@babel/types": "^7.9.5", - "jsesc": "^2.5.1", - "lodash": "^4.17.13", - "source-map": "^0.5.0" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz", - "integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz", - "integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==", - "requires": { - "@babel/helper-explode-assignable-expression": "^7.8.3", - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-builder-react-jsx": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz", - "integrity": "sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.8.3", - "@babel/types": "^7.9.0" - } - }, - "@babel/helper-builder-react-jsx-experimental": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz", - "integrity": "sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.8.3", - "@babel/helper-module-imports": "^7.8.3", - "@babel/types": "^7.9.5" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz", - "integrity": "sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw==", - "requires": { - "@babel/compat-data": "^7.8.6", - "browserslist": "^4.9.1", - "invariant": "^2.2.4", - "levenary": "^1.1.1", - "semver": "^5.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.5.tgz", - "integrity": "sha512-IipaxGaQmW4TfWoXdqjY0TzoXQ1HRS0kPpEgvjosb3u7Uedcq297xFqDQiCcQtRRwzIMif+N1MLVI8C5a4/PAA==", - "requires": { - "@babel/helper-function-name": "^7.9.5", - "@babel/helper-member-expression-to-functions": "^7.8.3", - "@babel/helper-optimise-call-expression": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/helper-replace-supers": "^7.8.6", - "@babel/helper-split-export-declaration": "^7.8.3" - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.8.8", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz", - "integrity": "sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.8.3", - "@babel/helper-regex": "^7.8.3", - "regexpu-core": "^4.7.0" - } - }, - "@babel/helper-define-map": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz", - "integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==", - "requires": { - "@babel/helper-function-name": "^7.8.3", - "@babel/types": "^7.8.3", - "lodash": "^4.17.13" - } - }, - "@babel/helper-explode-assignable-expression": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz", - "integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==", - "requires": { - "@babel/traverse": "^7.8.3", - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-function-name": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz", - "integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==", - "requires": { - "@babel/helper-get-function-arity": "^7.8.3", - "@babel/template": "^7.8.3", - "@babel/types": "^7.9.5" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", - "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz", - "integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz", - "integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-module-imports": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz", - "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-module-transforms": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz", - "integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==", - "requires": { - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-replace-supers": "^7.8.6", - "@babel/helper-simple-access": "^7.8.3", - "@babel/helper-split-export-declaration": "^7.8.3", - "@babel/template": "^7.8.6", - "@babel/types": "^7.9.0", - "lodash": "^4.17.13" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz", - "integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz", - "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==" - }, - "@babel/helper-regex": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz", - "integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==", - "requires": { - "lodash": "^4.17.13" - } - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz", - "integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.8.3", - "@babel/helper-wrap-function": "^7.8.3", - "@babel/template": "^7.8.3", - "@babel/traverse": "^7.8.3", - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-replace-supers": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz", - "integrity": "sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==", - "requires": { - "@babel/helper-member-expression-to-functions": "^7.8.3", - "@babel/helper-optimise-call-expression": "^7.8.3", - "@babel/traverse": "^7.8.6", - "@babel/types": "^7.8.6" - } - }, - "@babel/helper-simple-access": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz", - "integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==", - "requires": { - "@babel/template": "^7.8.3", - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", - "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz", - "integrity": "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==" - }, - "@babel/helper-wrap-function": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz", - "integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==", - "requires": { - "@babel/helper-function-name": "^7.8.3", - "@babel/template": "^7.8.3", - "@babel/traverse": "^7.8.3", - "@babel/types": "^7.8.3" - } - }, - "@babel/helpers": { - "version": "7.9.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.2.tgz", - "integrity": "sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA==", - "requires": { - "@babel/template": "^7.8.3", - "@babel/traverse": "^7.9.0", - "@babel/types": "^7.9.0" - } - }, - "@babel/highlight": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz", - "integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.9.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.9.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.4.tgz", - "integrity": "sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==" - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz", - "integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/helper-remap-async-to-generator": "^7.8.3", - "@babel/plugin-syntax-async-generators": "^7.8.0" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz", - "integrity": "sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz", - "integrity": "sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-decorators": "^7.8.3" - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz", - "integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-dynamic-import": "^7.8.0" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz", - "integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.0" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz", - "integrity": "sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.5.tgz", - "integrity": "sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-transform-parameters": "^7.9.5" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz", - "integrity": "sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.0" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.8.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz", - "integrity": "sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.8.8", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz", - "integrity": "sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-flow": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz", - "integrity": "sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz", - "integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz", - "integrity": "sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz", - "integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz", - "integrity": "sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz", - "integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz", - "integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==", - "requires": { - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/helper-remap-async-to-generator": "^7.8.3" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz", - "integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz", - "integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "lodash": "^4.17.13" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz", - "integrity": "sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.8.3", - "@babel/helper-define-map": "^7.8.3", - "@babel/helper-function-name": "^7.9.5", - "@babel/helper-optimise-call-expression": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/helper-replace-supers": "^7.8.6", - "@babel/helper-split-export-declaration": "^7.8.3", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz", - "integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz", - "integrity": "sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz", - "integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz", - "integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz", - "integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==", - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-flow-strip-types": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz", - "integrity": "sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-flow": "^7.8.3" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz", - "integrity": "sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz", - "integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==", - "requires": { - "@babel/helper-function-name": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz", - "integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz", - "integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz", - "integrity": "sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q==", - "requires": { - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helper-plugin-utils": "^7.8.3", - "babel-plugin-dynamic-import-node": "^2.3.0" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz", - "integrity": "sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g==", - "requires": { - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/helper-simple-access": "^7.8.3", - "babel-plugin-dynamic-import-node": "^2.3.0" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz", - "integrity": "sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ==", - "requires": { - "@babel/helper-hoist-variables": "^7.8.3", - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helper-plugin-utils": "^7.8.3", - "babel-plugin-dynamic-import-node": "^2.3.0" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz", - "integrity": "sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==", - "requires": { - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz", - "integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.8.3" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz", - "integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz", - "integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/helper-replace-supers": "^7.8.3" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz", - "integrity": "sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA==", - "requires": { - "@babel/helper-get-function-arity": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz", - "integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-react-constant-elements": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.9.0.tgz", - "integrity": "sha512-wXMXsToAUOxJuBBEHajqKLFWcCkOSLshTI2ChCFFj1zDd7od4IOxiwLCOObNUvOpkxLpjIuaIdBMmNt6ocCPAw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz", - "integrity": "sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-react-jsx": { - "version": "7.9.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz", - "integrity": "sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==", - "requires": { - "@babel/helper-builder-react-jsx": "^7.9.0", - "@babel/helper-builder-react-jsx-experimental": "^7.9.0", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-jsx": "^7.8.3" - } - }, - "@babel/plugin-transform-react-jsx-development": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz", - "integrity": "sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw==", - "requires": { - "@babel/helper-builder-react-jsx-experimental": "^7.9.0", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-jsx": "^7.8.3" - } - }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz", - "integrity": "sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-jsx": "^7.8.3" - } - }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz", - "integrity": "sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-jsx": "^7.8.3" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz", - "integrity": "sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==", - "requires": { - "regenerator-transform": "^0.14.2" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz", - "integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz", - "integrity": "sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==", - "requires": { - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "resolve": "^1.8.1", - "semver": "^5.5.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz", - "integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz", - "integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz", - "integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/helper-regex": "^7.8.3" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz", - "integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz", - "integrity": "sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.9.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.4.tgz", - "integrity": "sha512-yeWeUkKx2auDbSxRe8MusAG+n4m9BFY/v+lPjmQDgOFX5qnySkUY5oXzkp6FwPdsYqnKay6lorXYdC0n3bZO7w==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-typescript": "^7.8.3" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz", - "integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/preset-env": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.5.tgz", - "integrity": "sha512-eWGYeADTlPJH+wq1F0wNfPbVS1w1wtmMJiYk55Td5Yu28AsdR9AsC97sZ0Qq8fHqQuslVSIYSGJMcblr345GfQ==", - "requires": { - "@babel/compat-data": "^7.9.0", - "@babel/helper-compilation-targets": "^7.8.7", - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-proposal-async-generator-functions": "^7.8.3", - "@babel/plugin-proposal-dynamic-import": "^7.8.3", - "@babel/plugin-proposal-json-strings": "^7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-numeric-separator": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.9.5", - "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.9.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", - "@babel/plugin-syntax-json-strings": "^7.8.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", - "@babel/plugin-syntax-numeric-separator": "^7.8.0", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.8.3", - "@babel/plugin-transform-async-to-generator": "^7.8.3", - "@babel/plugin-transform-block-scoped-functions": "^7.8.3", - "@babel/plugin-transform-block-scoping": "^7.8.3", - "@babel/plugin-transform-classes": "^7.9.5", - "@babel/plugin-transform-computed-properties": "^7.8.3", - "@babel/plugin-transform-destructuring": "^7.9.5", - "@babel/plugin-transform-dotall-regex": "^7.8.3", - "@babel/plugin-transform-duplicate-keys": "^7.8.3", - "@babel/plugin-transform-exponentiation-operator": "^7.8.3", - "@babel/plugin-transform-for-of": "^7.9.0", - "@babel/plugin-transform-function-name": "^7.8.3", - "@babel/plugin-transform-literals": "^7.8.3", - "@babel/plugin-transform-member-expression-literals": "^7.8.3", - "@babel/plugin-transform-modules-amd": "^7.9.0", - "@babel/plugin-transform-modules-commonjs": "^7.9.0", - "@babel/plugin-transform-modules-systemjs": "^7.9.0", - "@babel/plugin-transform-modules-umd": "^7.9.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", - "@babel/plugin-transform-new-target": "^7.8.3", - "@babel/plugin-transform-object-super": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.9.5", - "@babel/plugin-transform-property-literals": "^7.8.3", - "@babel/plugin-transform-regenerator": "^7.8.7", - "@babel/plugin-transform-reserved-words": "^7.8.3", - "@babel/plugin-transform-shorthand-properties": "^7.8.3", - "@babel/plugin-transform-spread": "^7.8.3", - "@babel/plugin-transform-sticky-regex": "^7.8.3", - "@babel/plugin-transform-template-literals": "^7.8.3", - "@babel/plugin-transform-typeof-symbol": "^7.8.4", - "@babel/plugin-transform-unicode-regex": "^7.8.3", - "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.9.5", - "browserslist": "^4.9.1", - "core-js-compat": "^3.6.2", - "invariant": "^2.2.2", - "levenary": "^1.1.1", - "semver": "^5.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@babel/preset-modules": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz", - "integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-react": { - "version": "7.9.4", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.4.tgz", - "integrity": "sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-react-display-name": "^7.8.3", - "@babel/plugin-transform-react-jsx": "^7.9.4", - "@babel/plugin-transform-react-jsx-development": "^7.9.0", - "@babel/plugin-transform-react-jsx-self": "^7.9.0", - "@babel/plugin-transform-react-jsx-source": "^7.9.0" - } - }, - "@babel/preset-typescript": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz", - "integrity": "sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-typescript": "^7.9.0" - } - }, - "@babel/runtime": { - "version": "7.9.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.2.tgz", - "integrity": "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/runtime-corejs3": { - "version": "7.9.2", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz", - "integrity": "sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA==", - "requires": { - "core-js-pure": "^3.0.0", - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz", - "integrity": "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==", - "requires": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - } - }, - "@babel/traverse": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.5.tgz", - "integrity": "sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ==", - "requires": { - "@babel/code-frame": "^7.8.3", - "@babel/generator": "^7.9.5", - "@babel/helper-function-name": "^7.9.5", - "@babel/helper-split-export-declaration": "^7.8.3", - "@babel/parser": "^7.9.0", - "@babel/types": "^7.9.5", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.13" - } - }, - "@babel/types": { - "version": "7.9.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.5.tgz", - "integrity": "sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg==", - "requires": { - "@babel/helper-validator-identifier": "^7.9.5", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - } - }, - "@cnakazawa/watch": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", - "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", - "requires": { - "exec-sh": "^0.3.2", - "minimist": "^1.2.0" - } - }, - "@csstools/convert-colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", - "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" - }, - "@csstools/normalize.css": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", - "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" - }, - "@hapi/address": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", - "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" - }, - "@hapi/bourne": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", - "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" - }, - "@hapi/hoek": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", - "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" - }, - "@hapi/joi": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", - "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", - "requires": { - "@hapi/address": "2.x.x", - "@hapi/bourne": "1.x.x", - "@hapi/hoek": "8.x.x", - "@hapi/topo": "3.x.x" - } - }, - "@hapi/topo": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", - "requires": { - "@hapi/hoek": "^8.3.0" - } - }, - "@jest/console": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", - "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", - "requires": { - "@jest/source-map": "^24.9.0", - "chalk": "^2.0.1", - "slash": "^2.0.0" - } - }, - "@jest/core": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", - "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", - "requires": { - "@jest/console": "^24.7.1", - "@jest/reporters": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-changed-files": "^24.9.0", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-resolve-dependencies": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "jest-watcher": "^24.9.0", - "micromatch": "^3.1.10", - "p-each-series": "^1.0.0", - "realpath-native": "^1.1.0", - "rimraf": "^2.5.4", - "slash": "^2.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - } - } - }, - "@jest/environment": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", - "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", - "requires": { - "@jest/fake-timers": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0" - } - }, - "@jest/fake-timers": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", - "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", - "requires": { - "@jest/types": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0" - } - }, - "@jest/reporters": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", - "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", - "requires": { - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.2", - "istanbul-lib-coverage": "^2.0.2", - "istanbul-lib-instrument": "^3.0.1", - "istanbul-lib-report": "^2.0.4", - "istanbul-lib-source-maps": "^3.0.1", - "istanbul-reports": "^2.2.6", - "jest-haste-map": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "node-notifier": "^5.4.2", - "slash": "^2.0.0", - "source-map": "^0.6.0", - "string-length": "^2.0.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "@jest/source-map": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", - "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", - "requires": { - "callsites": "^3.0.0", - "graceful-fs": "^4.1.15", - "source-map": "^0.6.0" - }, - "dependencies": { - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "@jest/test-result": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", - "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", - "requires": { - "@jest/console": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/istanbul-lib-coverage": "^2.0.0" - } - }, - "@jest/test-sequencer": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", - "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", - "requires": { - "@jest/test-result": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0" - } - }, - "@jest/transform": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", - "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", - "requires": { - "@babel/core": "^7.1.0", - "@jest/types": "^24.9.0", - "babel-plugin-istanbul": "^5.1.0", - "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.1.15", - "jest-haste-map": "^24.9.0", - "jest-regex-util": "^24.9.0", - "jest-util": "^24.9.0", - "micromatch": "^3.1.10", - "pirates": "^4.0.1", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "2.4.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "@jest/types": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", - "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^13.0.0" - } - }, - "@mrmlnc/readdir-enhanced": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", - "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", - "requires": { - "call-me-maybe": "^1.0.1", - "glob-to-regexp": "^0.3.0" - } - }, - "@nodelib/fs.stat": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", - "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" - }, - "@sheerun/mutationobserver-shim": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.3.tgz", - "integrity": "sha512-DetpxZw1fzPD5xUBrIAoplLChO2VB8DlL5Gg+I1IR9b2wPqYIca2WSUxL5g1vLeR4MsQq1NeWriXAVffV+U1Fw==" - }, - "@svgr/babel-plugin-add-jsx-attribute": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz", - "integrity": "sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==" - }, - "@svgr/babel-plugin-remove-jsx-attribute": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-4.2.0.tgz", - "integrity": "sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==" - }, - "@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-4.2.0.tgz", - "integrity": "sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==" - }, - "@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-4.2.0.tgz", - "integrity": "sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==" - }, - "@svgr/babel-plugin-svg-dynamic-title": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-4.3.3.tgz", - "integrity": "sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==" - }, - "@svgr/babel-plugin-svg-em-dimensions": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-4.2.0.tgz", - "integrity": "sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==" - }, - "@svgr/babel-plugin-transform-react-native-svg": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-4.2.0.tgz", - "integrity": "sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==" - }, - "@svgr/babel-plugin-transform-svg-component": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-4.2.0.tgz", - "integrity": "sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==" - }, - "@svgr/babel-preset": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-4.3.3.tgz", - "integrity": "sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==", - "requires": { - "@svgr/babel-plugin-add-jsx-attribute": "^4.2.0", - "@svgr/babel-plugin-remove-jsx-attribute": "^4.2.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "^4.2.0", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^4.2.0", - "@svgr/babel-plugin-svg-dynamic-title": "^4.3.3", - "@svgr/babel-plugin-svg-em-dimensions": "^4.2.0", - "@svgr/babel-plugin-transform-react-native-svg": "^4.2.0", - "@svgr/babel-plugin-transform-svg-component": "^4.2.0" - } - }, - "@svgr/core": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-4.3.3.tgz", - "integrity": "sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==", - "requires": { - "@svgr/plugin-jsx": "^4.3.3", - "camelcase": "^5.3.1", - "cosmiconfig": "^5.2.1" - } - }, - "@svgr/hast-util-to-babel-ast": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-4.3.2.tgz", - "integrity": "sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==", - "requires": { - "@babel/types": "^7.4.4" - } - }, - "@svgr/plugin-jsx": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz", - "integrity": "sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==", - "requires": { - "@babel/core": "^7.4.5", - "@svgr/babel-preset": "^4.3.3", - "@svgr/hast-util-to-babel-ast": "^4.3.2", - "svg-parser": "^2.0.0" - } - }, - "@svgr/plugin-svgo": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-4.3.1.tgz", - "integrity": "sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==", - "requires": { - "cosmiconfig": "^5.2.1", - "merge-deep": "^3.0.2", - "svgo": "^1.2.2" - } - }, - "@svgr/webpack": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-4.3.3.tgz", - "integrity": "sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==", - "requires": { - "@babel/core": "^7.4.5", - "@babel/plugin-transform-react-constant-elements": "^7.0.0", - "@babel/preset-env": "^7.4.5", - "@babel/preset-react": "^7.0.0", - "@svgr/core": "^4.3.3", - "@svgr/plugin-jsx": "^4.3.3", - "@svgr/plugin-svgo": "^4.3.1", - "loader-utils": "^1.2.3" - } - }, - "@testing-library/dom": { - "version": "6.16.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-6.16.0.tgz", - "integrity": "sha512-lBD88ssxqEfz0wFL6MeUyyWZfV/2cjEZZV3YRpb2IoJRej/4f1jB0TzqIOznTpfR1r34CNesrubxwIlAQ8zgPA==", - "requires": { - "@babel/runtime": "^7.8.4", - "@sheerun/mutationobserver-shim": "^0.3.2", - "@types/testing-library__dom": "^6.12.1", - "aria-query": "^4.0.2", - "dom-accessibility-api": "^0.3.0", - "pretty-format": "^25.1.0", - "wait-for-expect": "^3.0.2" - }, - "dependencies": { - "@jest/types": { - "version": "25.4.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.4.0.tgz", - "integrity": "sha512-XBeaWNzw2PPnGW5aXvZt3+VO60M+34RY3XDsCK5tW7kyj3RK0XClRutCfjqcBuaR2aBQTbluEDME9b5MB9UAPw==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.4.tgz", - "integrity": "sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "aria-query": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.0.2.tgz", - "integrity": "sha512-S1G1V790fTaigUSM/Gd0NngzEfiMy9uTUfMyHhKhVyy4cH5O/eTuR01ydhGL0z4Za1PXFTRGH3qL8VhUQuEO5w==", - "requires": { - "@babel/runtime": "^7.7.4", - "@babel/runtime-corejs3": "^7.7.4" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "pretty-format": { - "version": "25.4.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.4.0.tgz", - "integrity": "sha512-PI/2dpGjXK5HyXexLPZU/jw5T9Q6S1YVXxxVxco+LIqzUFHXIbKZKdUVt7GcX7QUCr31+3fzhi4gN4/wUYPVxQ==", - "requires": { - "@jest/types": "^25.4.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/jest-dom": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-4.2.4.tgz", - "integrity": "sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg==", - "requires": { - "@babel/runtime": "^7.5.1", - "chalk": "^2.4.1", - "css": "^2.2.3", - "css.escape": "^1.5.1", - "jest-diff": "^24.0.0", - "jest-matcher-utils": "^24.0.0", - "lodash": "^4.17.11", - "pretty-format": "^24.0.0", - "redent": "^3.0.0" - } - }, - "@testing-library/react": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-9.5.0.tgz", - "integrity": "sha512-di1b+D0p+rfeboHO5W7gTVeZDIK5+maEgstrZbWZSSvxDyfDRkkyBE1AJR5Psd6doNldluXlCWqXriUfqu/9Qg==", - "requires": { - "@babel/runtime": "^7.8.4", - "@testing-library/dom": "^6.15.0", - "@types/testing-library__react": "^9.1.2" - } - }, - "@testing-library/user-event": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-7.2.1.tgz", - "integrity": "sha512-oZ0Ib5I4Z2pUEcoo95cT1cr6slco9WY7yiPpG+RGNkj8YcYgJnM7pXmYmorNOReh8MIGcKSqXyeGjxnr8YiZbA==" - }, - "@types/babel__core": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.7.tgz", - "integrity": "sha512-RL62NqSFPCDK2FM1pSDH0scHpJvsXtZNiYlMB73DgPBaG1E38ZYVL+ei5EkWRbr+KC4YNiAUNBnRj+bgwpgjMw==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.1.tgz", - "integrity": "sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==", - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz", - "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.0.10", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.10.tgz", - "integrity": "sha512-74fNdUGrWsgIB/V9kTO5FGHPWYY6Eqn+3Z7L6Hc4e/BxjYV7puvBqp5HwsVYYfLm6iURYBNCx4Ut37OF9yitCw==", - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" - }, - "@types/eslint-visitor-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==" - }, - "@types/events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" - }, - "@types/glob": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", - "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", - "requires": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz", - "integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==" - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz", - "integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==", - "requires": { - "@types/istanbul-lib-coverage": "*", - "@types/istanbul-lib-report": "*" - } - }, - "@types/json-schema": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.4.tgz", - "integrity": "sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==" - }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" - }, - "@types/node": { - "version": "13.13.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.4.tgz", - "integrity": "sha512-x26ur3dSXgv5AwKS0lNfbjpCakGIduWU1DU91Zz58ONRWrIKGunmZBNv4P7N+e27sJkiGDsw/3fT4AtsqQBrBA==" - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" - }, - "@types/q": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz", - "integrity": "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==" - }, - "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "@types/react-dom": { - "version": "16.9.6", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.6.tgz", - "integrity": "sha512-S6ihtlPMDotrlCJE9ST1fRmYrQNNwfgL61UB4I1W7M6kPulUKx9fXAleW5zpdIjUQ4fTaaog8uERezjsGUj9HQ==", - "requires": { - "@types/react": "*" - } - }, - "@types/stack-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", - "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" - }, - "@types/testing-library__dom": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/@types/testing-library__dom/-/testing-library__dom-6.14.0.tgz", - "integrity": "sha512-sMl7OSv0AvMOqn1UJ6j1unPMIHRXen0Ita1ujnMX912rrOcawe4f7wu0Zt9GIQhBhJvH2BaibqFgQ3lP+Pj2hA==", - "requires": { - "pretty-format": "^24.3.0" - } - }, - "@types/testing-library__react": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@types/testing-library__react/-/testing-library__react-9.1.3.tgz", - "integrity": "sha512-iCdNPKU3IsYwRK9JieSYAiX0+aYDXOGAmrC/3/M7AqqSDKnWWVv07X+Zk1uFSL7cMTUYzv4lQRfohucEocn5/w==", - "requires": { - "@types/react-dom": "*", - "@types/testing-library__dom": "*", - "pretty-format": "^25.1.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.4.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.4.0.tgz", - "integrity": "sha512-XBeaWNzw2PPnGW5aXvZt3+VO60M+34RY3XDsCK5tW7kyj3RK0XClRutCfjqcBuaR2aBQTbluEDME9b5MB9UAPw==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.4.tgz", - "integrity": "sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "pretty-format": { - "version": "25.4.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.4.0.tgz", - "integrity": "sha512-PI/2dpGjXK5HyXexLPZU/jw5T9Q6S1YVXxxVxco+LIqzUFHXIbKZKdUVt7GcX7QUCr31+3fzhi4gN4/wUYPVxQ==", - "requires": { - "@jest/types": "^25.4.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@types/yargs": { - "version": "13.0.8", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.8.tgz", - "integrity": "sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz", - "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" - }, - "@typescript-eslint/eslint-plugin": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.29.0.tgz", - "integrity": "sha512-X/YAY7azKirENm4QRpT7OVmzok02cSkqeIcLmdz6gXUQG4Hk0Fi9oBAynSAyNXeGdMRuZvjBa0c1Lu0dn/u6VA==", - "requires": { - "@typescript-eslint/experimental-utils": "2.29.0", - "functional-red-black-tree": "^1.0.1", - "regexpp": "^3.0.0", - "tsutils": "^3.17.1" - } - }, - "@typescript-eslint/experimental-utils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.29.0.tgz", - "integrity": "sha512-H/6VJr6eWYstyqjWXBP2Nn1hQJyvJoFdDtsHxGiD+lEP7piGnGpb/ZQd+z1ZSB1F7dN+WsxUDh8+S4LwI+f3jw==", - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/typescript-estree": "2.29.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } - }, - "@typescript-eslint/parser": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.29.0.tgz", - "integrity": "sha512-H78M+jcu5Tf6m/5N8iiFblUUv+HJDguMSdFfzwa6vSg9lKR8Mk9BsgeSjO8l2EshKnJKcbv0e8IDDOvSNjl0EA==", - "requires": { - "@types/eslint-visitor-keys": "^1.0.0", - "@typescript-eslint/experimental-utils": "2.29.0", - "@typescript-eslint/typescript-estree": "2.29.0", - "eslint-visitor-keys": "^1.1.0" - } - }, - "@typescript-eslint/typescript-estree": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.29.0.tgz", - "integrity": "sha512-3YGbtnWy4az16Egy5Fj5CckkVlpIh0MADtAQza+jiMADRSKkjdpzZp/5WuvwK/Qib3Z0HtzrDFeWanS99dNhnA==", - "requires": { - "debug": "^4.1.1", - "eslint-visitor-keys": "^1.1.0", - "glob": "^7.1.6", - "is-glob": "^4.0.1", - "lodash": "^4.17.15", - "semver": "^6.3.0", - "tsutils": "^3.17.1" - } - }, - "@webassemblyjs/ast": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", - "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", - "requires": { - "@webassemblyjs/helper-module-context": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", - "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==" - }, - "@webassemblyjs/helper-api-error": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", - "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==" - }, - "@webassemblyjs/helper-buffer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", - "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==" - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", - "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", - "requires": { - "@webassemblyjs/wast-printer": "1.8.5" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", - "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==" - }, - "@webassemblyjs/helper-module-context": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", - "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "mamacro": "^0.0.3" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", - "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==" - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", - "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", - "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", - "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", - "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==" - }, - "@webassemblyjs/wasm-edit": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", - "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/helper-wasm-section": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5", - "@webassemblyjs/wasm-opt": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5", - "@webassemblyjs/wast-printer": "1.8.5" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", - "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/ieee754": "1.8.5", - "@webassemblyjs/leb128": "1.8.5", - "@webassemblyjs/utf8": "1.8.5" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", - "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", - "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-api-error": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/ieee754": "1.8.5", - "@webassemblyjs/leb128": "1.8.5", - "@webassemblyjs/utf8": "1.8.5" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", - "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/floating-point-hex-parser": "1.8.5", - "@webassemblyjs/helper-api-error": "1.8.5", - "@webassemblyjs/helper-code-frame": "1.8.5", - "@webassemblyjs/helper-fsm": "1.8.5", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", - "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5", - "@xtuc/long": "4.2.2" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - }, - "abab": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz", - "integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==" - }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" - }, - "acorn-globals": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", - "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", - "requires": { - "acorn": "^6.0.1", - "acorn-walk": "^6.0.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" - } - } - }, - "acorn-jsx": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", - "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==" - }, - "acorn-walk": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", - "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==" - }, - "address": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", - "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" - }, - "adjust-sourcemap-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz", - "integrity": "sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA==", - "requires": { - "assert": "1.4.1", - "camelcase": "5.0.0", - "loader-utils": "1.2.3", - "object-path": "0.11.4", - "regex-parser": "2.2.10" - }, - "dependencies": { - "camelcase": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz", - "integrity": "sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==" - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - } - } - }, - "aggregate-error": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", - "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz", - "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" - }, - "ajv-keywords": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", - "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==" - }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" - }, - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" - }, - "ansi-escapes": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", - "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", - "requires": { - "type-fest": "^0.11.0" - }, - "dependencies": { - "type-fest": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", - "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" - } - } - }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" - }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "aria-query": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", - "integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=", - "requires": { - "ast-types-flow": "0.0.7", - "commander": "^2.11.0" - } - }, - "arity-n": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", - "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - }, - "array-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", - "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" - }, - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - }, - "array-includes": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz", - "integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0", - "is-string": "^1.0.5" - } - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - }, - "array.prototype.flat": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz", - "integrity": "sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", - "requires": { - "util": "0.10.3" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" - }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" - }, - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "requires": { - "lodash": "^4.17.14" - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "autoprefixer": { - "version": "9.7.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.6.tgz", - "integrity": "sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ==", - "requires": { - "browserslist": "^4.11.1", - "caniuse-lite": "^1.0.30001039", - "chalk": "^2.4.2", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.27", - "postcss-value-parser": "^4.0.3" - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz", - "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==" - }, - "axobject-query": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.1.2.tgz", - "integrity": "sha512-ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ==" - }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "babel-eslint": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.0", - "@babel/traverse": "^7.7.0", - "@babel/types": "^7.7.0", - "eslint-visitor-keys": "^1.0.0", - "resolve": "^1.12.0" - } - }, - "babel-extract-comments": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", - "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", - "requires": { - "babylon": "^6.18.0" - } - }, - "babel-jest": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", - "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", - "requires": { - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/babel__core": "^7.1.0", - "babel-plugin-istanbul": "^5.1.0", - "babel-preset-jest": "^24.9.0", - "chalk": "^2.4.2", - "slash": "^2.0.0" - } - }, - "babel-loader": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", - "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", - "requires": { - "find-cache-dir": "^2.1.0", - "loader-utils": "^1.4.0", - "mkdirp": "^0.5.3", - "pify": "^4.0.1", - "schema-utils": "^2.6.5" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - } - }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "requires": { - "object.assign": "^4.1.0" - } - }, - "babel-plugin-istanbul": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", - "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "find-up": "^3.0.0", - "istanbul-lib-instrument": "^3.3.0", - "test-exclude": "^5.2.3" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - } - }, - "babel-plugin-jest-hoist": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", - "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", - "requires": { - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - }, - "dependencies": { - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", - "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "parse-json": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", - "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - } - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - } - }, - "babel-plugin-named-asset-import": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.6.tgz", - "integrity": "sha512-1aGDUfL1qOOIoqk9QKGIo2lANk+C7ko/fqH0uIyC71x3PEGz0uVP8ISgfEsFuG+FKmjHTvFK/nNM8dowpmUxLA==" - }, - "babel-plugin-syntax-object-rest-spread": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", - "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" - }, - "babel-plugin-transform-object-rest-spread": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", - "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", - "requires": { - "babel-plugin-syntax-object-rest-spread": "^6.8.0", - "babel-runtime": "^6.26.0" - } - }, - "babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" - }, - "babel-preset-jest": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", - "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", - "requires": { - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "babel-plugin-jest-hoist": "^24.9.0" - } - }, - "babel-preset-react-app": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-9.1.2.tgz", - "integrity": "sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA==", - "requires": { - "@babel/core": "7.9.0", - "@babel/plugin-proposal-class-properties": "7.8.3", - "@babel/plugin-proposal-decorators": "7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3", - "@babel/plugin-proposal-numeric-separator": "7.8.3", - "@babel/plugin-proposal-optional-chaining": "7.9.0", - "@babel/plugin-transform-flow-strip-types": "7.9.0", - "@babel/plugin-transform-react-display-name": "7.8.3", - "@babel/plugin-transform-runtime": "7.9.0", - "@babel/preset-env": "7.9.0", - "@babel/preset-react": "7.9.1", - "@babel/preset-typescript": "7.9.0", - "@babel/runtime": "7.9.0", - "babel-plugin-macros": "2.8.0", - "babel-plugin-transform-react-remove-prop-types": "0.4.24" - }, - "dependencies": { - "@babel/preset-env": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.0.tgz", - "integrity": "sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==", - "requires": { - "@babel/compat-data": "^7.9.0", - "@babel/helper-compilation-targets": "^7.8.7", - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-proposal-async-generator-functions": "^7.8.3", - "@babel/plugin-proposal-dynamic-import": "^7.8.3", - "@babel/plugin-proposal-json-strings": "^7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-numeric-separator": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.9.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.9.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", - "@babel/plugin-syntax-json-strings": "^7.8.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", - "@babel/plugin-syntax-numeric-separator": "^7.8.0", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.8.3", - "@babel/plugin-transform-async-to-generator": "^7.8.3", - "@babel/plugin-transform-block-scoped-functions": "^7.8.3", - "@babel/plugin-transform-block-scoping": "^7.8.3", - "@babel/plugin-transform-classes": "^7.9.0", - "@babel/plugin-transform-computed-properties": "^7.8.3", - "@babel/plugin-transform-destructuring": "^7.8.3", - "@babel/plugin-transform-dotall-regex": "^7.8.3", - "@babel/plugin-transform-duplicate-keys": "^7.8.3", - "@babel/plugin-transform-exponentiation-operator": "^7.8.3", - "@babel/plugin-transform-for-of": "^7.9.0", - "@babel/plugin-transform-function-name": "^7.8.3", - "@babel/plugin-transform-literals": "^7.8.3", - "@babel/plugin-transform-member-expression-literals": "^7.8.3", - "@babel/plugin-transform-modules-amd": "^7.9.0", - "@babel/plugin-transform-modules-commonjs": "^7.9.0", - "@babel/plugin-transform-modules-systemjs": "^7.9.0", - "@babel/plugin-transform-modules-umd": "^7.9.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", - "@babel/plugin-transform-new-target": "^7.8.3", - "@babel/plugin-transform-object-super": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.8.7", - "@babel/plugin-transform-property-literals": "^7.8.3", - "@babel/plugin-transform-regenerator": "^7.8.7", - "@babel/plugin-transform-reserved-words": "^7.8.3", - "@babel/plugin-transform-shorthand-properties": "^7.8.3", - "@babel/plugin-transform-spread": "^7.8.3", - "@babel/plugin-transform-sticky-regex": "^7.8.3", - "@babel/plugin-transform-template-literals": "^7.8.3", - "@babel/plugin-transform-typeof-symbol": "^7.8.4", - "@babel/plugin-transform-unicode-regex": "^7.8.3", - "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.9.0", - "browserslist": "^4.9.1", - "core-js-compat": "^3.6.2", - "invariant": "^2.2.2", - "levenary": "^1.1.1", - "semver": "^5.5.0" - } - }, - "@babel/preset-react": { - "version": "7.9.1", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.1.tgz", - "integrity": "sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-react-display-name": "^7.8.3", - "@babel/plugin-transform-react-jsx": "^7.9.1", - "@babel/plugin-transform-react-jsx-development": "^7.9.0", - "@babel/plugin-transform-react-jsx-self": "^7.9.0", - "@babel/plugin-transform-react-jsx-source": "^7.9.0" - } - }, - "@babel/runtime": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.0.tgz", - "integrity": "sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - }, - "dependencies": { - "core-js": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz", - "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" - }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - } - } - }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - } - }, - "base64-js": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", - "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - }, - "binary-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", - "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==" - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "bn.js": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==" - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "dependencies": { - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" - } - } - }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", - "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - }, - "browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" - }, - "browser-resolve": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", - "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", - "requires": { - "resolve": "1.1.7" - }, - "dependencies": { - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" - } - } - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", - "requires": { - "bn.js": "^4.1.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", - "requires": { - "bn.js": "^4.1.1", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.2", - "elliptic": "^6.0.0", - "inherits": "^2.0.1", - "parse-asn1": "^5.0.0" - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz", - "integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==", - "requires": { - "caniuse-lite": "^1.0.30001043", - "electron-to-chromium": "^1.3.413", - "node-releases": "^1.1.53", - "pkg-up": "^2.0.0" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, - "cacache": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz", - "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", - "requires": { - "chownr": "^1.1.2", - "figgy-pudding": "^3.5.1", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.2", - "infer-owner": "^1.0.4", - "lru-cache": "^5.1.1", - "minipass": "^3.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "p-map": "^3.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^2.7.1", - "ssri": "^7.0.0", - "unique-filename": "^1.1.1" - }, - "dependencies": { - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "call-me-maybe": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", - "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" - }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", - "requires": { - "callsites": "^2.0.0" - } - }, - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", - "requires": { - "caller-callsite": "^2.0.0" - } - }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" - }, - "camel-case": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.1.tgz", - "integrity": "sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==", - "requires": { - "pascal-case": "^3.1.1", - "tslib": "^1.10.0" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001048", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001048.tgz", - "integrity": "sha512-g1iSHKVxornw0K8LG9LLdf+Fxnv7T1Z+mMsf0/YYLclQX4Cd522Ap0Lrw6NFqHgezit78dtyWxzlV2Xfc7vgRg==" - }, - "capture-exit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", - "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", - "requires": { - "rsvp": "^4.8.4" - } - }, - "case-sensitive-paths-webpack-plugin": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", - "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - }, - "chokidar": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.0.tgz", - "integrity": "sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==", - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.4.0" - }, - "dependencies": { - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - } - } - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "chrome-trace-event": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", - "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", - "requires": { - "tslib": "^1.9.0" - } - }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "clean-css": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", - "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", - "requires": { - "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", - "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==" - }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } - } - }, - "clone-deep": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", - "integrity": "sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=", - "requires": { - "for-own": "^0.1.3", - "is-plain-object": "^2.0.1", - "kind-of": "^3.0.2", - "lazy-cache": "^1.0.3", - "shallow-clone": "^0.1.2" - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - }, - "coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "requires": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz", - "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==", - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.2" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "color-string": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz", - "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "common-tags": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", - "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" - }, - "compose-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", - "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", - "requires": { - "arity-n": "^1.0.4" - } - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "requires": { - "mime-db": ">= 1.43.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "confusing-browser-globals": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz", - "integrity": "sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw==" - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - }, - "contains-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", - "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=" - }, - "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "requires": { - "safe-buffer": "5.1.2" - } - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" - }, - "core-js": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz", - "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==" - }, - "core-js-compat": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz", - "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==", - "requires": { - "browserslist": "^4.8.5", - "semver": "7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } - } - }, - "core-js-pure": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.5.tgz", - "integrity": "sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - } - }, - "create-ecdh": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", - "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.0.0" - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "css": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", - "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", - "requires": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "css-blank-pseudo": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", - "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", - "requires": { - "postcss": "^7.0.5" - } - }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" - }, - "css-declaration-sorter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", - "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", - "requires": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" - } - }, - "css-has-pseudo": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", - "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", - "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^5.0.0-rc.4" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "css-loader": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", - "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", - "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.23", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.1.1", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.0.2", - "schema-utils": "^2.6.0" - }, - "dependencies": { - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - } - }, - "css-prefers-color-scheme": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", - "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", - "requires": { - "postcss": "^7.0.5" - } - }, - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" - }, - "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "css-what": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.2.1.tgz", - "integrity": "sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==" - }, - "css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" - }, - "cssdb": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", - "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - }, - "cssnano": { - "version": "4.1.10", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", - "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", - "requires": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.7", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" - } - }, - "cssnano-preset-default": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", - "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", - "requires": { - "css-declaration-sorter": "^4.0.1", - "cssnano-util-raw-cache": "^4.0.1", - "postcss": "^7.0.0", - "postcss-calc": "^7.0.1", - "postcss-colormin": "^4.0.3", - "postcss-convert-values": "^4.0.1", - "postcss-discard-comments": "^4.0.2", - "postcss-discard-duplicates": "^4.0.2", - "postcss-discard-empty": "^4.0.1", - "postcss-discard-overridden": "^4.0.1", - "postcss-merge-longhand": "^4.0.11", - "postcss-merge-rules": "^4.0.3", - "postcss-minify-font-values": "^4.0.2", - "postcss-minify-gradients": "^4.0.2", - "postcss-minify-params": "^4.0.2", - "postcss-minify-selectors": "^4.0.2", - "postcss-normalize-charset": "^4.0.1", - "postcss-normalize-display-values": "^4.0.2", - "postcss-normalize-positions": "^4.0.2", - "postcss-normalize-repeat-style": "^4.0.2", - "postcss-normalize-string": "^4.0.2", - "postcss-normalize-timing-functions": "^4.0.2", - "postcss-normalize-unicode": "^4.0.1", - "postcss-normalize-url": "^4.0.1", - "postcss-normalize-whitespace": "^4.0.2", - "postcss-ordered-values": "^4.1.2", - "postcss-reduce-initial": "^4.0.3", - "postcss-reduce-transforms": "^4.0.2", - "postcss-svgo": "^4.0.2", - "postcss-unique-selectors": "^4.0.1" - } - }, - "cssnano-util-get-arguments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", - "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" - }, - "cssnano-util-get-match": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", - "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" - }, - "cssnano-util-raw-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", - "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", - "requires": { - "postcss": "^7.0.0" - } - }, - "cssnano-util-same-parent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", - "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" - }, - "csso": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.3.tgz", - "integrity": "sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==", - "requires": { - "css-tree": "1.0.0-alpha.39" - }, - "dependencies": { - "css-tree": { - "version": "1.0.0-alpha.39", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.39.tgz", - "integrity": "sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==", - "requires": { - "mdn-data": "2.0.6", - "source-map": "^0.6.1" - } - }, - "mdn-data": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.6.tgz", - "integrity": "sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - }, - "cssstyle": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", - "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", - "requires": { - "cssom": "0.3.x" - } - }, - "csstype": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.10.tgz", - "integrity": "sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w==" - }, - "cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" - }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "damerau-levenshtein": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz", - "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "data-urls": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", - "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", - "requires": { - "abab": "^2.0.0", - "whatwg-mimetype": "^2.2.0", - "whatwg-url": "^7.0.0" - }, - "dependencies": { - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } - } - }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "requires": { - "ms": "^2.1.1" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" - }, - "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" - } - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" - }, - "default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", - "requires": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" - } - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - } - }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", - "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" - }, - "dependencies": { - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } - } - }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "detect-newline": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", - "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=" - }, - "detect-node": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", - "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" - }, - "detect-port-alt": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", - "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", - "requires": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "diff-sequences": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", - "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==" - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "dir-glob": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", - "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", - "requires": { - "arrify": "^1.0.1", - "path-type": "^3.0.0" - } - }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" - }, - "dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", - "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", - "requires": { - "buffer-indexof": "^1.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-accessibility-api": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.3.0.tgz", - "integrity": "sha512-PzwHEmsRP3IGY4gv/Ug+rMeaTIyTJvadCb+ujYXYeIylbHJezIyNToe8KfEgHTCEYyC+/bUghYOGg8yMGlZ6vA==" - }, - "dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "requires": { - "utila": "~0.4" - } - }, - "dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "requires": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - }, - "dependencies": { - "domelementtype": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz", - "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==" - } - } - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" - }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - }, - "domexception": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", - "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", - "requires": { - "webidl-conversions": "^4.0.2" - } - }, - "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "requires": { - "domelementtype": "1" - } - }, - "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "dot-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.3.tgz", - "integrity": "sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA==", - "requires": { - "no-case": "^3.0.3", - "tslib": "^1.10.0" - } - }, - "dot-prop": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz", - "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==", - "requires": { - "is-obj": "^2.0.0" - } - }, - "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" - }, - "dotenv-expand": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" - }, - "duplexer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", - "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" - }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "electron-to-chromium": { - "version": "1.3.418", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.418.tgz", - "integrity": "sha512-i2QrQtHes5fK/F9QGG5XacM5WKEuR322fxTYF9e8O9Gu0mc0WmjjwGpV8c7Htso6Zf2Di18lc3SIPxmMeRFBug==" - }, - "elliptic": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz", - "integrity": "sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==", - "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz", - "integrity": "sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==", - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - }, - "dependencies": { - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", - "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" - }, - "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-abstract": { - "version": "1.17.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz", - "integrity": "sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==", - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.1.5", - "is-regex": "^1.0.5", - "object-inspect": "^1.7.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.0", - "string.prototype.trimleft": "^2.1.1", - "string.prototype.trimright": "^2.1.1" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", - "requires": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "escodegen": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.1.tgz", - "integrity": "sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==", - "requires": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - } - } - }, - "eslint": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", - "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", - "requires": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.10.0", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^1.4.3", - "eslint-visitor-keys": "^1.1.0", - "espree": "^6.1.2", - "esquery": "^1.0.1", - "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "inquirer": "^7.0.0", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.14", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.3", - "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^6.1.2", - "strip-ansi": "^5.2.0", - "strip-json-comments": "^3.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "dependencies": { - "eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", - "requires": { - "type-fest": "^0.8.1" - } - }, - "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", - "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==" - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - } - }, - "eslint-config-react-app": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz", - "integrity": "sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==", - "requires": { - "confusing-browser-globals": "^1.0.9" - } - }, - "eslint-import-resolver-node": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz", - "integrity": "sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg==", - "requires": { - "debug": "^2.6.9", - "resolve": "^1.13.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "eslint-loader": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-3.0.3.tgz", - "integrity": "sha512-+YRqB95PnNvxNp1HEjQmvf9KNvCin5HXYYseOXVC2U0KEcw4IkQ2IQEBG46j7+gW39bMzeu0GsUhVbBY3Votpw==", - "requires": { - "fs-extra": "^8.1.0", - "loader-fs-cache": "^1.0.2", - "loader-utils": "^1.2.3", - "object-hash": "^2.0.1", - "schema-utils": "^2.6.1" - } - }, - "eslint-module-utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", - "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", - "requires": { - "debug": "^2.6.9", - "pkg-dir": "^2.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "requires": { - "find-up": "^2.1.0" - } - } - } - }, - "eslint-plugin-flowtype": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.6.0.tgz", - "integrity": "sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ==", - "requires": { - "lodash": "^4.17.15" - } - }, - "eslint-plugin-import": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz", - "integrity": "sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw==", - "requires": { - "array-includes": "^3.0.3", - "array.prototype.flat": "^1.2.1", - "contains-path": "^0.1.0", - "debug": "^2.6.9", - "doctrine": "1.5.0", - "eslint-import-resolver-node": "^0.3.2", - "eslint-module-utils": "^2.4.1", - "has": "^1.0.3", - "minimatch": "^3.0.4", - "object.values": "^1.1.0", - "read-pkg-up": "^2.0.0", - "resolve": "^1.12.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", - "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", - "requires": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" - } - }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "requires": { - "error-ex": "^1.2.0" - } - }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", - "requires": { - "pify": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", - "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" - } - }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", - "requires": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" - } - } - } - }, - "eslint-plugin-jsx-a11y": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz", - "integrity": "sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==", - "requires": { - "@babel/runtime": "^7.4.5", - "aria-query": "^3.0.0", - "array-includes": "^3.0.3", - "ast-types-flow": "^0.0.7", - "axobject-query": "^2.0.2", - "damerau-levenshtein": "^1.0.4", - "emoji-regex": "^7.0.2", - "has": "^1.0.3", - "jsx-ast-utils": "^2.2.1" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - } - } - }, - "eslint-plugin-react": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz", - "integrity": "sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ==", - "requires": { - "array-includes": "^3.1.1", - "doctrine": "^2.1.0", - "has": "^1.0.3", - "jsx-ast-utils": "^2.2.3", - "object.entries": "^1.1.1", - "object.fromentries": "^2.0.2", - "object.values": "^1.1.1", - "prop-types": "^15.7.2", - "resolve": "^1.15.1", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.2", - "xregexp": "^4.3.0" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "resolve": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", - "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", - "requires": { - "path-parse": "^1.0.6" - } - } - } - }, - "eslint-plugin-react-hooks": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz", - "integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==" - }, - "eslint-scope": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz", - "integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==", - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "eslint-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.0.0.tgz", - "integrity": "sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA==", - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz", - "integrity": "sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==" - }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", - "requires": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "esquery": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", - "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.1.0.tgz", - "integrity": "sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw==" - } - } - }, - "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", - "requires": { - "estraverse": "^4.1.0" - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - }, - "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" - }, - "events": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.1.0.tgz", - "integrity": "sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==" - }, - "eventsource": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", - "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", - "requires": { - "original": "^1.0.0" - } - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "exec-sh": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", - "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==" - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "expect": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", - "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", - "requires": { - "@jest/types": "^24.9.0", - "ansi-styles": "^3.2.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.9.0" - } - }, - "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "requires": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" - } - } - }, - "ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "requires": { - "type": "^2.0.0" - }, - "dependencies": { - "type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.0.0.tgz", - "integrity": "sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==" - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" - }, - "fast-glob": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", - "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", - "requires": { - "@mrmlnc/readdir-enhanced": "^2.2.1", - "@nodelib/fs.stat": "^1.1.2", - "glob-parent": "^3.1.0", - "is-glob": "^4.0.0", - "merge2": "^1.2.3", - "micromatch": "^3.1.10" - }, - "dependencies": { - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "requires": { - "is-extglob": "^2.1.0" - } - } - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - }, - "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", - "requires": { - "bser": "2.1.1" - } - }, - "figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", - "requires": { - "flat-cache": "^2.0.1" - } - }, - "file-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz", - "integrity": "sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==", - "requires": { - "loader-utils": "^1.2.3", - "schema-utils": "^2.5.0" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true - }, - "filesize": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz", - "integrity": "sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==" - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "requires": { - "locate-path": "^2.0.0" - } - }, - "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", - "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" - } - }, - "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==" - }, - "flatten": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", - "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" - }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "follow-redirects": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.11.0.tgz", - "integrity": "sha512-KZm0V+ll8PfBrKwMzdo5D13b1bur9Iq9Zd/RMmAoQQcl2PxxFml8cxXPaaPYVbV0RjNjq1CU7zIzAOqtUPudmA==", - "requires": { - "debug": "^3.0.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "requires": { - "for-in": "^1.0.1" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "fork-ts-checker-webpack-plugin": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz", - "integrity": "sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==", - "requires": { - "babel-code-frame": "^6.22.0", - "chalk": "^2.4.1", - "chokidar": "^3.3.0", - "micromatch": "^3.1.10", - "minimatch": "^3.0.4", - "semver": "^5.6.0", - "tapable": "^1.0.0", - "worker-rpc": "^0.1.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "requires": { - "minipass": "^3.0.0" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "fsevents": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", - "integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" - }, - "gensync": { - "version": "1.0.0-beta.1", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", - "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==" - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - }, - "get-own-enumerable-property-symbols": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "requires": { - "pump": "^3.0.0" - } - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", - "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" - }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "requires": { - "global-prefix": "^3.0.0" - } - }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - }, - "globby": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", - "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", - "requires": { - "array-union": "^1.0.1", - "dir-glob": "2.0.0", - "fast-glob": "^2.0.2", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - }, - "dependencies": { - "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=" - } - } - }, - "graceful-fs": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", - "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" - }, - "growly": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" - }, - "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", - "requires": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - } - }, - "handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "requires": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - } - }, - "harmony-reflect": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz", - "integrity": "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==" - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "requires": { - "ansi-regex": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - } - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "has-symbols": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - }, - "hex-color-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", - "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hosted-git-info": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", - "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "hsl-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", - "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" - }, - "hsla-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", - "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" - }, - "html-comment-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", - "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" - }, - "html-encoding-sniffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", - "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", - "requires": { - "whatwg-encoding": "^1.0.1" - } - }, - "html-entities": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz", - "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==" - }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - }, - "html-minifier-terser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.0.5.tgz", - "integrity": "sha512-cBSFFghQh/uHcfSiL42KxxIRMF7A144+3E44xdlctIjxEmkEfCvouxNyFH2wysXk1fCGBPwtcr3hDWlGTfkDew==", - "requires": { - "camel-case": "^4.1.1", - "clean-css": "^4.2.3", - "commander": "^4.1.1", - "he": "^1.2.0", - "param-case": "^3.0.3", - "relateurl": "^0.2.7", - "terser": "^4.6.3" - }, - "dependencies": { - "commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" - } - } - }, - "html-webpack-plugin": { - "version": "4.0.0-beta.11", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz", - "integrity": "sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg==", - "requires": { - "html-minifier-terser": "^5.0.1", - "loader-utils": "^1.2.3", - "lodash": "^4.17.15", - "pretty-error": "^2.1.1", - "tapable": "^1.1.3", - "util.promisify": "1.0.0" - }, - "dependencies": { - "util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", - "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" - } - } - } - }, - "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - }, - "dependencies": { - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - } - } - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" - }, - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } - } - }, - "http-parser-js": { - "version": "0.4.10", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz", - "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=" - }, - "http-proxy": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.0.tgz", - "integrity": "sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", - "requires": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-utils": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", - "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", - "requires": { - "postcss": "^7.0.14" - } - }, - "identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", - "requires": { - "harmony-reflect": "^1.4.6" - } - }, - "ieee754": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", - "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - }, - "immer": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/immer/-/immer-1.10.0.tgz", - "integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==" - }, - "import-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", - "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", - "requires": { - "import-from": "^2.1.0" - } - }, - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - } - }, - "import-from": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", - "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", - "requires": { - "resolve-from": "^3.0.0" - } - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" - }, - "inquirer": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.1.0.tgz", - "integrity": "sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg==", - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.15", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.5.3", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", - "requires": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" - } - }, - "internal-slot": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.2.tgz", - "integrity": "sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==", - "requires": { - "es-abstract": "^1.17.0-next.1", - "has": "^1.0.3", - "side-channel": "^1.0.2" - } - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==" - }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" - }, - "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-arguments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "is-callable": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz", - "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==" - }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "requires": { - "ci-info": "^2.0.0" - } - }, - "is-color-stop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", - "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", - "requires": { - "css-color-names": "^0.0.4", - "hex-color-regex": "^1.1.0", - "hsl-regex": "^1.0.0", - "hsla-regex": "^1.0.0", - "rgb-regex": "^1.0.1", - "rgba-regex": "^1.0.0" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - } - }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" - }, - "is-docker": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.0.0.tgz", - "integrity": "sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ==" - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "requires": { - "is-path-inside": "^2.1.0" - } - }, - "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "requires": { - "path-is-inside": "^1.0.2" - } - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "requires": { - "isobject": "^3.0.1" - } - }, - "is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" - }, - "is-regex": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz", - "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==", - "requires": { - "has": "^1.0.3" - } - }, - "is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" - }, - "is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" - }, - "is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, - "is-string": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", - "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" - }, - "is-svg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", - "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", - "requires": { - "html-comment-regex": "^1.1.0" - } - }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "requires": { - "has-symbols": "^1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "istanbul-lib-coverage": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", - "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==" - }, - "istanbul-lib-instrument": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", - "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", - "requires": { - "@babel/generator": "^7.4.0", - "@babel/parser": "^7.4.3", - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.3", - "@babel/types": "^7.4.0", - "istanbul-lib-coverage": "^2.0.5", - "semver": "^6.0.0" - } - }, - "istanbul-lib-report": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", - "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", - "requires": { - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", - "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "rimraf": "^2.6.3", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "istanbul-reports": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz", - "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", - "requires": { - "html-escaper": "^2.0.0" - } - }, - "jest": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", - "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", - "requires": { - "import-local": "^2.0.0", - "jest-cli": "^24.9.0" - }, - "dependencies": { - "jest-cli": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", - "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", - "requires": { - "@jest/core": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "import-local": "^2.0.0", - "is-ci": "^2.0.0", - "jest-config": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "prompts": "^2.0.1", - "realpath-native": "^1.1.0", - "yargs": "^13.3.0" - } - } - } - }, - "jest-changed-files": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", - "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", - "requires": { - "@jest/types": "^24.9.0", - "execa": "^1.0.0", - "throat": "^4.0.0" - } - }, - "jest-config": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", - "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^24.9.0", - "@jest/types": "^24.9.0", - "babel-jest": "^24.9.0", - "chalk": "^2.0.1", - "glob": "^7.1.1", - "jest-environment-jsdom": "^24.9.0", - "jest-environment-node": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "micromatch": "^3.1.10", - "pretty-format": "^24.9.0", - "realpath-native": "^1.1.0" - } - }, - "jest-diff": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", - "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", - "requires": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-docblock": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", - "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", - "requires": { - "detect-newline": "^2.1.0" - } - }, - "jest-each": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", - "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", - "requires": { - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-environment-jsdom": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", - "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", - "requires": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0", - "jsdom": "^11.5.1" - } - }, - "jest-environment-jsdom-fourteen": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom-fourteen/-/jest-environment-jsdom-fourteen-1.0.1.tgz", - "integrity": "sha512-DojMX1sY+at5Ep+O9yME34CdidZnO3/zfPh8UW+918C5fIZET5vCjfkegixmsi7AtdYfkr4bPlIzmWnlvQkP7Q==", - "requires": { - "@jest/environment": "^24.3.0", - "@jest/fake-timers": "^24.3.0", - "@jest/types": "^24.3.0", - "jest-mock": "^24.0.0", - "jest-util": "^24.0.0", - "jsdom": "^14.1.0" - }, - "dependencies": { - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" - }, - "jsdom": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-14.1.0.tgz", - "integrity": "sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng==", - "requires": { - "abab": "^2.0.0", - "acorn": "^6.0.4", - "acorn-globals": "^4.3.0", - "array-equal": "^1.0.0", - "cssom": "^0.3.4", - "cssstyle": "^1.1.1", - "data-urls": "^1.1.0", - "domexception": "^1.0.1", - "escodegen": "^1.11.0", - "html-encoding-sniffer": "^1.0.2", - "nwsapi": "^2.1.3", - "parse5": "5.1.0", - "pn": "^1.1.0", - "request": "^2.88.0", - "request-promise-native": "^1.0.5", - "saxes": "^3.1.9", - "symbol-tree": "^3.2.2", - "tough-cookie": "^2.5.0", - "w3c-hr-time": "^1.0.1", - "w3c-xmlserializer": "^1.1.2", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^7.0.0", - "ws": "^6.1.2", - "xml-name-validator": "^3.0.0" - } - }, - "parse5": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", - "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==" - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", - "requires": { - "async-limiter": "~1.0.0" - } - } - } - }, - "jest-environment-node": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", - "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", - "requires": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0" - } - }, - "jest-get-type": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", - "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==" - }, - "jest-haste-map": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", - "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", - "requires": { - "@jest/types": "^24.9.0", - "anymatch": "^2.0.0", - "fb-watchman": "^2.0.0", - "fsevents": "^1.2.7", - "graceful-fs": "^4.1.15", - "invariant": "^2.2.4", - "jest-serializer": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.9.0", - "micromatch": "^3.1.10", - "sane": "^4.0.3", - "walker": "^1.0.7" - }, - "dependencies": { - "fsevents": { - "version": "1.2.12", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz", - "integrity": "sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1", - "node-pre-gyp": "*" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.4", - "bundled": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "debug": { - "version": "3.2.6", - "bundled": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.7", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.6.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.6", - "bundled": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.3", - "bundled": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "bundled": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "bundled": true, - "optional": true - }, - "minipass": { - "version": "2.9.0", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.3.3", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.9.0" - } - }, - "mkdirp": { - "version": "0.5.3", - "bundled": true, - "optional": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "ms": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "needle": { - "version": "2.3.3", - "bundled": true, - "optional": true, - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.14.0", - "bundled": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4.4.2" - } - }, - "nopt": { - "version": "4.0.3", - "bundled": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "npm-packlist": { - "version": "1.4.8", - "bundled": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1", - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "bundled": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.7.1", - "bundled": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "optional": true - }, - "semver": { - "version": "5.7.1", - "bundled": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "4.4.13", - "bundled": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "yallist": { - "version": "3.1.1", - "bundled": true, - "optional": true - } - } - } - } - }, - "jest-jasmine2": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", - "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "co": "^4.6.0", - "expect": "^24.9.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0", - "throat": "^4.0.0" - } - }, - "jest-leak-detector": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", - "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", - "requires": { - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-matcher-utils": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", - "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", - "requires": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-message-util": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", - "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", - "requires": { - "@babel/code-frame": "^7.0.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/stack-utils": "^1.0.1", - "chalk": "^2.0.1", - "micromatch": "^3.1.10", - "slash": "^2.0.0", - "stack-utils": "^1.0.1" - } - }, - "jest-mock": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", - "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", - "requires": { - "@jest/types": "^24.9.0" - } - }, - "jest-pnp-resolver": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", - "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==" - }, - "jest-regex-util": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", - "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==" - }, - "jest-resolve": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", - "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", - "requires": { - "@jest/types": "^24.9.0", - "browser-resolve": "^1.11.3", - "chalk": "^2.0.1", - "jest-pnp-resolver": "^1.2.1", - "realpath-native": "^1.1.0" - } - }, - "jest-resolve-dependencies": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", - "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", - "requires": { - "@jest/types": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-snapshot": "^24.9.0" - } - }, - "jest-runner": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", - "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", - "requires": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.4.2", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-docblock": "^24.3.0", - "jest-haste-map": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-leak-detector": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "source-map-support": "^0.5.6", - "throat": "^4.0.0" - } - }, - "jest-runtime": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", - "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", - "requires": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/source-map": "^24.3.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "strip-bom": "^3.0.0", - "yargs": "^13.3.0" - } - }, - "jest-serializer": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", - "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==" - }, - "jest-snapshot": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", - "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", - "requires": { - "@babel/types": "^7.0.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "expect": "^24.9.0", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^24.9.0", - "semver": "^6.2.0" - } - }, - "jest-util": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", - "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", - "requires": { - "@jest/console": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/source-map": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "callsites": "^3.0.0", - "chalk": "^2.0.1", - "graceful-fs": "^4.1.15", - "is-ci": "^2.0.0", - "mkdirp": "^0.5.1", - "slash": "^2.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "jest-validate": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", - "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", - "requires": { - "@jest/types": "^24.9.0", - "camelcase": "^5.3.1", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "leven": "^3.1.0", - "pretty-format": "^24.9.0" - } - }, - "jest-watch-typeahead": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.4.2.tgz", - "integrity": "sha512-f7VpLebTdaXs81rg/oj4Vg/ObZy2QtGzAmGLNsqUS5G5KtSN68tFcIsbvNODfNyQxU78g7D8x77o3bgfBTR+2Q==", - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^2.4.1", - "jest-regex-util": "^24.9.0", - "jest-watcher": "^24.3.0", - "slash": "^3.0.0", - "string-length": "^3.1.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "string-length": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz", - "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==", - "requires": { - "astral-regex": "^1.0.0", - "strip-ansi": "^5.2.0" - } - } - } - }, - "jest-watcher": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", - "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", - "requires": { - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "jest-util": "^24.9.0", - "string-length": "^2.0.0" - }, - "dependencies": { - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - } - } - }, - "jest-worker": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", - "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "jsdom": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", - "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", - "requires": { - "abab": "^2.0.0", - "acorn": "^5.5.3", - "acorn-globals": "^4.1.0", - "array-equal": "^1.0.0", - "cssom": ">= 0.3.2 < 0.4.0", - "cssstyle": "^1.0.0", - "data-urls": "^1.0.0", - "domexception": "^1.0.1", - "escodegen": "^1.9.1", - "html-encoding-sniffer": "^1.0.2", - "left-pad": "^1.3.0", - "nwsapi": "^2.0.7", - "parse5": "4.0.0", - "pn": "^1.1.0", - "request": "^2.87.0", - "request-promise-native": "^1.0.5", - "sax": "^1.2.4", - "symbol-tree": "^3.2.2", - "tough-cookie": "^2.3.4", - "w3c-hr-time": "^1.0.1", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.3", - "whatwg-mimetype": "^2.1.0", - "whatwg-url": "^6.4.1", - "ws": "^5.2.0", - "xml-name-validator": "^3.0.0" - }, - "dependencies": { - "acorn": { - "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" - } - } - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "requires": { - "jsonify": "~0.0.0" - } - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "json3": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" - }, - "json5": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", - "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", - "requires": { - "minimist": "^1.2.5" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsonify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "jsx-ast-utils": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz", - "integrity": "sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==", - "requires": { - "array-includes": "^3.0.3", - "object.assign": "^4.1.0" - } - }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - }, - "last-call-webpack-plugin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", - "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", - "requires": { - "lodash": "^4.17.5", - "webpack-sources": "^1.1.0" - } - }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" - }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "requires": { - "invert-kv": "^2.0.0" - } - }, - "left-pad": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", - "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==" - }, - "leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - }, - "levenary": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz", - "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==", - "requires": { - "leven": "^3.1.0" - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "loader-fs-cache": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz", - "integrity": "sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==", - "requires": { - "find-cache-dir": "^0.1.1", - "mkdirp": "^0.5.1" - }, - "dependencies": { - "find-cache-dir": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", - "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", - "requires": { - "commondir": "^1.0.1", - "mkdirp": "^0.5.1", - "pkg-dir": "^1.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", - "requires": { - "find-up": "^1.0.0" - } - } - } - }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - }, - "lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "requires": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" - }, - "loglevel": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.8.tgz", - "integrity": "sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA==" - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lower-case": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.1.tgz", - "integrity": "sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==", - "requires": { - "tslib": "^1.10.0" - } - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { - "yallist": "^3.0.2" - }, - "dependencies": { - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "makeerror": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", - "requires": { - "tmpl": "1.0.x" - } - }, - "mamacro": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", - "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==" - }, - "map-age-cleaner": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", - "requires": { - "p-defer": "^1.0.0" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "requires": { - "object-visit": "^1.0.0" - } - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "mem": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", - "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", - "requires": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^2.0.0", - "p-is-promise": "^2.0.0" - } - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "merge-deep": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.2.tgz", - "integrity": "sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA==", - "requires": { - "arr-union": "^3.1.0", - "clone-deep": "^0.2.4", - "kind-of": "^3.0.2" - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "merge2": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz", - "integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "microevent.ts": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", - "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - } - }, - "mime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==" - }, - "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" - }, - "mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", - "requires": { - "mime-db": "1.44.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - }, - "min-indent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.0.tgz", - "integrity": "sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=" - }, - "mini-css-extract-plugin": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz", - "integrity": "sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==", - "requires": { - "loader-utils": "^1.1.0", - "normalize-url": "1.9.1", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" - }, - "dependencies": { - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "minipass": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.1.tgz", - "integrity": "sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w==", - "requires": { - "yallist": "^4.0.0" - } - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-pipeline": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.2.tgz", - "integrity": "sha512-3JS5A2DKhD2g0Gg8x3yamO0pj7YeKGwVlDS90pF++kxptwx/F+B//roxf9SqYil5tQo65bijy+dAuAFZmYOouA==", - "requires": { - "minipass": "^3.0.0" - } - }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mixin-object": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", - "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", - "requires": { - "for-in": "^0.1.3", - "is-extendable": "^0.1.1" - }, - "dependencies": { - "for-in": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", - "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=" - } - } - }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - } - }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "requires": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" - } - }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - }, - "nan": { - "version": "2.14.1", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz", - "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==", - "optional": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - } - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" - }, - "neo-async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", - "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==" - }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, - "no-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.3.tgz", - "integrity": "sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==", - "requires": { - "lower-case": "^2.0.1", - "tslib": "^1.10.0" - } - }, - "node-forge": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.0.tgz", - "integrity": "sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==" - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } - } - } - } - }, - "node-modules-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" - }, - "node-notifier": { - "version": "5.4.3", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.3.tgz", - "integrity": "sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==", - "requires": { - "growly": "^1.3.0", - "is-wsl": "^1.1.0", - "semver": "^5.5.0", - "shellwords": "^0.1.1", - "which": "^1.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "node-releases": { - "version": "1.1.53", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.53.tgz", - "integrity": "sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==" - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" - }, - "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", - "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" - } - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "requires": { - "path-key": "^2.0.0" - } - }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "requires": { - "boolbase": "~1.0.0" - } - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "nwsapi": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", - "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "object-hash": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.0.3.tgz", - "integrity": "sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg==" - }, - "object-inspect": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", - "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==" - }, - "object-is": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.2.tgz", - "integrity": "sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object-path": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz", - "integrity": "sha1-NwrnUvvzfePqcKhhwju6iRVpGUk=" - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "requires": { - "isobject": "^3.0.0" - } - }, - "object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", - "requires": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" - } - }, - "object.entries": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.1.tgz", - "integrity": "sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", - "has": "^1.0.3" - } - }, - "object.fromentries": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.2.tgz", - "integrity": "sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", - "has": "^1.0.3" - } - }, - "object.getownpropertydescriptors": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", - "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "requires": { - "isobject": "^3.0.1" - } - }, - "object.values": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz", - "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", - "has": "^1.0.3" - } - }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", - "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "open": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/open/-/open-7.0.3.tgz", - "integrity": "sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA==", - "requires": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" - }, - "dependencies": { - "is-wsl": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.1.1.tgz", - "integrity": "sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==" - } - } - }, - "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "requires": { - "is-wsl": "^1.1.0" - } - }, - "optimize-css-assets-webpack-plugin": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz", - "integrity": "sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA==", - "requires": { - "cssnano": "^4.1.10", - "last-call-webpack-plugin": "^3.0.0" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "requires": { - "url-parse": "^1.4.3" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - }, - "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" - }, - "p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" - }, - "p-each-series": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", - "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", - "requires": { - "p-reduce": "^1.0.0" - } - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - }, - "p-is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", - "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==" - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-map": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-reduce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", - "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=" - }, - "p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", - "requires": { - "retry": "^0.12.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", - "requires": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "param-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.3.tgz", - "integrity": "sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA==", - "requires": { - "dot-case": "^3.0.3", - "tslib": "^1.10.0" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "requires": { - "callsites": "^3.0.0" - }, - "dependencies": { - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - } - }, - "parse-asn1": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", - "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", - "requires": { - "asn1.js": "^4.0.0", - "browserify-aes": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "parse5": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "pascal-case": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.1.tgz", - "integrity": "sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA==", - "requires": { - "no-case": "^3.0.3", - "tslib": "^1.10.0" - } - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "requires": { - "pify": "^3.0.0" - } - }, - "pbkdf2": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", - "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "^2.0.0" - } - }, - "pirates": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", - "requires": { - "node-modules-regexp": "^1.0.0" - } - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "requires": { - "find-up": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - } - }, - "pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", - "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", - "requires": { - "find-up": "^2.1.0" - } - }, - "pn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", - "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" - }, - "pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", - "requires": { - "ts-pnp": "^1.1.6" - } - }, - "portfinder": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.25.tgz", - "integrity": "sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==", - "requires": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.1" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" - }, - "postcss": { - "version": "7.0.27", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.27.tgz", - "integrity": "sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-attribute-case-insensitive": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", - "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^6.0.2" - } - }, - "postcss-browser-comments": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", - "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", - "requires": { - "postcss": "^7" - } - }, - "postcss-calc": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.2.tgz", - "integrity": "sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ==", - "requires": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" - } - }, - "postcss-color-functional-notation": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", - "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-color-gray": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", - "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-color-hex-alpha": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", - "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", - "requires": { - "postcss": "^7.0.14", - "postcss-values-parser": "^2.0.1" - } - }, - "postcss-color-mod-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", - "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-color-rebeccapurple": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", - "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-colormin": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", - "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", - "requires": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-convert-values": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", - "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-custom-media": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", - "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", - "requires": { - "postcss": "^7.0.14" - } - }, - "postcss-custom-properties": { - "version": "8.0.11", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", - "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", - "requires": { - "postcss": "^7.0.17", - "postcss-values-parser": "^2.0.1" - } - }, - "postcss-custom-selectors": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", - "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-dir-pseudo-class": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", - "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-discard-comments": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", - "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-duplicates": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", - "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-empty": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", - "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-overridden": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", - "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-double-position-gradients": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", - "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", - "requires": { - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-env-function": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", - "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-flexbugs-fixes": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz", - "integrity": "sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-focus-visible": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", - "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-focus-within": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", - "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-font-variant": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz", - "integrity": "sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-gap-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", - "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-image-set-function": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", - "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-initial": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz", - "integrity": "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==", - "requires": { - "lodash.template": "^4.5.0", - "postcss": "^7.0.2" - } - }, - "postcss-lab-function": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", - "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-load-config": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz", - "integrity": "sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==", - "requires": { - "cosmiconfig": "^5.0.0", - "import-cwd": "^2.0.0" - } - }, - "postcss-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", - "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", - "requires": { - "loader-utils": "^1.1.0", - "postcss": "^7.0.0", - "postcss-load-config": "^2.0.0", - "schema-utils": "^1.0.0" - }, - "dependencies": { - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "postcss-logical": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", - "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-media-minmax": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", - "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-merge-longhand": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", - "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", - "requires": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-merge-rules": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", - "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "cssnano-util-same-parent": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0", - "vendors": "^1.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-minify-font-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", - "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-minify-gradients": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", - "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-minify-params": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", - "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", - "requires": { - "alphanum-sort": "^1.0.0", - "browserslist": "^4.0.0", - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "uniqs": "^2.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-minify-selectors": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", - "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", - "requires": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-modules-extract-imports": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", - "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", - "requires": { - "postcss": "^7.0.5" - } - }, - "postcss-modules-local-by-default": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz", - "integrity": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==", - "requires": { - "icss-utils": "^4.1.1", - "postcss": "^7.0.16", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.0" - } - }, - "postcss-modules-scope": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", - "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", - "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^6.0.0" - } - }, - "postcss-modules-values": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", - "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", - "requires": { - "icss-utils": "^4.0.0", - "postcss": "^7.0.6" - } - }, - "postcss-nesting": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", - "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-normalize": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", - "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", - "requires": { - "@csstools/normalize.css": "^10.1.0", - "browserslist": "^4.6.2", - "postcss": "^7.0.17", - "postcss-browser-comments": "^3.0.0", - "sanitize.css": "^10.0.0" - } - }, - "postcss-normalize-charset": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", - "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-normalize-display-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", - "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-positions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", - "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-repeat-style": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", - "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-string": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", - "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", - "requires": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-timing-functions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", - "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-unicode": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", - "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", - "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-url": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", - "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "normalize-url": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", - "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-whitespace": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", - "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-ordered-values": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", - "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-overflow-shorthand": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", - "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-page-break": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", - "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-place": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", - "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-preset-env": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", - "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", - "requires": { - "autoprefixer": "^9.6.1", - "browserslist": "^4.6.4", - "caniuse-lite": "^1.0.30000981", - "css-blank-pseudo": "^0.1.4", - "css-has-pseudo": "^0.10.0", - "css-prefers-color-scheme": "^3.1.1", - "cssdb": "^4.4.0", - "postcss": "^7.0.17", - "postcss-attribute-case-insensitive": "^4.0.1", - "postcss-color-functional-notation": "^2.0.1", - "postcss-color-gray": "^5.0.0", - "postcss-color-hex-alpha": "^5.0.3", - "postcss-color-mod-function": "^3.0.3", - "postcss-color-rebeccapurple": "^4.0.1", - "postcss-custom-media": "^7.0.8", - "postcss-custom-properties": "^8.0.11", - "postcss-custom-selectors": "^5.1.2", - "postcss-dir-pseudo-class": "^5.0.0", - "postcss-double-position-gradients": "^1.0.0", - "postcss-env-function": "^2.0.2", - "postcss-focus-visible": "^4.0.0", - "postcss-focus-within": "^3.0.0", - "postcss-font-variant": "^4.0.0", - "postcss-gap-properties": "^2.0.0", - "postcss-image-set-function": "^3.0.1", - "postcss-initial": "^3.0.0", - "postcss-lab-function": "^2.0.1", - "postcss-logical": "^3.0.0", - "postcss-media-minmax": "^4.0.0", - "postcss-nesting": "^7.0.0", - "postcss-overflow-shorthand": "^2.0.0", - "postcss-page-break": "^2.0.0", - "postcss-place": "^4.0.1", - "postcss-pseudo-class-any-link": "^6.0.0", - "postcss-replace-overflow-wrap": "^3.0.0", - "postcss-selector-matches": "^4.0.0", - "postcss-selector-not": "^4.0.0" - } - }, - "postcss-pseudo-class-any-link": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", - "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-reduce-initial": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", - "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" - } - }, - "postcss-reduce-transforms": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", - "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-replace-overflow-wrap": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", - "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-safe-parser": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz", - "integrity": "sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-selector-matches": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", - "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", - "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" - } - }, - "postcss-selector-not": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz", - "integrity": "sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==", - "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" - } - }, - "postcss-selector-parser": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz", - "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==", - "requires": { - "cssesc": "^3.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - }, - "postcss-svgo": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", - "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", - "requires": { - "is-svg": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-unique-selectors": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", - "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", - "requires": { - "alphanum-sort": "^1.0.0", - "postcss": "^7.0.0", - "uniqs": "^2.0.0" - } - }, - "postcss-value-parser": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz", - "integrity": "sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg==" - }, - "postcss-values-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", - "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", - "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - }, - "pretty-bytes": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.3.0.tgz", - "integrity": "sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg==" - }, - "pretty-error": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz", - "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=", - "requires": { - "renderkid": "^2.0.1", - "utila": "~0.4" - } - }, - "pretty-format": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", - "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", - "requires": { - "@jest/types": "^24.9.0", - "ansi-regex": "^4.0.0", - "ansi-styles": "^3.2.0", - "react-is": "^16.8.4" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } - } - }, - "private": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==" - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - }, - "promise": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", - "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", - "requires": { - "asap": "~2.0.6" - } - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" - }, - "prompts": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz", - "integrity": "sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==", - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.4" - } - }, - "prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - } - }, - "proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", - "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" - } - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" - }, - "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - }, - "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - }, - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" - }, - "querystringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz", - "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==" - }, - "raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "requires": { - "performance-now": "^2.1.0" - } - }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - } - } - }, - "react": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz", - "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" - } - }, - "react-app-polyfill": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-1.0.6.tgz", - "integrity": "sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==", - "requires": { - "core-js": "^3.5.0", - "object-assign": "^4.1.1", - "promise": "^8.0.3", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.3", - "whatwg-fetch": "^3.0.0" - } - }, - "react-dev-utils": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.1.tgz", - "integrity": "sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==", - "requires": { - "@babel/code-frame": "7.8.3", - "address": "1.1.2", - "browserslist": "4.10.0", - "chalk": "2.4.2", - "cross-spawn": "7.0.1", - "detect-port-alt": "1.1.6", - "escape-string-regexp": "2.0.0", - "filesize": "6.0.1", - "find-up": "4.1.0", - "fork-ts-checker-webpack-plugin": "3.1.1", - "global-modules": "2.0.0", - "globby": "8.0.2", - "gzip-size": "5.1.1", - "immer": "1.10.0", - "inquirer": "7.0.4", - "is-root": "2.1.0", - "loader-utils": "1.2.3", - "open": "^7.0.2", - "pkg-up": "3.1.0", - "react-error-overlay": "^6.0.7", - "recursive-readdir": "2.2.2", - "shell-quote": "1.7.2", - "strip-ansi": "6.0.0", - "text-table": "0.2.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - }, - "browserslist": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.10.0.tgz", - "integrity": "sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==", - "requires": { - "caniuse-lite": "^1.0.30001035", - "electron-to-chromium": "^1.3.378", - "node-releases": "^1.1.52", - "pkg-up": "^3.1.0" - } - }, - "cross-spawn": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz", - "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - } - }, - "inquirer": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.4.tgz", - "integrity": "sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==", - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^2.4.2", - "cli-cursor": "^3.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.15", - "mute-stream": "0.0.8", - "run-async": "^2.2.0", - "rxjs": "^6.5.3", - "string-width": "^4.1.0", - "strip-ansi": "^5.1.0", - "through": "^2.3.6" - }, - "dependencies": { - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "requires": { - "find-up": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - } - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" - } - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "react-dom": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz", - "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.19.1" - } - }, - "react-error-overlay": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.7.tgz", - "integrity": "sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==" - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "react-scripts": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-3.4.1.tgz", - "integrity": "sha512-JpTdi/0Sfd31mZA6Ukx+lq5j1JoKItX7qqEK4OiACjVQletM1P38g49d9/D0yTxp9FrSF+xpJFStkGgKEIRjlQ==", - "requires": { - "@babel/core": "7.9.0", - "@svgr/webpack": "4.3.3", - "@typescript-eslint/eslint-plugin": "^2.10.0", - "@typescript-eslint/parser": "^2.10.0", - "babel-eslint": "10.1.0", - "babel-jest": "^24.9.0", - "babel-loader": "8.1.0", - "babel-plugin-named-asset-import": "^0.3.6", - "babel-preset-react-app": "^9.1.2", - "camelcase": "^5.3.1", - "case-sensitive-paths-webpack-plugin": "2.3.0", - "css-loader": "3.4.2", - "dotenv": "8.2.0", - "dotenv-expand": "5.1.0", - "eslint": "^6.6.0", - "eslint-config-react-app": "^5.2.1", - "eslint-loader": "3.0.3", - "eslint-plugin-flowtype": "4.6.0", - "eslint-plugin-import": "2.20.1", - "eslint-plugin-jsx-a11y": "6.2.3", - "eslint-plugin-react": "7.19.0", - "eslint-plugin-react-hooks": "^1.6.1", - "file-loader": "4.3.0", - "fs-extra": "^8.1.0", - "fsevents": "2.1.2", - "html-webpack-plugin": "4.0.0-beta.11", - "identity-obj-proxy": "3.0.0", - "jest": "24.9.0", - "jest-environment-jsdom-fourteen": "1.0.1", - "jest-resolve": "24.9.0", - "jest-watch-typeahead": "0.4.2", - "mini-css-extract-plugin": "0.9.0", - "optimize-css-assets-webpack-plugin": "5.0.3", - "pnp-webpack-plugin": "1.6.4", - "postcss-flexbugs-fixes": "4.1.0", - "postcss-loader": "3.0.0", - "postcss-normalize": "8.0.1", - "postcss-preset-env": "6.7.0", - "postcss-safe-parser": "4.0.1", - "react-app-polyfill": "^1.0.6", - "react-dev-utils": "^10.2.1", - "resolve": "1.15.0", - "resolve-url-loader": "3.1.1", - "sass-loader": "8.0.2", - "semver": "6.3.0", - "style-loader": "0.23.1", - "terser-webpack-plugin": "2.3.5", - "ts-pnp": "1.1.6", - "url-loader": "2.3.0", - "webpack": "4.42.0", - "webpack-dev-server": "3.10.3", - "webpack-manifest-plugin": "2.2.0", - "workbox-webpack-plugin": "4.3.1" - } - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "read-pkg-up": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", - "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", - "requires": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - } - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdirp": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", - "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", - "requires": { - "picomatch": "^2.2.1" - } - }, - "realpath-native": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", - "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", - "requires": { - "util.promisify": "^1.0.0" - } - }, - "recursive-readdir": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", - "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", - "requires": { - "minimatch": "3.0.4" - } - }, - "redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "requires": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - } - }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==" - }, - "regenerate-unicode-properties": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", - "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", - "requires": { - "regenerate": "^1.4.0" - } - }, - "regenerator-runtime": { - "version": "0.13.5", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz", - "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==" - }, - "regenerator-transform": { - "version": "0.14.4", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.4.tgz", - "integrity": "sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==", - "requires": { - "@babel/runtime": "^7.8.4", - "private": "^0.1.8" - } - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regex-parser": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.10.tgz", - "integrity": "sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA==" - }, - "regexp.prototype.flags": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", - "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } - }, - "regexpp": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", - "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" - }, - "regexpu-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz", - "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==", - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.2.0", - "regjsgen": "^0.5.1", - "regjsparser": "^0.6.4", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.2.0" - } - }, - "regjsgen": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz", - "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==" - }, - "regjsparser": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz", - "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==", - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" - } - } - }, - "relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - }, - "renderkid": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz", - "integrity": "sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==", - "requires": { - "css-select": "^1.1.0", - "dom-converter": "^0.2", - "htmlparser2": "^3.3.0", - "strip-ansi": "^3.0.0", - "utila": "^0.4.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "request-promise-core": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz", - "integrity": "sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==", - "requires": { - "lodash": "^4.17.15" - } - }, - "request-promise-native": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz", - "integrity": "sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==", - "requires": { - "request-promise-core": "1.1.3", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - }, - "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" - }, - "resolve": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz", - "integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==", - "requires": { - "path-parse": "^1.0.6" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", - "requires": { - "resolve-from": "^3.0.0" - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" - }, - "resolve-url-loader": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.1.tgz", - "integrity": "sha512-K1N5xUjj7v0l2j/3Sgs5b8CjrrgtC70SmdCuZiJ8tSyb5J+uk3FoeZ4b7yTnH6j7ngI+Bc5bldHJIa8hYdu2gQ==", - "requires": { - "adjust-sourcemap-loader": "2.0.0", - "camelcase": "5.3.1", - "compose-function": "3.0.3", - "convert-source-map": "1.7.0", - "es6-iterator": "2.0.3", - "loader-utils": "1.2.3", - "postcss": "7.0.21", - "rework": "1.0.1", - "rework-visit": "1.0.0", - "source-map": "0.6.1" - }, - "dependencies": { - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "postcss": { - "version": "7.0.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", - "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" - }, - "rework": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", - "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", - "requires": { - "convert-source-map": "^0.3.3", - "css": "^2.0.0" - }, - "dependencies": { - "convert-source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", - "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" - } - } - }, - "rework-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", - "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" - }, - "rgb-regex": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", - "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" - }, - "rgba-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", - "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "rsvp": { - "version": "4.8.5", - "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", - "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" - }, - "run-async": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.0.tgz", - "integrity": "sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==", - "requires": { - "is-promise": "^2.1.0" - } - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", - "requires": { - "aproba": "^1.1.1" - } - }, - "rxjs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.5.tgz", - "integrity": "sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==", - "requires": { - "tslib": "^1.9.0" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sane": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", - "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", - "requires": { - "@cnakazawa/watch": "^1.0.3", - "anymatch": "^2.0.0", - "capture-exit": "^2.0.0", - "exec-sh": "^0.3.2", - "execa": "^1.0.0", - "fb-watchman": "^2.0.0", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5" - } - }, - "sanitize.css": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", - "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" - }, - "sass-loader": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", - "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", - "requires": { - "clone-deep": "^4.0.1", - "loader-utils": "^1.2.3", - "neo-async": "^2.6.1", - "schema-utils": "^2.6.1", - "semver": "^6.3.0" - }, - "dependencies": { - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - }, - "shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "requires": { - "kind-of": "^6.0.2" - } - } - } - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - }, - "saxes": { - "version": "3.1.11", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", - "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", - "requires": { - "xmlchars": "^2.1.1" - } - }, - "scheduler": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", - "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "schema-utils": { - "version": "2.6.6", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.6.tgz", - "integrity": "sha512-wHutF/WPSbIi9x6ctjGGk2Hvl0VOz5l3EKEuKbjPlB30mKZUzb9A5k9yEXRX3pwyqVLPvpfZZEllaFq/M718hA==", - "requires": { - "ajv": "^6.12.0", - "ajv-keywords": "^3.4.1" - } - }, - "select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" - }, - "selfsigned": { - "version": "1.10.7", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.7.tgz", - "integrity": "sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA==", - "requires": { - "node-forge": "0.9.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", - "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - } - } - }, - "serialize-javascript": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-2.1.2.tgz", - "integrity": "sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==" - }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", - "requires": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - } - }, - "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" - }, - "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shallow-clone": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", - "integrity": "sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=", - "requires": { - "is-extendable": "^0.1.1", - "kind-of": "^2.0.1", - "lazy-cache": "^0.2.3", - "mixin-object": "^2.0.1" - }, - "dependencies": { - "kind-of": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", - "integrity": "sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=", - "requires": { - "is-buffer": "^1.0.2" - } - }, - "lazy-cache": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", - "integrity": "sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=" - } - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - }, - "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "shellwords": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", - "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==" - }, - "side-channel": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.2.tgz", - "integrity": "sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA==", - "requires": { - "es-abstract": "^1.17.0-next.1", - "object-inspect": "^1.7.0" - } - }, - "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" - }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "requires": { - "is-arrayish": "^0.3.1" - }, - "dependencies": { - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - } - }, - "sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" - }, - "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", - "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" - }, - "dependencies": { - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - } - } - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "requires": { - "kind-of": "^3.2.0" - } - }, - "sockjs": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz", - "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==", - "requires": { - "faye-websocket": "^0.10.0", - "uuid": "^3.0.1" - } - }, - "sockjs-client": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", - "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", - "requires": { - "debug": "^3.2.5", - "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "requires": { - "websocket-driver": ">=0.5.1" - } - } - } - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", - "requires": { - "is-plain-obj": "^1.0.0" - } - }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" - }, - "spdx-correct": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" - }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", - "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==" - }, - "spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "requires": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" - } - }, - "spdy-transport": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "requires": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" - } - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "ssri": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.0.tgz", - "integrity": "sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==", - "requires": { - "figgy-pudding": "^3.5.1", - "minipass": "^3.1.1" - } - }, - "stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - }, - "stack-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", - "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==" - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" - }, - "stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" - }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" - }, - "string-length": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", - "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", - "requires": { - "astral-regex": "^1.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - } - } - }, - "string.prototype.matchall": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz", - "integrity": "sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0", - "has-symbols": "^1.0.1", - "internal-slot": "^1.0.2", - "regexp.prototype.flags": "^1.3.0", - "side-channel": "^1.0.2" - } - }, - "string.prototype.trimend": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", - "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "string.prototype.trimleft": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz", - "integrity": "sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5", - "string.prototype.trimstart": "^1.0.0" - } - }, - "string.prototype.trimright": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz", - "integrity": "sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5", - "string.prototype.trimend": "^1.0.0" - } - }, - "string.prototype.trimstart": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", - "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" - } - } - }, - "stringify-object": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", - "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", - "requires": { - "get-own-enumerable-property-symbols": "^3.0.0", - "is-obj": "^1.0.1", - "is-regexp": "^1.0.0" - }, - "dependencies": { - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" - } - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - }, - "strip-comments": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", - "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", - "requires": { - "babel-extract-comments": "^1.0.0", - "babel-plugin-transform-object-rest-spread": "^6.26.0" - } - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" - }, - "strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "requires": { - "min-indent": "^1.0.0" - } - }, - "strip-json-comments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz", - "integrity": "sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==" - }, - "style-loader": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz", - "integrity": "sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==", - "requires": { - "loader-utils": "^1.1.0", - "schema-utils": "^1.0.0" - }, - "dependencies": { - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "stylehacks": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", - "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", - "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "svg-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" - }, - "svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", - "requires": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" - } - }, - "symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - }, - "table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", - "requires": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } - } - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" - }, - "terser": { - "version": "4.6.12", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.12.tgz", - "integrity": "sha512-fnIwuaKjFPANG6MAixC/k1TDtnl1YlPLUlLVIxxGZUn1gfUx2+l3/zGNB72wya+lgsb50QBi2tUV75RiODwnww==", - "requires": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "terser-webpack-plugin": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz", - "integrity": "sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==", - "requires": { - "cacache": "^13.0.1", - "find-cache-dir": "^3.2.0", - "jest-worker": "^25.1.0", - "p-limit": "^2.2.2", - "schema-utils": "^2.6.4", - "serialize-javascript": "^2.1.2", - "source-map": "^0.6.1", - "terser": "^4.4.3", - "webpack-sources": "^1.4.3" - }, - "dependencies": { - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-worker": { - "version": "25.4.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.4.0.tgz", - "integrity": "sha512-ghAs/1FtfYpMmYQ0AHqxV62XPvKdUDIBBApMZfly+E9JEmYh2K45G0R5dWxx986RN12pRCxsViwQVtGl+N4whw==", - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "requires": { - "semver": "^6.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "requires": { - "find-up": "^4.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "test-exclude": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", - "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", - "requires": { - "glob": "^7.1.3", - "minimatch": "^3.0.4", - "read-pkg-up": "^4.0.0", - "require-main-filename": "^2.0.0" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" - }, - "throat": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", - "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=" - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - }, - "timers-browserify": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", - "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", - "requires": { - "setimmediate": "^1.0.4" - } - }, - "timsort": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tmpl": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", - "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", - "requires": { - "punycode": "^2.1.0" - } - }, - "ts-pnp": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.1.6.tgz", - "integrity": "sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ==" - }, - "tslib": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", - "integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==" - }, - "tsutils": { - "version": "3.17.1", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz", - "integrity": "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==", - "requires": { - "tslib": "^1.8.1" - } - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" - }, - "unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" - }, - "unicode-match-property-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", - "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", - "requires": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", - "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" - }, - "unicode-property-aliases-ecmascript": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", - "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - }, - "unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - } - } - }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - } - } - }, - "url-loader": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz", - "integrity": "sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==", - "requires": { - "loader-utils": "^1.2.3", - "mime": "^2.4.4", - "schema-utils": "^2.5.0" - } - }, - "url-parse": { - "version": "1.4.7", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", - "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "requires": { - "inherits": "2.0.1" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" - } - }, - "utila": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - }, - "v8-compile-cache": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz", - "integrity": "sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==" - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" - }, - "vendors": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", - "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - }, - "w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "requires": { - "browser-process-hrtime": "^1.0.0" - } - }, - "w3c-xmlserializer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", - "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", - "requires": { - "domexception": "^1.0.1", - "webidl-conversions": "^4.0.2", - "xml-name-validator": "^3.0.0" - } - }, - "wait-for-expect": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-3.0.2.tgz", - "integrity": "sha512-cfS1+DZxuav1aBYbaO/kE06EOS8yRw7qOFoD3XtjTkYvCvh3zUvNST8DXK/nPaeqIzIv3P3kL3lRJn8iwOiSag==" - }, - "walker": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", - "requires": { - "makeerror": "1.0.x" - } - }, - "watchpack": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.1.tgz", - "integrity": "sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==", - "requires": { - "chokidar": "^2.1.8", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" - }, - "dependencies": { - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "fsevents": { - "version": "1.2.12", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz", - "integrity": "sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1", - "node-pre-gyp": "*" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.4", - "bundled": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "debug": { - "version": "3.2.6", - "bundled": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.7", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.6.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.6", - "bundled": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.3", - "bundled": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "bundled": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "bundled": true, - "optional": true - }, - "minipass": { - "version": "2.9.0", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.3.3", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.9.0" - } - }, - "mkdirp": { - "version": "0.5.3", - "bundled": true, - "optional": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "ms": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "needle": { - "version": "2.3.3", - "bundled": true, - "optional": true, - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.14.0", - "bundled": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4.4.2" - } - }, - "nopt": { - "version": "4.0.3", - "bundled": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "npm-packlist": { - "version": "1.4.8", - "bundled": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1", - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "bundled": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.7.1", - "bundled": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "optional": true - }, - "semver": { - "version": "5.7.1", - "bundled": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "4.4.13", - "bundled": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "yallist": { - "version": "3.1.1", - "bundled": true, - "optional": true - } - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "requires": { - "minimalistic-assert": "^1.0.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - }, - "webpack": { - "version": "4.42.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.42.0.tgz", - "integrity": "sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-module-context": "1.8.5", - "@webassemblyjs/wasm-edit": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5", - "acorn": "^6.2.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.1.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.1", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.6.0", - "webpack-sources": "^1.4.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", - "requires": { - "figgy-pudding": "^3.5.1" - } - }, - "terser-webpack-plugin": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz", - "integrity": "sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==", - "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^2.1.2", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - } - } - } - }, - "webpack-dev-middleware": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", - "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", - "requires": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" - } - }, - "webpack-dev-server": { - "version": "3.10.3", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.10.3.tgz", - "integrity": "sha512-e4nWev8YzEVNdOMcNzNeCN947sWJNd43E5XvsJzbAL08kGc2frm1tQ32hTJslRS+H65LCb/AaUCYU7fjHCpDeQ==", - "requires": { - "ansi-html": "0.0.7", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.2.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.6", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.25", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.7", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "0.3.19", - "sockjs-client": "1.4.0", - "spdy": "^4.0.1", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "12.0.5" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "fsevents": { - "version": "1.2.12", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz", - "integrity": "sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1", - "node-pre-gyp": "*" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.4", - "bundled": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "debug": { - "version": "3.2.6", - "bundled": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.7", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.6.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.6", - "bundled": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.3", - "bundled": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "bundled": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "bundled": true, - "optional": true - }, - "minipass": { - "version": "2.9.0", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.3.3", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.9.0" - } - }, - "mkdirp": { - "version": "0.5.3", - "bundled": true, - "optional": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "ms": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "needle": { - "version": "2.3.3", - "bundled": true, - "optional": true, - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.14.0", - "bundled": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4.4.2" - } - }, - "nopt": { - "version": "4.0.3", - "bundled": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "npm-packlist": { - "version": "1.4.8", - "bundled": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1", - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "bundled": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.7.1", - "bundled": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "optional": true - }, - "semver": { - "version": "5.7.1", - "bundled": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "4.4.13", - "bundled": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "yallist": { - "version": "3.1.1", - "bundled": true, - "optional": true - } - } - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - } - } - }, - "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", - "requires": { - "async-limiter": "~1.0.0" - } - }, - "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" - } - }, - "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } - }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - } - }, - "webpack-manifest-plugin": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", - "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", - "requires": { - "fs-extra": "^7.0.0", - "lodash": ">=3.5 <5", - "object.entries": "^1.1.0", - "tapable": "^1.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - } - } - }, - "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "websocket-driver": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz", - "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==", - "requires": { - "http-parser-js": ">=0.4.0 <0.4.11", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - } - }, - "websocket-extensions": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz", - "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==" - }, - "whatwg-encoding": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "requires": { - "iconv-lite": "0.4.24" - } - }, - "whatwg-fetch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz", - "integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==" - }, - "whatwg-mimetype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" - }, - "whatwg-url": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", - "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" - }, - "workbox-background-sync": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-4.3.1.tgz", - "integrity": "sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-broadcast-update": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-4.3.1.tgz", - "integrity": "sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-build": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-4.3.1.tgz", - "integrity": "sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==", - "requires": { - "@babel/runtime": "^7.3.4", - "@hapi/joi": "^15.0.0", - "common-tags": "^1.8.0", - "fs-extra": "^4.0.2", - "glob": "^7.1.3", - "lodash.template": "^4.4.0", - "pretty-bytes": "^5.1.0", - "stringify-object": "^3.3.0", - "strip-comments": "^1.0.2", - "workbox-background-sync": "^4.3.1", - "workbox-broadcast-update": "^4.3.1", - "workbox-cacheable-response": "^4.3.1", - "workbox-core": "^4.3.1", - "workbox-expiration": "^4.3.1", - "workbox-google-analytics": "^4.3.1", - "workbox-navigation-preload": "^4.3.1", - "workbox-precaching": "^4.3.1", - "workbox-range-requests": "^4.3.1", - "workbox-routing": "^4.3.1", - "workbox-strategies": "^4.3.1", - "workbox-streams": "^4.3.1", - "workbox-sw": "^4.3.1", - "workbox-window": "^4.3.1" - }, - "dependencies": { - "fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - } - } - }, - "workbox-cacheable-response": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-4.3.1.tgz", - "integrity": "sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-core": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-4.3.1.tgz", - "integrity": "sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==" - }, - "workbox-expiration": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-4.3.1.tgz", - "integrity": "sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-google-analytics": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-4.3.1.tgz", - "integrity": "sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==", - "requires": { - "workbox-background-sync": "^4.3.1", - "workbox-core": "^4.3.1", - "workbox-routing": "^4.3.1", - "workbox-strategies": "^4.3.1" - } - }, - "workbox-navigation-preload": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-4.3.1.tgz", - "integrity": "sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-precaching": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-4.3.1.tgz", - "integrity": "sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-range-requests": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-4.3.1.tgz", - "integrity": "sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-routing": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-4.3.1.tgz", - "integrity": "sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-strategies": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-4.3.1.tgz", - "integrity": "sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-streams": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-4.3.1.tgz", - "integrity": "sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-sw": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-4.3.1.tgz", - "integrity": "sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w==" - }, - "workbox-webpack-plugin": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-4.3.1.tgz", - "integrity": "sha512-gJ9jd8Mb8wHLbRz9ZvGN57IAmknOipD3W4XNE/Lk/4lqs5Htw4WOQgakQy/o/4CoXQlMCYldaqUg+EJ35l9MEQ==", - "requires": { - "@babel/runtime": "^7.0.0", - "json-stable-stringify": "^1.0.1", - "workbox-build": "^4.3.1" - } - }, - "workbox-window": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-4.3.1.tgz", - "integrity": "sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "requires": { - "errno": "~0.1.7" - } - }, - "worker-rpc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", - "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", - "requires": { - "microevent.ts": "~0.1.1" - } - }, - "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", - "requires": { - "mkdirp": "^0.5.1" - } - }, - "write-file-atomic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", - "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "ws": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", - "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", - "requires": { - "async-limiter": "~1.0.0" - } - }, - "xml-name-validator": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" - }, - "xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - }, - "xregexp": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.3.0.tgz", - "integrity": "sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g==", - "requires": { - "@babel/runtime-corejs3": "^7.8.3" - } - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, - "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "yaml": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.9.2.tgz", - "integrity": "sha512-HPT7cGGI0DuRcsO51qC1j9O16Dh1mZ2bnXwsi0jrSpsLz0WxOLSLXfkABVl6bZO629py3CU+OMJtpNHDLB97kg==", - "requires": { - "@babel/runtime": "^7.9.2" - } - }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } - } - }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } -} diff --git a/web/package.json b/web/package.json deleted file mode 100644 index 4716f13..0000000 --- a/web/package.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "front-page", - "version": "0.1.0", - "private": true, - "dependencies": { - "@testing-library/jest-dom": "^4.2.4", - "@testing-library/react": "^9.5.0", - "@testing-library/user-event": "^7.2.1", - "react": "^16.13.1", - "react-dom": "^16.13.1", - "react-scripts": "3.4.1" - }, - "scripts": { - "start": "react-scripts start", - "build": "react-scripts build", - "test": "react-scripts test", - "eject": "react-scripts eject" - }, - "eslintConfig": { - "extends": "react-app" - }, - "browserslist": { - "production": [ - ">0.2%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - } -} diff --git a/web/public/favicon.ico b/web/public/favicon.ico deleted file mode 100644 index bcd5dfd67cd0361b78123e95c2dd96031f27f743..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3150 zcmZQzU}Run5D;JhgUO5x3~mez3=$GxE`uf$1H(;51_lKM2!9_F0|OHa1A~JDgx|-? zz;J+#fuS?N&z+Y`ii?4Pf!EW+C5VB60c4^82Qvc$gN81DFara_gaDrq*QA@j;mABL zGjz)Z&&ex{0;Alz=DD=aaIEgOFKe?aYBY;Zi#_``^1!{2ji<e5t~ZNHF%F5-vUZ3) z{mOsI9>0Y<edcblEvU0fE4EB2F!T>M@Cwo}HcPzzBjM_|@SRsZ`WCq~O|eMG(RFas zv3F5XQ&&<_iaGJzYwBv3=BdsN6K%39t+OgLj7%rp+x(k>fq}Us$S?SrmuFDFSvdm( z!+K8_#}J9jq37L&4jG6r2Q=S#`z7wB=Zo+AWj#MI{d;u&MXrfbbkqFVk0&ji&RnSz z&J>{HdS++1%FgD=OqWCgPBC8JFul9=S$x9U1%Dr22)?*Uvh4V~G!|}WHJ>Z8<ww*G ztmay#xniC}&_ttW23!BX`+KY5xT<5pGT&9-tLK{Cvy6y-rzEvj*85|@)}TZAyLo~v z1K1uKv|LbUms}e6?EL#(2b2O2GlaQEBz(57|IFxgl>2sfuD&EFQaoM#T-G@yG+~Jn zP^3zLqvZO^v!@ss80Mo#2|R9+ZvIwMQgUvZVv|#49+znx9HZ;xu5IfSw(XMl^tEQu zsah5`ap&Ge?7QvJx5%NY%POtdA|YE<M=xmgQLm}13_JrhO)b@pOjXo1V^6>GnZ41y zd%ja`pF=q)c1<Ia60d%bIq^Jr<LST^huk{nSS07`yZgqReBr-juiyM_K65sEPFkLD z`AgK{hgY9Zm0@6DU<bv}+lg%NCUkbJ`LSDxfq~Ho6iXWCb0=NTJ8Zz?I``tFS@){X zzq$GE|Mt*L%?=KS+2b196^<mX4Hx^f`D|8h?(^yLt==z0er~Rd_O4U!UViO^(r(KS zUGj$Zp-JDBPoF!Oqqy0AH-oj-krnrXa~P&)^{=o^W$QS9D%3Ad({lx5k)vB@&qA5b zf_n#+3$1LQnVbG1aLSeVhTzZJPE>Gj<K?f@k=s*dvSaZiKH&}lWe<apl@;L!q)SYB z7^XTl>^k>A^TP7#25F%O9WosE7}jO3XE>snDY279z*Qio<MsrTxVo!cjfsIxn>KL- zc6__bzEa|N$*iC!YhLxTRf``umfpwCU?!o^={RxImZ<^PS*pU=k1U=yoAc8y&X_ZN zru^SZGZ;K<@_(`3Fn(!h5PqX4W&4|&9s3?d|Hz1cRbwW9{yG2FKXRc)Ozo!$Bot6? zR{$pzmnB`t7#JAVp(hju1_pRqQBqP;)zMQ{Q}<uA%V*9eL*Gz+cRw8mH}~F!kq7Pu zu09gD;-L5RwHn4|acAFpO<C#MKFg_of<sleMN+P5WQtKhBq*kjJ`Ue?J#_1ZkWFV? zTBbQSPPWdju*xVk4vx`t@m4o5a_gFBn^$8JmSEr&q-|xdX>J{V;bY9n7hyZD1g$$^ zU)th1ahd1Dr3qKR+n2W56*qCr&0YpeH)}tty=VBWk)F@Y!oa||1C(woPPb0x%wKFE z(sFmpZOPfQ9Xy=gH9MR$%iO*D|Ns8Ayo{N;rm~#b4)-^|d1(9blCb{|H~&T7m8#BH zEO<UoU~T!K?Cj~z%eOAN{eSY5$M=t&wG;W->9+qC?>e11%v0Bui2OgoDxPtLsrAz7 z-+i8kPC7(y-P&-eInZg>){p*T0&k)eR-V1GongI6_OXnEYxHJB9f)8mZWq74_rgr( zq7+8ws-Q{fn&+2Hk^BCiG0}_d;l$HcYI27gd=B$PES>X3Kf7Q}{x80s&a;;DHbj{^ z_|z}l9~R6hbAmab@)-yB{95KCSxjpgzrLOqRsCh<y#=O;YZ`Ug&z_xH$Fo2<FxbR3 znxpsmg{t5^i5U%wdEaG=zL_$#$Fbxrna{);$?)>z9K}yBOtyEZe!g1Cl2;N@d{*f7 zX|3gN$}M?RBh`*SlXtgKQ`Nj4Hff)y(TY_ER9+S*yY8Jf!&UFHj`vG9;}aWM-!N^i zGn}=#Z^xG32lJ)Wl=r`56)X5O`&yp$sm+aRjsDItKJ(6YX7qun?N3+em5bQt)$iQI z(4w-vIZy9fMq{4A-M~A(*KWC*TQKpf9(n!vVeQ|-KmQruJ~UXA{`>j`0;v~NH#vY) z@7(Q;Zx|RDo`6y>a*Bl~U91cxB_$0L3l(+E=%Y`JL*n#YyaSf*^PaKJz$Zl4(LLtG z^N2k+y{4^k?^~p*r2|Uyvp2f5PPfUew$3cKNX%8!)mK(kOStkiWYd}8^(XxnY_~0J zFptmHwsF+5w2M3U7L+^eUDORtl$BLtPrve<yh795I`P_%s6!8Y=Wg+wxYVJ%E$;mL zi2ZlMwq0~?oa|WD9k}X<Ti0B(nDqFIpTc%twM@=8jZ8KUj0#$F%y-^ar`kTFfQW$Q z2iE<3zZz5pgUU*VpV#}f*``kUvUm3k&c&LSE;BH&_<&M=#NnmW%ad;z2psjibobZu zg9eA+2!2z`Ve(v%`|0m~|Gfu{0xq|G=f9+A``YilU(ks|?YnPFzqBtbuKuq0<iX?g zmvevoJ3Q~dZ<YDJIulMi&+rGEU;aO9%3?0>RK7f{^kYF@!J~gYKlMtgbE>*EryRQ6 zdcSIZwuAn+GMis!C2tPu$6T3jo9uen_1BH|3lkOjo?N?ZrWRJ6%qx7WXi{_B>x@H& z2SwDby+3ay;1_Y$mHou+*PaJIF*!E(-R?435HfWM&xLh6j;TFNXkwr7?)GAv37$-* zCySR|;aB;=>A8OTp_cPTja~|l$K;>4G9A0K-+iJ(lZFk~T}RF-D-t{o{}6I?nZbW| z(fL-bCCr>k69k!?tk~c2FI#exQzhcSuLYW{J}>(YTDaJ8cRDmxoV>l+VClxUVJC0@ zkvV!(RWZ{nFg1o<dHdbB+bmgMJ^sBTwVqdG(q~S~Nq1jxsRw-VHPbcbRr9#=F+is5 zkebzDB{?oeLk<738xywXu!pVPwEE>Wt}koUk{_Ff+IfH2B9o*%N5lKC(k>N;<u|6g zao+uV;QdX_gGU~{fA-$|M43*d80Wl&iT_G8Lq5fJE0ww!+-8`2<;*m%OQ#mi$$f8c z_wBoBYVOiYH)LkNVz@ocLm=PbqGImU6W(lXPtz^aXMCG;RYufsiTD(Cb>Hp_A+}9{ z!drGcNpSwms<W-=2Cvsm&nLeo9EvND;yKOUB(taECBvqxryeW47g0VEQfqj&no0E5 zq;^Gt(pRtLuDv?u5G*0ad{y<tkM09Uo~|x(xHWg;7xDEgyahyyt~{)^b^nlc_Cvw@ z53O^&c75(Vwo*%reTARlB1N9t2M^nIu&(GlV_|gXd8_d6KKl;S74l_?YP0w5wfcNw zR`B#F-yD;)zU1h9>G@n2ax0x?l{=Qn=tzsWsqWggg3I=W=$pn^5r2=13oY#xy&`)V zH=a4c7wZ-Ej{jJD)>X^P_0C~ZH?*aD-yVDwXq3vkV5ip;%~`fLyCyJ*w)q*UhD}R8 z^~q%J)me?5a&vdwH0<bPG35E&T^N4b>+QoF$IkTI5gIRB8}oF3HkiI>7T^1P$+4in z)t;+!K3vE=zU6ILcdK;8g{JeY#u0a)d<lKV^W?6H*5us*Q*Up3@85aCfqAK1_V(mb z)-8@Hd8zB&jAuMp>2c3m$xG5&T_iuOcb=4of%rRvtn+@GSPjG%N!Hk}IN+e8ySL7} zan+2KSG|{i*1yl|D(7_Vd%aP|gCBq5wF6FZwYf{gL>-KH@r^e?=u-Wf1x&(;JCxt8 zc+WQZ-}B#%Qzxge9|*Z1*_ojDvVD{3^@goK13xa3bdzHhUK68!HIx6z_Qk8;>2EG{ zJXQOk+%)y%bf^2}H_xg0mOX1^=?jtBa{2kX-<p~;4n!^E6ET1JnB86Y!s1Ju2WP5Z zR*KD>Tm9)zjh$(o;e4C$hh`<^vIp;8J-<&|e%}0bb-&{N|ET-^`G5ECKmVDxXb2sb L+C9Anxikg<#jTHE diff --git a/web/public/index.html b/web/public/index.html deleted file mode 100644 index aa069f2..0000000 --- a/web/public/index.html +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8" /> - <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <meta name="theme-color" content="#000000" /> - <meta - name="description" - content="Web site created using create-react-app" - /> - <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> - <!-- - manifest.json provides metadata used when your web app is installed on a - user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ - --> - <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> - <!-- - Notice the use of %PUBLIC_URL% in the tags above. - It will be replaced with the URL of the `public` folder during the build. - Only files inside the `public` folder can be referenced from the HTML. - - Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will - work correctly both with client-side routing and a non-root public URL. - Learn how to configure a non-root public URL by running `npm run build`. - --> - <title>React App</title> - </head> - <body> - <noscript>You need to enable JavaScript to run this app.</noscript> - <div id="root"></div> - <!-- - This HTML file is a template. - If you open it directly in the browser, you will see an empty page. - - You can add webfonts, meta tags, or analytics to this file. - The build step will place the bundled scripts into the <body> tag. - - To begin the development, run `npm start` or `yarn start`. - To create a production bundle, use `npm run build` or `yarn build`. - --> - </body> -</html> diff --git a/web/public/logo192.png b/web/public/logo192.png deleted file mode 100644 index fc44b0a3796c0e0a64c3d858ca038bd4570465d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5347 zcmeAS@N?(olHy`uVBq!ia0y~yU^oE69Lx+145>_WOc@v$+5>z-Tp1V`Qf~cDy!9vX z_8%De8_Y%$gv;LglL%7$8%+L5fUs|aRf43zCfxcB69;oa#=;H!od{A4(w_F>f8w2g z$@l-KKK`Ha`oG83V^bIy7}QIG{DK)cek*_D*LiT`b^PRpH6Q1=9=PBmBc5j;@pQ9E zVEWF=l2cYoj<)yo^eUcZU=V)d>EaktaqCU=%c9u^0(wl+IeOC8b{|BKXI?n?+df`b z=cDG-jVDC5|DAZ&N1buW)qAV&zU|Nd(T0SyDs=z6bhCdVw|)M8cC~f(PH!XY?L-@n z-uCsEFPtMIw(t3YHx_@2wsl>8Y<Skcd%F5$hCQ!s*1X`Y5O_NK>GX^PcK4z`%`05x z;B)DyuqMN;yA!YPQ8HgKW5r9AyFCrN^uHhXJd%A%Yti;cA!o|ZFJkEM?+IJNB;aJR z^r3(JzIXM1B0X2^&|Al&Aey@VydaaobJJiCM&9pDH9U9LJ=VX+nrdNNmQ?yD#&p*e zsnxx^PSu(h{XCeXmvMEgzbwB$LxH-5edYsW&V&B#x+kVTo-+IRbu$JoKIdSDC&qlG zqL&IilFd99+}70CA-_#%Q6K-?>;+eS!g|@4F`Q6dxbcdP&H3jSTdvP9nORWPB6s)l zycHW2H!Kv34187@C2;DBv(@oQiJTQnU1TR8-952pOU!;b=9j()0;SfNu$r+a>Gk+q zJ`LOxaqr$Q`JUC~CB{oQ8tO#u83@cf+avz()tRMC4*h-JG6z!rM~6r+DVp^(`#i^~ z%?@w<&qtW4FtU41nY3;;4^QU>9n)s!g*V;yZB*_s=!?&vymY2#Wm{+G&EPc;=4!Fc zwadLfVUxF|D$AMNy_QeHuk~yQ^P0S*G~&lI=j0s^t`;y!Xg^W<^zP`guX8?4Yg%RZ z`;(?!1@}rtB{Ah<<IX$xQVytp`g(z7j!E^D`P)2Z<Sl&Ek`}=H{#PF-lk&{>PY%Dc zaGsZR>~kA~($2?szfW8o<G?ZJ^cJ_hKNkedKjvGS^H8|#x0-wx!<)ZG54Z2V%$`># zcr8GA*6H+1KBs31Y>;nUG}(L60dr@;4bM(_`k!5^tGn;O;z_?=cna5RI!sMa|2fm! zKaxRM>PDwgk^Ked+ss_f8taZ(+>_!zWd3vFY~LC)3&xMVy_eW4`}c}U$X!^w|Fp{m ztx&6=?zvsNr0#U}o4;M+e*9ecFTLCl<&sI9f33wkqc@*#ve8`GC&IXH?$g)d=WYiZ z|DDb8&HheyaI2c^n+F|+M>L}=7B49M9Z>H+ttY`I#fpW0?#F+M$Fg<BpWE;M615|! z&ZK1}?^KTs`a9U4S~Hfu{2FZ@`mo4aYDUA{b0V>={3`h}&z~3G=l<_>$0vQ0%#4Pu zD+Ji8*52S2IB+fE>7K28QYSYU9zFI~Eac1thYR5a*~>ok{O4udFtcIy^;*N1JKw$C zukhg27PV#axpz*5uKdr=)S+_VZL^ct0>`sfQU}-bEOt69Z8)jZnD@)quq~ArWA?qu zJYw^?y=<}1#%F7fA6wbSxWrHIhwc9^=~_vv34$y}=~fNK$BnpoN=*DVlr=b*)o3-& zZnpdH`fBo;v<F6C@`E^4ig#Qp&n~R~ZF_H;+pa~&Z_LgvZA!@t2q+C);rN_$ny}xO zTA!kgl`0*4?D~CAcPcG7a@g^7)C%zuYlYey0kUF&y(bU7ef)K4V_JmA?>i^<Y-4t^ zka>4?`-i%}+;>jcv8ghwYklB%C-y*I!~3u08+;`K%Nc)KmM6(D^6gr@V!`>JUFQRY zcQ7UIW|#hPD_WmTJ>h)g{@L|S2O1x_ud}$eHuu2Ma@I!=cbn{()Va>#fu{A#4^44b zgxYV#>09!LM&0=&U3I&^D(-Ny1jGEEy-V$<ZMc21{_oRE(d<00mM*ig+5KyYclY7L zkqaI$uFnkEn6cg<N61$#(xD?{XV(OU6Kaz+vg5<KWn`-tm~}C|nV_`e!ZlvT_iF>q zY>%c2N`)KfSv==CuwLQAtkA^5Gm~Fd{gjqnd_ho;J>z3x<<h{vs`cBt`oqs%iavdn z;p&g0_g^t;Ov#QAlYM;k%=ePj>ERpGzp@MTyjYa^_U&YoQ!Hy&27H#f8t$N*c$O`4 zirVkCE?%t@hlMws5h=I(;~dAbC~?>C2YF6QEV2Y$rca%(t=WG5#mCClfHx~wq*X6I zU(ZssQ;cnGN%Jz9eU8PfvObd4N6MKt%(oKL%A4@3bi+eki;kyT9+XF((7J6UEzqPb zaLhT6^8njFyRV|J8fWacnIid=@7Ucf+bi_-Kc2swxa+2V+UA>8wSUt$-uK~O?>T4r z=i-jsh~=D|v!=E`l@Dro_W0kV#92oeDogxc&sy9XQg!Z-vuAHxh40T;BaX!;-sZ~c zym`<1>)V<>-4DoEEv#bmtljy5mdT3zo6*c3&!hq_%_&fANU%EFpZNH^L#rjX(zcH` z9GkM&6~u>y@Ut?`$ap4t`Es3(`T5NIhQcCpA=};E4j<LjHM+<mQax#{Ri4d-521H0 zMVMA4ADH_7<e~2+i+ryJrx>g=o20g5@0TClOYYn|91<wC)*$TT(#P|ie*JD(G;f;3 z%KlmMGxsa7zq@Vh{?TQ5=xJT`6V44G7jl~}cHKK(&ugD;H?eH#)a&NYa_zRbEqHY~ zzVph}?U^0>Gyl7orbQfna>bu3BfNde|GKJ4aU##NDwB`8vWF_DFZk9ldwSiE;QLmO zO%_y5;(hGO&T-H-`i~#0p{aX-QT$JPx0$l9`ll?&ySw|GxIt22t(cbJu31OEtazUE zu;{$8YvX1P@#2q_n)-hGYL@z+-n3L~?-}{R;NMw!eMcledz9X@`51qGPoV0JrW5fo zDkrZ0-mtDGb<ep^Tg`4>%{O*F)wKJx?yH5pO9Nh4tdMnD^!?uJ(APCV+|4bk=H<*O zUKy98vH!~44@=rEhxSTYv8-8@m7Cudzl+OY$-kBN=CMATXmadnw#(7wjt6CCm-=QU zyy^;w^0Ad+C@zk9CGd`;+^J#Og^VSB$)b+gOw-xY8?3h{-P$5B<$*`(mg*3RXqGD~ z+ix)Jv@LH77U;VsS@664kL{hj!{2LeMNAOoF?e|Wl+Zbe-#J{tnl7ol?2m7YK0lTc zZL#%&Q~R@w+Yf~D-kEAQt5xTHdcB~9edDU$8eL6|H(dhDJ{~etOlY}yZsy9CuwyCF zMds`?w{H*IQ5<2wVS7qt39Fkcr{uvtQ{!10Y_VI4H?gd8)cUoMFRh=)soKkDTVzde z+~?yyAy;cR%HQJ5Pf!)Gy_I<C{fgIecUHMJ#cSC*y}ea-_Sg&E2{#ozjAOkI&%5@| zAlSj+>GQu8J}!wqJ$+V_n|YiZF6^|v)o}0-dnCi%wf35Z4n@JMl^P~qOOA^4*gGSz zN#mO1!J@cuDFuy!X~MaC`Q5w)sxohJFl2G-uGal_|1EFDh1s8DEZYCtIB#N^sw}a* z?kK-Sy*sDu_R7^FeAiQ$fBp@&zg+#|&#n)0&u8>3{8zi()XSpU;3nHP#tY}1*1TTO za4@QbscS>?&QI-64|WO1RvFsMZv7teETeaZjGM~V;#%nmFCHYfUca|`HdCuCBQs-I z(~CmQ%5bZc(zg>Xl{Bh0O%_|eT8W*F^UL3f*{+{f7OxO`#Wu$`ET#8!3De;dQoo*i z2rI}Rk6Em>pz4K>q~KN7Tj{qASv7k(=SK0}WZuiYXPa9z=i0X$R4*>q>EA8C&a7c) zcf+T9|0^3}ze#0mtOySZ=f838#e(8#lixBu*x<sDTf#6&<A(4vg-3OhD`&7Da+Pq_ z<>xqHv-E9;K<izp1ivi}xg1m8ZPZHRW;pbct->psWyAY_hd1i8G1hWhpLpT$NnU_q z`L*@yTXNW@`>%hm(fc;*fw|A6J6cyRGW73nlGCj(Nk6*&+qn|!T#1fDt}~9l@xCE6 zX~VHeZ@$;>yB6_5vSnhX%k<(I^0`7AbR%b7d~t5>#dC#gm#*ZQm3uw+;mU6eQ=Xp` z^oe_X&x3LCdK)8;ZG4-`W?oE8Y|<1FU9R6OoTe69BW~5PHvQ#+tHmV^wv77C+XKa> zw=}kEYG<}HB=W956P4O^wCsl@!?m#QKOUcrEcUSQjcl!G+uP}Tuq?JtcCqQ37juO@ zH11TK{>91bdAs$U@w;h}`XUtpJO^sueL4N8gf(pX%Gptz?;Zv{%)Y$t1fSr=4TgNX z>yN(8KT*86JGDjfq|UCDhi>sm<>{XGx%t<}dGk`2#d%Ag9XYgZr^ft+(oBr^y_RL_ zn5=&*^Oa}OYM~F;X5`IGTVu*_ocF<;CmM0A8^k!X;}eQp_igcrV*k=Oy-|*T@`I}1 zioHzzY2T&P4`{W%y?;FFPQ$hZbKHw!1C}yx4L-O;=+*1lvu^3_6xt<razoO3NjKxH zg~B&hz4s9CiCbU$`0<xVEj@PHB?k|E<>lJ9>5jo9!HX#iYTs4l{YqIa5v5`s;BheE zlh(O*yLR7xy^kqjJe!{_F_X`D&2)fsGna+B*90C%ZBB7%=Qk|n^=I4`OyybXJKKjv z%)gxT^YgcCc9LSD{klKu_j?@ts@$0B$jhLy=!NnJt9!31O()NoHZdgq`+~XOgl%SK z=}Tyr8L{LzT=_KdS>^tl!G&w8&gy<`pD<A+pwjq2U~Y4%xZ-@Cy&bOmZh7y|vpdjx z;ErVPhHsCLw6DtFd{a7fjh<jg%!8UAZx{6iSx?ZCUoi8Yi=FR;o_AgEbpAGc?c0*^ z%<x5v?BmDow-pz*vHba0!gulU*{~<G<s%h09r~qS;>dqL`0_F7bheGm&OZfih_K2j zzUz;?y1`kpdyDCnpr?)NXDB>fYw_2WRZ3I*ujFb8Znf9)>pskFt#c`2*tKC5&&g$b zPn=LY^P+8WmxO6U(`N0>5w*6VHfaHMiH8IA&Nn<+bz0z^(%h4CCr+}ms_svU*NkOZ zz3b{SZV@J--7jM_#A=kRUDmu`C&DUqO8#rfuD(e>{`@q0_egfi%R|q;USa*ARe3sg z;|uS1vRn7E?GL)cb|-HB4lR@V7b#UYy6+!%Y!+awDY%mL<;S`rnZtY7l9z0{d1CSg zW$Wxu)1_P2dOYY>(5iUL6X%zoH+72Ynhm{<&1XgRo6qO@f8=4a3tZp4JF<9<lHwLw zmASqTcm3ZtGo)gn>Osdxola>MS5m&+i*J9q=OL%S)T+Pcv;IdP*+185;f}8d4+riI z+-|&HPx)vY*S@8DRZ`|(xSv{j@8-JdSBv7LeB^DT{@VSWdiBF<$>sZ=hTf}GS{lW| zb>+CK%BmF!3zzsjI52;^U2NS9>-%fYS>9{gc!f12f2nBUiMsS#QvCN`UG-cWX6d=s zY~?lc=G5$~FWGCNS2J1dn6!-PY5DE*23My2ZPi+I-n~PyqI<!0Zs}gP&(r_>(tq=n zX`#<8ws^fo?^kcQZ6uS>|EJVIK>YVVfpwv6+w&~mc**X1wL_%gwEOGazR+#|GIpG^ zb2)g_uFvm|&(*uz1!iTH&VDq(MtR?D?pyPY9L%u3FL%@9D*LkwDlhvM-TU<`L#Aq? z=As{Sr%C_XH)YYsUG^!Az5UiU?<0LG4m>zL_1C7$vaQSBE$w>uvgMSCmDt0)+mhF{ zmlsK$VtQD+Y_kxL>*1{Y)1m*9uW*$3{O*(Lp7VUw5v`1#xZ9Tt_qNSdxbx7Go5O+i z$E0+rm7({oW<7QA^cMNJe@F28YwPYU%XVE;%Q<nSZvCzd2YXA^=05Yxdp@sge|g`# zAHDWzh1ux<mAr$k*W4OsY!_z~JoI!+HRCpC{m+-qwVUZ0dv55qUG0DH?Qw^g@5YVZ zCl{Wa^UfymsH@u~-Tzbnop@0u{3?Ud?2KSHOK#$vzZ@=$AKlD!ubN^snSqb><SRYB z-v66;3RcU6@+$BP<r*Kg4cQmP)-++^gRKPy@2}OSZ`fVqxR5JTu4$8X-zhoY_hDP2 zwIc64F$oUf_|4T5JB$5cXxkL664pij78T}yWe>3P+;BXx+3i&DT37YW!ha?PWV~v2 z$@3DnnE4?pg6VTWn~3WimaLSteI8aCuZ{BLLgO>ynB<nJ1R2T7zm8pWb$h6W@XM`9 zTB*$p#&?&U*s;_~>tND`V3%qCyhAoh7nn1@n{Oq!-~4HSzUz{c<?J6e-RX08yW}<{ zZrZL7Pv^gIaJyvpjUnip{l!Md%)BLC6Am+durF13>sZI#S^RT*NkY&iu0-$Wf{Q%o z{IU*PVPiRM$*vzcT&3P$8Gh}PvB^@6o2s1ge(A0S(bv3!F8^JBM8L^Ysk~ZP(COy0 zqB$X_O8+I6OSM{FjCY*hyu*FL>6d=h`kP$8t}gAYl$m#HeTj=;fv;HlN~@qc>kUO$ z<(+G%w*CIP(^6aR{gKtzHa0lF3A~`UwNNDb&HSd#PDd|yfBNgow_d|x!q)%7Gb0l7 zW+<MUwQ#4^tmV?PrvG8&5`11Nx<~EAig_%vcFsLo{Cdqyhql?;?hyso0vnex)>R5! z;V#)VA!0`QHq+q$@@f(*uc>5<6)J80Zfh$hm2%c^ci)nRSuKa+WF9YiI^jm?L7rQ7 zdQQpF7MEwF25U*Jv^KeD=b@ez{OC~A);-r}Dt~NH+%RkZ&yL42+|FWaA1&_r!Ntt* z_v-eBJFDWpPU17So=`l)?(p>Ae3KvT(0w4@pEP;1+7Wf0t-6bHHzxg>BhOL!)k2?3 zcb<&E)9Y+EO=ebXwE0(R^iDcU`iRrHS%vZ|w#oaPS?;}9m9PHv>4{}d#}|Lway4pe z`$C(=BAhF~P5s@sg}eOrw|}c|_iU~Bv9PAu;(Lmu_e_u4gM4@P-i^szFRwL2<>X4X zo=r{C_hN%Oc%3Xx8BDdkHc?vBxw&eJ!$o%mt@^t<Ek|u`iOR2$^qBnUW$c0%pI>Y~ zDZFKMYWcgP?z6deZeZ{@Z~G!>ros6WF>hAiw}_eMxg(kNqmD@3&J(!-MuLaMUT0-G zJ)HNrmS5<l%7*X>>|YWtWy+k|`>JRCMd`XpnuYR{bGOB_e{6g__1|jgo=3?nT8}IK z8)oT9osHdYT=%p0)Pk5G+4^txWv{;$?4A{P;l)I!uWLMc%Woc*d|bcmtA??C?QcJk uP5*)qO`iX0%5s~hn*Noig8yaz<UIY~=#<KG$p!`n1_n=8KbLh*2~7Zde^Yq? diff --git a/web/public/logo512.png b/web/public/logo512.png deleted file mode 100644 index a4e47a6545bc15971f8f63fba70e4013df88a664..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9664 zcmeAS@N?(olHy`uVBq!ia0y~yU}6Aa4rT@hhQrHLPB1VqR0Q~hxH2#>B;NWBL2>v0 zC*B6J6K?-Wy8Ry{c>51X<o2%w2;<i8<Xis}Z~X#GfyrC{5^w#Ezx_Yy_K(Edf576u zVG4dH-u{(v^Jn6%KOhmX$sjdgWt%N$9AjW$P%jDc3ugHC;xOmsRkOvm`1EOqRzBcO zwK9Gu+bF1X`}FQb?GE{B@mVe<QBxv)|CTZ^s9f-LaSW-r_2ytB0|Ns?!-Bsn#aDtn z2jW5TjM(Z}KLNHy40{wcSd_$BS2ZZ)e%<q5dfVKO{?<|XoR3oWyPudh)AwA9;W3Hi z9uV=yD8By9?<HN$hs}P<>@wY}P%rv*<0|twMv<3ps}v&Fbi___o$B>5T<fvp<<%di z*IFOebUHTC|IM6OrNWYDUyNq$N>%!(zwq0f#^6o+j-_sjx|GuTbI$=$mkr9_q9wUw zPIB92G#%P=@avV=Ia>@{j(^;r!}e$4!QN-88yA0PGWTBn(uVKL!UJzz{NJ=s+tD9& zfhDD~*ZOLW=#OdKch0VMs#;eN{h%(%f8FP38yA*Y^W52)`a4hNE<AEL#Qpq5O&dSU zSgtkZ1`GQ#YP>m>pL{v3n|(^8?Zigq1<x5Q7=vg2H@|tYVoQ_brHi^B%$ftwb{z}c zW{~aYmz59|J*hTQHR0AYnUaReMW;?|y3@=mXqnEay=P9&tF#S^X85hQowT(<^=nrS zXY`Gr$;m2jGVh=0I@oN>Y57#vtde==a@8Cmzghte);C#YDbx11rhe+)Ykk{EnC%dQ zO(MV2f(D(a>8t+U|Ib@pb#b0vCyPp>(0=w0PVO^QjD<IOG{pJc-g)riSJ|FJL9;IH zJIXOrdfD!DnfH2`FQ&cN*l{@5_*+Hi$MwHw)t#E0drFq)nyQIte)Gaj4>o>(!S8wN z;nXwpcpb&{e;itL^O>a8V>za0|Nr&GOPy3N+>_wj8o*<j?j7WMi?^0z#{b`&gWpWN zW7#|<`LyzaW|96EOJ5%}-?PK3hUY^3=XmxBRTD%XeSekQmCy6)PS?Fp2?5iV3TkpF zKAs@j_x_suQ)~HCr*wP83pK2dy`SH7=L8dH%D#!4Y8g_O&vEOLT_F`R>xAON$*hMm z%beCJHZLk$Z}~fUc30a9V-KAj?{l>*n`Z>Se63b}p}?2j^o_R*v*-kl%&%n=D*7}} zr3W0&meSB$sMeFQgZIddU$2?(dTu|oS|Dpv(hL11&#qjM*vY(6c5MuEXUnmjYypS% zWo3jvIC<r(fqT?W_9K43R+luz{1ld5k&!HQzCFU_^)n|O!+_<_<3pQ6Tz@Vozw@Ss zJ*0|j@n_zUDIZJjb|t#JKdEpe^J>|yYx_H`FWz*x;^<g??W<ABYdgV50-t(A->}N< z4M_?3aCGr@*RZgT=~Dd%UkPyiX^X2c`cf=Bi)s6Y#G3WyUwe(e6rWSsYG`>gHTz+u z!z#;<C!N0}n+tum__Z^9mRII|rwQM6YI$r~%qD#~U$8baAztW!LdeCESC>zO7@Yia zWyZ<7YrL6+l=JuIcE;to)bE^rY<7k6Yblm_X|on<i|@U)I;Gj^+|J8KtU9J_iIV2H zo0+9qH8uU$Sw^O&s!-+o$E&PcEnA9a#avv(fBTaD!gFu@^RlDGUd)L8@r<$R?Um{E zk&aR>(@eSC-A*qk^D$hxI(BN4l5W&)H@3N3-!q-q{`Kib@t>c+zGD~2%v`D`pyhGk zLUu#7Z?@L&aR0FDQ4$hPCzNx8z7)<a-0K=Od&#w`omVdYVb<6Cxa@#(t<>&mjQ@C4 z4SM_Kr&;Z4cYLC~R(N)@N76aNxJvcCR<obET{8}KTqd!4@1!(F7r!lDCu8*Y=pNRv zQNL?uCd+<QVArHF&o)7)OYfN`_Jn1c-(O_@%HT#L&kd)Ri(0bB<m+bnvqt);iI|19 zwr;-WP<L3s&(SSJAnN&*3kmmHo->u!xu#W^o$Y*JEMI$+r)yV-PohBNjiWn+3!l&H zEYzD`J~=w=;+2T{Z?Ws^r!{}hKm0>%E64WF{O)W1EWLZbcuPjcn#~Of>th)rE*yyC zo5;LYF#1r=k>`ir<#On};*C5s<&Uv5|8m92ejC!FV)ivWYHwN?E<Mrl;h)MCnqU7g zUa$ywa6RSRv3U$96id{SSLIZe|E$|+$M9{*{6Fg+-DEeFwPSQ>t9U1rU;NL8@mvbW zafbUI&x9HNXELyG>#+Z1Y1qlY@o{?V8;&}r2YzZb2NTRE{nlarznNi&&NsjMZl(v; z)#clstm189+@V@_W?yo0&-J?h=00k#JyThnJeX$xTo>dSIw@KDO3?pFXTI7!E7*PA z()xEK7uz*g#ZymNS}zDqd0lpeM=LCgeYyy1B<G5>_bX&&)(7XRi~T!aHjQQP*I=Vt z5wB%BiVq1c*?#@5Y|5LA>J1ycm`=}J@#XC0Ri_z`>n=$#v0S_Hh1A0t1-slIGzYz9 z3o_buL;FjtQ(y6;Ny>c+k}E>qWW+lx|37cboDXyUJ&bytdZfVJx;gI0T;&y)1NQwX zms~$ppy>M+^9`5witpQ2!TqQ4QHQXG@rHBf|GSvqt$xV+?~HrE8e_>bAEG}@bUJ&S zW#6+W|Ee~fO1W_SeZUWonfI>8TII*^7y9sLEvepRzUpGs$F!8R+0WaQyV$0z_*T-q zWo2>p1nKj6U*rl}QV*@K`_|f_ASEr&wrRulNUOh&iTUn#6B@$q&%Y+fRXw-h2(!qB zvMW3+23u^S!Z$vy7xpd>Z+N#te96ZtD|$HmUfqqzSIl_S7sbe+@9W*D=W3R`sB(d+ zg2|gqRfz`+GgVJSZ1{Qmy0}2n|La*ld=}2Tzk9RB%ik9&s}H35b2skl<KAEB%WyMJ ziu)k*V#i+#g`WNK3TLc{mQvDT`*GTR&fJyKq4Hd-lT)lYj&ww7H^~>3EQ)LUH8tPg ziT8Ry?ApXljgvo@yqa>JSw1MO(6+Cl$>iy)<<Bz0R_-%WQZL%}>+Y8v$uHlhuuDZQ zJiAqdLGjFk3{7Ue>Ql_MCq>>L+5S}aXX1+t9;@HGtY*w?w9T+!JurFaoSM)mk?IdS zx&HJm-^b7qTl%!cV%KVu1LDpPO%yUGc0MVJK9#HVymiOsNQKSYyh6ko{BN#&#HX_3 zeP;B97hkl3?=WqcZL|A#VpaF5&!;!;uUM{s>|^<{>+!XJ_ns@9Q!E;LDZS$T=Y$Ot zbVIjiOg!-X)zqW!n46*|{*k?Q)NFa!);+T#Rz%L;^R)C=_To+EPBRYMuC;1jRCeXX zsxNjk6i(eaG}m?4+?3X)GtcJD+a27!TD$L?BG+e^Yg;$^|43;++I=uh!0qnF17{Z= z*W+S-F#Vmjz>npxn`YfQd#QPQqkCP<YuQU@VhzrkJe>U0DKz1wy-ad5zpb?Coc8!b z8p;0B&gxw9+!1XbY8L%i_TuFqnTFOkI{e?%yX!wH?~vnZ%I}Z3t7^QzTJl|1^o{#6 z^8|Wk##(XPcct1_3D=e0zVGy5dWlxS{5z{Jv)g>XziCc3Lw)hL2xcah<hQ?`y{fs< z{J;K6_dgkdHMZ9p&RlArRr_Rb?nZNQ!*g}b*1I$xgtPtoak;Or^WRm;`koUHFSq_^ z?mci^`y=~o#`*c?OYgPZWp(=h>|wwDZY$Xr@#W9g&a&DSc)Xo|nrz*@|C70X|C+cl z;PU%x_1`=Nw_p3H&GLu+x&AkKzvY)d-q?1O?VtJE4~OfR(=vpw^hLE@w|xGh?CbA6 zh1n0nuKP~-nfPl3U*B8V$4sTl_t^KcSG6y2`}nZ%>*j;3Gw&#TUf(Zas&v==3bXUo zMRB$omlwxfsr>w|V6N1Or?JZ}v0pj6N~$7!pL+nO(^a|q2hz5ka0#4v`KzomQ=Z7; znxhxj9b(vXb(f~3k>!Ou`hAl`q95*wj=1wZVAG+BrF*S!2CQ<}_&Mcc;JtjVI=1EJ zyL`9o+oB=-b>F;S^{OI~IsxaLrd?~P-&v<(dEMju`#|0lqve0x)zA9=>;0|5@RaG$ z|6hiiXJ45xd;8zch4n6;5}8?U^P-ZMS<U+Wn|ocmve%`!Z7~9B(<M?n-mZT??`YKS z*>xg6<UM}1FFB*!yRB;0p6Ec!i!a?i7z7A4h%pQHeA&5hN;u<7wj1*t4^^!fO;z*B z;MnA{z_V4Sm0LLLzfXZ-b@t7Jcdm(ce422SDR+%(yT>k#=8a2*TbZSwYWy@>x;lRq z*R&YTiAr_X{1+4kOcPO4DUmMRWxVNvOT5~<Ev=0UUIxhd|9P|T8cXk)upjLiLQ{@& zC&WH&T;Ou#iA8*paQWNR6CwvR<d=RbittzZ^EEn2c|~J~^v&S!PGZg(%{4g-6^^$~ zT@te8sBDAkCtJITt=ASr3UR0H*39O!c5xSRl2co=V0(Z|G^=uOrd9-F+k(0JVeHS6 zncXW516-t=@>12suAf%3YxmLUD{d0K;Z&N?`X*XQ><?QHLy3{L(x<o2KdhJ7Un&;a zsLH$MfT~jI0@J^<CAG32FKv*29P?#Dq3yY~C;seg3cbVf>Oh<R$ywYv3m5udSX`EJ zB=XnJiF)<Q-V8C5Cp|wCSH$?gc>es=AG|IcSiU*hMz5y%oHX;93T<x&8|_0TGp~ES zdy=xslV#OTxpPi)YOZDeym9W`fzl1L4&SlbFw?U8<nwP4y^K@5xaS<+b>)E2IVol@ zr3;Oz7dA-<oZ&Q{z!EWO_SU)651cuE|6QVs)3YANZ)W|WpVH6y@J^KTxF$H~V1~oQ zc}n{q#dMV(je2(Jx0wFz?`dCKy|490WZhWB;n>OXb88?|@FmIQhK*N~x886LwpKnD zc4*1!)<0IlONx1)r2RN>(Dj|+gPn8L1nLW`9{!V+Z#@3D<<1%g2@{`xdw70G?CI~5 z%-_f~$BRwG^gV|F<NQ0$aVo4UwL}Y#vgg}BF#I;9Q@j1oyWh2TQ?gziV1BP4#nJM9 z3m@~c-Z{G*4oz&-|DnHq!d&Lk!<%yj|FCa-b87w4>y6Cu@&{&3-{<Dn#yx3=`;%n$ zplLyx<=+;GTdjGKYS{LunV(7O(98nvCr56wOaHvUvxFllRPd<ub)Kw<nu+%H)0Y+) z&3ycLuD0i`6<ynw8eljr1yq>=J?DsBJ)icSTa-z4bGng#-nKy9b9^TxUjWK!~ zZm?D!QSA6&5$0AMY27%9+g0!59o`v=;pg^F|E1b$_{kze^S@_G(**6~&(jp0a}LRD zcZ$vad*rfcN@%_whoN$lj7-Fn1!mooCY;><DAbS7z&yll4b!|eUW(P;n_nxiON$j0 z%$lls;_B3%#^4Xl#_<;7E0@#+9GM%X@8K9zcO-LO%NuLyof<EfxnAD5nr8>E7?*{a z(Wl1t&ihs?6Fa#BfACpkb0~^FK7CMa>WAgKghZTbABg#~hGieBvYTFLJtt-Ls{a`) zUMYFLS#Ebd==j4ve$HUW^cu6TS1v9qba3bjwh<TG-T!RQD<;Wv2Torsev@G_k$2M! z<9kP6@huNIwAeWMBa7sV8|=l;cw#rrl+(M!sGt0Wb&m1>g*=K!IafYN%*as>&t3P) zEGp`5Lx1K2C$oZ66IJDZCjU}st)5iVvQ3(MPjJf<<-qmVAL%XV?Y2Cy(z#7|_Y7U1 z*h<}7C-&T*{7s?vsEn0#6Zd>+cGVSP%MVv^%$%E_xk*Bj#qXkBcIDsx>Bse7Ok2n3 zs&TaRWyxU%f9FLTzb)})t!k{FtniIxC&vWU%hh|CIUBgE&rRAi&ui_@wdw^$E01lF ztez9Mi|t8}h|<4rJ=gYW{qihe$xI3H+robGokg(1h3soV9J55y6-_;+1<NFQL@;)+ zPtXhdlp7PMB)?+`Q?Sp@Q)M5e)fb*fo2n4s>hq}kfT?R|RB(;g;_oTO-*<f3Y^`wn zA}gzx=<3aUUZR>iWbD~QCtcpudbUwva$=K^+$Zg<2NM_1SbBE3@~71foS$2AZcfsF zJflHs;UD*l&L`tOEuW{_Ar$}LOw7hIjCWPQ6Ib7JJ=1cIi1xC-vcIKcIN_vtT~U(w z6ibEm-SgxcD&9_1TrV(XrS8SIUk+MbFJze%&%k@iJ!@w(zp3NgXXfADWuGjSW@FIs z_?l(9I_h2Apa1e|GgH(ir({kP@i<vsJTJdY=5!LHLsK>%W8;;2_wx&78KO)UuxNgj zi@M`<bW4_t^|nCkX+o@D`j~h!8k~18_dK{l$hB&2n~(5}P?ISeKO0LGE}e5;#^8*5 zV`Q@UZJC1`T8bDrE_6)W#HGr7cvo}PpOxb3LcXs#(-R+Lv^eir@-*R&v#rFG{0hl( z7jdh-ixg$=3S4Na-1q6z<(nVW*3HOc*s)mA@UFfA3)3vqta(}1iy3l06dYXe<Mi_B z6Ka{{b7qJpU*LbZfBQqfuv>Kw&N7=0gt3~H_~d#{?^a?D6X6Yfa>g}S>gdbz&uYsX zZ+SfHPP4NXT2x$RDkUsb+a`S@aCL9WyoJ2nCogr1pE{XZC3>PuXE~#XoTl)a@SM(! zZ@!jN!K+NCU9q{DRTrZBz<TbB`diaxENd`xOrB@*a;;p>$&gP1D__V*8&7z0j>%-1 zs%BaLfms1hmt^Qh{fH>8jPBoDDZyZ<c(P#rLAgI+YbH4}S97(ov}-7vs4bXr!Dd6p z<8q@`$L>Z~JJ(M&PRV`>`gacUD9j4Y*WwNrUsGtwWn-Vu;t}wK>zfIevV*S}$FlWF z58o|c%V@RiU-*liTG<Wr^m2UX^Y5y^rMJL!;WCEkpsDGvX02ztvi^zH0l7yE;!DpQ z<FmSZcdA?IzQXLX`D!))T#}6@Ont8?uJXrgYT3Fq4Ay-nR~ZBr8?L-nRQ5UVc-~@@ zIc&H2B6Kg_E_Y4lS~}s{w~Ys8M_Hb#z0KGi{PcpPR8fF5!?yEmJz1xBRb9UDw0o5j zzl}+XlJ)aR4ZKrdnV;OAbN=;%CP9_jg^HGufl-f}8d}#+*}3ZU2k{x<mqnkZWq7!j zUs%iXIqB)8W3zv_^cAYRtWsRyY&_!<!-m?>2McT_l={r*G1g7lp>wZHP#|!gw?%X2 z=3`tYmwvy>{krUXh}o1cUQ-zpK2K&8<+8Batp5JM8s=1$b?(9u%k3F%_-_(rU+Z9U zU!z1&If##uPwK(yBMfHtvJ#4~zG$2@zqQkC%fTN)yd9-Y4N2?<nb&G2DBezaEVM|) z-%8v)?}9wToAs;XZe5R2nO*ZhCiSjaG~2XW%ng52AIw~M!n5A`*tvu*_rG#wJe{&J zuec9Ka<ql;w64>h)w+S}%!(KBM_4*zU-YZS9_ZQSxG>>r>O)^vH<peo;jL}FlcZwK zE>rxrxKT6S{MDU+o}&p42YFIb-g#)58GZ;!aJahQM)6y<S*Z@|T||AiJL(*WziDyi z-c@bG=)1q4ozl2{=YsvJBmYbp-*^~Ik6gKJcOZ|Y|8D!+s~0Z67<Hd1&hx+C-#V*> zm8#46JXBZ39%j0oe&o;A)U*5MzIN*FSW)_9;$v%Pt|>0Dq1hsyZ@=|QcTJtlS8gjU z&i4JD({JZZcYG!@&W-pnk3HKsIK7Q!R>|9r;`ZIGJl=N%&Y2tU6W`(BdM9*ix<){x zjnV<R?DZ`c9m<pERH=z_XIw76ceOz71am`5Y3+-<k1`eB$NqbiVsY?Nzs7=_A69?( zU>i1Tul%Q<W`-Y`JlAfmUU+Id<NnPzdoHX#_?>TI-etj!FEWfc1i0kpzbgF5z3yO~ z!paBl+b0}M&`|jD^>=*tQeM3buVQwl#jW|K%dHEXgn#9UFI#;l=49=evtKl74Pt~^ zHw68w%c~K35+u)?^~lsQ^mFpd>HC77OTYFLG>*9xlOX&4@2eZO0y<g!d|5M{np&1^ z-m-=-ajLYrM8TPYn-Q~Lh)>tif1Lfd`S_R6*)NNJ*cwla@s!=n_?$;og*78veEvI! zOQo7}0TaU;n=&oao|-**m{6X!<Bi{x7?H=SUtg;Fr}2t6cg<PIG)*{k>+;i^j|iIV z<zoq*VsbI$y-&50$@G&xym~8M)J_p=aWU;}JR<7he<8@SOzO%tnN%0s)E}FsYe}4O z^p#)0Q})Vn+NHRs4iS=NUjp4eFF0X%ai6JBe5dmClvG=dSHgYVe7PK5hurdHEhjH! z**$Y%k24pG75mZ+OPEckUfHxXeah6Y{leAXKOJB2PUYqkB~>exYg>7iS}c6JD%MO~ zrQUpsukW!12iJb;d|2Q6`S4QREd8hJ-bgyMRzK7@Ufy_$RrTYZ=y)z6&-R<P7ecOV zzbVgtPC(kuqVD&q*b63J^}A00n&39E_@@QiLSuK&9KP${LMl#9=e18PUi#;U$U0r_ zm$%qheXi%X3!h5z<Otfg<h{YClwhWBr7;ivHfCOx5m4hvtqfl<ZLx{i676pc`@H^( z%A0*#8niQF-3|67jLw<ydKXr+PkDZ1!;&zLSeM-|_J8UPS;?Y(r7t5y@Kmy-#6{N? z2ee}=R)_95`fgWq_w@ZwSImu@vBm4oolDNF=LCIr8i!m^3Ge-}a(%?78Hd}vj+$1i zoXEdJjd#_IgA3}MR3H296w?S^vm?niXW8Sf>zpm8BzL>JOgOqE#3<y@?Kp#3D@0G; zHQQhHTe`7`FD+<S>yCU&twdc3@n0)4bhv-6KNN1ie%e7dEs>ca&wKd(9X_iT^5klQ z^RYm|&+?n5Gwr!@{q`PaZIMI5;Q}0~&GDrN0t8PVob;jPRNFVL;G82|y^HnZ6Q=x| zTeXWh{ubYgGcOO$%W^4w{CUTWC%s}?@6F%ms7+q_gq7p2xcUCtcMEqpvz6Vo$SOD` z@bAhBaf5r`M0q*_p5M9jvG&n}ioyWq)3F=Y&X9aH<DDXdO-a|1xwfjUMk0kJliC{} zy!5tg-Ozf^-S*tmA4`RWybJ9QHkb<strBK<`uDP<tsiT&W&euK%%>ZKMP?q@<WTMz zrM&hq_qHz*6NA?Ny)`xAs-)|z0z*!(j^}zgI-e(;as0m|y_lu@4x_7Ax9!>=sh^Mk zZ_ja1ir=7e%iX2I?Ju)8zsjX8tZ!JZ`YXg0i$3OF;~6e{B!2?aZ0j2niw=C9vHO{j zvs{zzy;WX5^4A}~T_^Wn{t;)mv|lP0_nx<>4;THlUiv%w!NaWf+B1Luhs~eB(0{9a z_4eLV2fDN`@9tc@?}rR$h53!u*#{;t6;E2j-k9=w%Yw!C`jq$9T6!p39iG>!>#lUx zB;DQ7d5f-k<MJqu1?Pp@6$QnXY$$(s+R@5p)@G4^n)gbCJf8l}T6$BaaEY;vxjmcW zb1QR?Q`S!lH6q+@-{b5tQfyeHCETvKQnUH|!)eMvkAsWs+qn-maPXWKcVb8kRlCTz z^5ZuS`DJ_(QWq=^8vAkNxhT$O@cU?7VDazi_1d5R!|te=oUZdraCyyF%rF1C;^T!) zoIJBGZhH2mfq(irnYFu`4NY&E-Yt{-7%cXi=WU{A-Fdmvc!rq<w&|(!=I~`)toS*> zcYe>Kr^Z|Qs?R-P_x!CB|8eKOZ;9-u@94d`{7Yv4yPtnbyOtFuWX%8k=RxQH>bz&h zcjU5vJm}qDyv*L^-xv1uKXc7xX4%%bl<3KCe?IxKolxKZ->&oj#V5)CS3hz}-sC-Z z$`AXEcc)ff@cvMrB)|W4{IduD3+8{Hdt+mF>9;)B50{tz*l%v}r^NivwC~-#Jk2l8 zy_&z5U1a{s*9yA+?0-~yPQK+3c>89bbo8<E=}X%_zWMWFVT146!?o336>am+rg~qU z^UkurE@jUJ?!53H(R(H*pPLr?W9{jBugu%?zi5AGI=!=@{?&(Qp1N(_hg9ujOD!vZ z+`Lh-D`cJ5@hyL^*RC%*l)qEqQP}r{KPO5V=RbS1>R;%a?>G24{ohYoZdb>4?)Vu_ zXOron%WqoPH_G>}&1AU~`c&p^Wl+W(h4VoZg8z1HJfQ6=dEfM0bLNe!TMo$9>z!9z zQBZ$0BEhZVVsd!;^qcp~YA^Ksi#b-xXtgKaK>5z2?OYLxYc{7hTw~o{%)fe0*-hr7 zI`P{xg|43UuJ*be>+<;_|FfA^SKsz&9NXJyzG~~@_C$w`&g`q_mY070n*ZkR%U!n= z1lS%lzL|Z|CHYa|_HVoYTj%^P$=~e2!*cX{x&Qf(69pvNBz0p-BL%)n&Hd4~@8`Vt zwcVT7hsDnov!5Gw|ITKe-J(x--qT|b4(F=6BeYhgDpoV<=&E8~+38PMPYIVxZHc`6 zde`F6wKg{k{4eRf`dp^;I*5rc<FLt{JGK*-OmeK0>~g-|@?%rYmYWw%%w+ENsi>a0 z_;!Vv^(z<s)01b;e|q%AvFu3?U!1t3yVjaFp(}WyaLMO8o&S{Emp!^wCMBTd-&}m* z?DVKLSu35d&bZ9r-YvBDoXe7A$qf@?7*_RPahs;fdiP?Nn#f{zvx7_pj>29#x7qco zcDcM*@#wIZ&;zR%&n`^yV=Fy)S@DA4uRjjv`zklgs+PMnCF%60Lo!=9GlFij-QA<g zyRvPWz}KIKqI*}woNm1_#a8IZ*$c_8my33P)7JM2UOk=1R_ImehI{kpM&(_tOjw(J zve=>j>WkbZ&XbF+rX5|s(qZ)kHSu1ZLmR(L(P7yAb}bjnkqp<%x6K}h6-_+RpE+Z7 z+?Jp#q4#Ub(~{4%GC34Wep(%R{jgTA_B;vOSpjt~Crsd)8M<_l-RnD_Ltbnwep$a- zGHb&0FxRG<waf4CO9?9HnaR4~*5`}<Una?{l`ng_&|N{4Awg9$Db&kjarrLm^{QN- z=2}+W@f6Jq)|im#*Vv;dBfus7Wrc_2`9)TS>%MJ1FUqo+d7E6-k0pJ{fqnrR#hMQ8 z-SZ<fm>K%KU%7}KZ8~p!r|sLtW?5II<GvnTtYWczS{J)Q1gf`1TH1JBOV9c$5}tad z=t`)7b4}^-%L^F{v^`d`M(uUmY_QO^(ph#(4%^R}LSJ@Hhzjps)spgAr=p+7_EXBe zPk+U?RPCIWcz5<D+0xm2-Fy94rHaY2&wJ)ozsg|J<4IW?T{|Ck-_$$w*05{4>eD{4 zx$N@KxT~!t8m}*j%M85Uz>@oI$-!&QCSjA<R(@qxP>?+&GbzGn?LFoPn(Pc$Wr~bm zeUM}Dw`9<Wbw1W*wTJz{WIhJ18J&Nn&%bAM*mXz3rFL1~d&UoIm>b>+Y*{Y%p7FyL z=7x38w&vHaXRNuj!bpYT4<F0fP+?s|Wrjb|i5D4G@JKL-Bsd69@-y#Vb#z{jM%#qP z>dLRS+$xb;VIl8e=Y6H6P1fuwbIRxC2X+hoOL6%9Y^v*2rpGsTFUgg?e28Jo1`YKM z4%(NN<teBYc}{0p`$BZ7G5@zI&Qmt4`Z9IDW6gQy+t4d{#MJbq;Msq1SJJIt_ocIH z?orT{*^>D}b)#f+oT$o1Zr;l9t|?c}h*cKW{y9A5?SntR1$yV~Jhd=Kw&&sQCAW?> z1hm-wp4rEIS>~~YqGs3(f!-_2W~qzKG5nKuBj`ik#YlmRUdtp7{SiN0qQk1aMeC*N zQR5?fr`yR1Pw?6oy0t0z@8{UJ4+G^DS3Zsu;ZTXn((jfm=K0X}-!pE4(V1ly0)p3V zPKHTr;?8`W$Y4ED>E)lul~J`BciCD5+g!XiYBcUwQPm4;W!!bDHQ7^Zie=l6Lzzmx zURo>}rOU-jT~{k>7Nkl{y5RqN=C|f~p}QRxCB0CZckOPxs<_UF?Iv4Q*W6;s$eCVu zCRP5W@Pc~tf@aRjO-l1}Zbv6x_+_CKzhqIS>WshJ=A<?DxjMW}2$<JrWmJ^Kd!9M$ z%cd|Xsg#%-CzAISv^(ZFUS4_eosa%&o~z}|hdf>_i2rx3p?F?Fa7v)l1OAwgGxo1B z)LE#<*|t&J_sGUIr6uQIhA;j2F<txBwj_yfftN+h((d?O$!2YpHPVwg{A1!T5t+jg zPcJ<d`=-md%l&V!+%zkJ4YvdKpXFoP(<FE8z@jq4{S{sJs`HL2B)q>QP|h!SaGIR( z;awUB%-J<|%8Qr_eC%|YqmWd)wB2HZmi&k1K}UDky9*r5S9x|q@z8GDGQFh0{VN`F z$>umG>k4z+?EK%=%dB{D=CLlG9kcDaQ(kF4IHmYxv-bD&E>1I(Q@myS7(0SWG%|YD zGzyfdTYi*siV(QOA*aK`T(|vj$;SsbnkDpABfs(`MQoK7X5O$W|Hu4wlSMQ7%3m0G z`py3>*>pp3N<3p!i0rHU=r+$qj^h45zs{TCEWn+0^P8yIU2btNUe+INF1qV2UEaRp z<QL!d(_H9D-GN)G56sg`PG$=g*{xC3S?In-qQ$g(?T7FAsS-byzgQ^v;GS&9>HaS> zt~6V0>u2o}oe{L8$V}DhW6!U<-*{w2mVVmBneyTM(HAvW|EN~GZSOcHyJ^SAbUsO& z#hM~=OFsPF``S6jZg%j}GB?$#4JppLm$Hv29OuuJ%43T3n{@Td`sf1<-&qW5gwwZc zO#9M3JFT6cEz)N3OA)yzANvy~ie~P;n|JQ$Ujaj7tE)2=QY0o>*G*ulds5KzsNF>M zd&9~IS>_*^j9Wj=ST@Znpes^<<<DV0EmiNJ2Zt0-9|>zs^N^fU7!;H|JAv!-cVB~p zOkE#DOJ|fB{-|TLdBN<(qNq9bX~09LYn+xTKGPO2Rr`PAMN&zdmZaLVqf4A69GVLE zYMm8iu9!Cc|NT=Ok9=N-W=_yvcGzF<t6>F)iT+JxpA%fd54oqCXe;?BuRj@gy>s6` z)lP#Vj*4$~|7Dj}raV=jo>t^1A@^mY%I>K${5MlgmIoMEpM7Lf(0RnW^5Vp2+xApR zbVpBQv3haDz-ynuldq9%XIhkBKi}G^aNhjo%ffKJ6jQa@hMh;{mRN*8mYa9>WFt$S zFVlhrIp5FR|5yId)1>t5?i-SS-j;rmWP5t>?uGpS*5-aT6VH6yZg#qRzuWdZ_O?e? zR!W2my0gDG_<!tZ#!>bC2lvl-uAg_lG-*?(zvq*+AEnEi{M~OKwoAHW5~s`OxPgCC zR^i!G&wsu8|0wTuapaWLzenajeEat8Tkq-u4+aJX289>@v*TxgSg1IUF}C;k+eg#h Q-2sVvy85}Sb4q9e0RM_kJ^%m! diff --git a/web/public/manifest.json b/web/public/manifest.json deleted file mode 100644 index 080d6c7..0000000 --- a/web/public/manifest.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "short_name": "React App", - "name": "Create React App Sample", - "icons": [ - { - "src": "favicon.ico", - "sizes": "64x64 32x32 24x24 16x16", - "type": "image/x-icon" - }, - { - "src": "logo192.png", - "type": "image/png", - "sizes": "192x192" - }, - { - "src": "logo512.png", - "type": "image/png", - "sizes": "512x512" - } - ], - "start_url": ".", - "display": "standalone", - "theme_color": "#000000", - "background_color": "#ffffff" -} diff --git a/web/public/robots.txt b/web/public/robots.txt deleted file mode 100644 index e9e57dc..0000000 --- a/web/public/robots.txt +++ /dev/null @@ -1,3 +0,0 @@ -# https://www.robotstxt.org/robotstxt.html -User-agent: * -Disallow: diff --git a/web/src/App.css b/web/src/App.css deleted file mode 100644 index 74b5e05..0000000 --- a/web/src/App.css +++ /dev/null @@ -1,38 +0,0 @@ -.App { - text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } -} - -.App-header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.App-link { - color: #61dafb; -} - -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} diff --git a/web/src/App.js b/web/src/App.js deleted file mode 100644 index ce9cbd2..0000000 --- a/web/src/App.js +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react'; -import logo from './logo.svg'; -import './App.css'; - -function App() { - return ( - <div className="App"> - <header className="App-header"> - <img src={logo} className="App-logo" alt="logo" /> - <p> - Edit <code>src/App.js</code> and save to reload. - </p> - <a - className="App-link" - href="https://reactjs.org" - target="_blank" - rel="noopener noreferrer" - > - Learn React - </a> - </header> - </div> - ); -} - -export default App; diff --git a/web/src/App.test.js b/web/src/App.test.js deleted file mode 100644 index 4db7ebc..0000000 --- a/web/src/App.test.js +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; -import { render } from '@testing-library/react'; -import App from './App'; - -test('renders learn react link', () => { - const { getByText } = render(<App />); - const linkElement = getByText(/learn react/i); - expect(linkElement).toBeInTheDocument(); -}); diff --git a/web/src/index.css b/web/src/index.css deleted file mode 100644 index ec2585e..0000000 --- a/web/src/index.css +++ /dev/null @@ -1,13 +0,0 @@ -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', - monospace; -} diff --git a/web/src/index.js b/web/src/index.js deleted file mode 100644 index f5185c1..0000000 --- a/web/src/index.js +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom'; -import './index.css'; -import App from './App'; -import * as serviceWorker from './serviceWorker'; - -ReactDOM.render( - <React.StrictMode> - <App /> - </React.StrictMode>, - document.getElementById('root') -); - -// If you want your app to work offline and load faster, you can change -// unregister() to register() below. Note this comes with some pitfalls. -// Learn more about service workers: https://bit.ly/CRA-PWA -serviceWorker.unregister(); diff --git a/web/src/logo.svg b/web/src/logo.svg deleted file mode 100644 index 6b60c10..0000000 --- a/web/src/logo.svg +++ /dev/null @@ -1,7 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"> - <g fill="#61DAFB"> - <path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/> - <circle cx="420.9" cy="296.5" r="45.7"/> - <path d="M520.5 78.1z"/> - </g> -</svg> diff --git a/web/src/serviceWorker.js b/web/src/serviceWorker.js deleted file mode 100644 index b04b771..0000000 --- a/web/src/serviceWorker.js +++ /dev/null @@ -1,141 +0,0 @@ -// This optional code is used to register a service worker. -// register() is not called by default. - -// This lets the app load faster on subsequent visits in production, and gives -// it offline capabilities. However, it also means that developers (and users) -// will only see deployed updates on subsequent visits to a page, after all the -// existing tabs open on the page have been closed, since previously cached -// resources are updated in the background. - -// To learn more about the benefits of this model and instructions on how to -// opt-in, read https://bit.ly/CRA-PWA - -const isLocalhost = Boolean( - window.location.hostname === 'localhost' || - // [::1] is the IPv6 localhost address. - window.location.hostname === '[::1]' || - // 127.0.0.0/8 are considered localhost for IPv4. - window.location.hostname.match( - /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ - ) -); - -export function register(config) { - if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { - // The URL constructor is available in all browsers that support SW. - const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); - if (publicUrl.origin !== window.location.origin) { - // Our service worker won't work if PUBLIC_URL is on a different origin - // from what our page is served on. This might happen if a CDN is used to - // serve assets; see https://github.com/facebook/create-react-app/issues/2374 - return; - } - - window.addEventListener('load', () => { - const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; - - if (isLocalhost) { - // This is running on localhost. Let's check if a service worker still exists or not. - checkValidServiceWorker(swUrl, config); - - // Add some additional logging to localhost, pointing developers to the - // service worker/PWA documentation. - navigator.serviceWorker.ready.then(() => { - console.log( - 'This web app is being served cache-first by a service ' + - 'worker. To learn more, visit https://bit.ly/CRA-PWA' - ); - }); - } else { - // Is not localhost. Just register service worker - registerValidSW(swUrl, config); - } - }); - } -} - -function registerValidSW(swUrl, config) { - navigator.serviceWorker - .register(swUrl) - .then(registration => { - registration.onupdatefound = () => { - const installingWorker = registration.installing; - if (installingWorker == null) { - return; - } - installingWorker.onstatechange = () => { - if (installingWorker.state === 'installed') { - if (navigator.serviceWorker.controller) { - // At this point, the updated precached content has been fetched, - // but the previous service worker will still serve the older - // content until all client tabs are closed. - console.log( - 'New content is available and will be used when all ' + - 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' - ); - - // Execute callback - if (config && config.onUpdate) { - config.onUpdate(registration); - } - } else { - // At this point, everything has been precached. - // It's the perfect time to display a - // "Content is cached for offline use." message. - console.log('Content is cached for offline use.'); - - // Execute callback - if (config && config.onSuccess) { - config.onSuccess(registration); - } - } - } - }; - }; - }) - .catch(error => { - console.error('Error during service worker registration:', error); - }); -} - -function checkValidServiceWorker(swUrl, config) { - // Check if the service worker can be found. If it can't reload the page. - fetch(swUrl, { - headers: { 'Service-Worker': 'script' }, - }) - .then(response => { - // Ensure service worker exists, and that we really are getting a JS file. - const contentType = response.headers.get('content-type'); - if ( - response.status === 404 || - (contentType != null && contentType.indexOf('javascript') === -1) - ) { - // No service worker found. Probably a different app. Reload the page. - navigator.serviceWorker.ready.then(registration => { - registration.unregister().then(() => { - window.location.reload(); - }); - }); - } else { - // Service worker found. Proceed as normal. - registerValidSW(swUrl, config); - } - }) - .catch(() => { - console.log( - 'No internet connection found. App is running in offline mode.' - ); - }); -} - -export function unregister() { - if ('serviceWorker' in navigator) { - navigator.serviceWorker.ready - .then(registration => { - registration.unregister(); - }) - .catch(error => { - console.error(error.message); - }); - } -} diff --git a/web/src/setupTests.js b/web/src/setupTests.js deleted file mode 100644 index 74b1a27..0000000 --- a/web/src/setupTests.js +++ /dev/null @@ -1,5 +0,0 @@ -// jest-dom adds custom jest matchers for asserting on DOM nodes. -// allows you to do things like: -// expect(element).toHaveTextContent(/react/i) -// learn more: https://github.com/testing-library/jest-dom -import '@testing-library/jest-dom/extend-expect'; -- GitLab