Python 以txt格式保存和读取json数据

CODE:

#!/usr/bin/python 
# -*- coding: utf-8 -*-

'''
Created on 2014-7-15
@author: guaguastd
@name: json_with_text.py
'''

if __name__ == '__main__':

    # import json
    import json

    # import search
    from search import twitter_search
        
    # import format
    from format import save_json_text, load_json_text
    
    # import partial
    from functools import partial
    
    # import login, see http://blog.csdn.net/guaguastd/article/details/31706155 
    from login import twitter_login

    # get the twitter access api
    twitter_api = twitter_login()
    
    # sample usage 
    q = "iPhone"
    pp = partial(json.dumps, indent=1)
    authenticated_twitter_search = partial(twitter_search, twitter_api, max_results=10)
    results = authenticated_twitter_search(q)
    print pp(results)

    # save json data into text
    save_json_text(q, results)
    
    # load json data from text
    results = load_json_text(q)
    
    #print the json data
    pp(results)

RESULT:

"[{\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192   http://t.co/1z66mannAW\\n\\niPhone\u2192  http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174354660294656, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/GnRegaro610\\\" rel=\\\"nofollow\\\"> \u4e0d\u4e8c\u5b50\u306e\u3064\u3076\u3084\u304d</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174354660294656\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2615333876, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487202216298565632/MwsY2U9q_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 211, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2615333876\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 228, \"description\": \"\u3044\u3044\u5973\u3063\u3066\u3044\u3046\u306e\u306f\u306d\u3001\u81ea\u5206\u3067\u81ea\u5206\u3092\u5b88\u308c\u308b\u5973\u3088\u3002\", \"friends_count\": 1986, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487202216298565632/MwsY2U9q_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2615333876/1404992975\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"fujiko_mine__\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5cf0\u4e0d\u4e8c\u5b50\u306e\u3064\u3076\u3084\u304d\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 10 11:45:31 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174354630959104, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/yahootie3\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af19</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174354630959104\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515146372, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471319151458258946/rWnXn-I7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1358, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515146372\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 4020, \"description\": \"\u30ac\u30f3\u30c0\u30e0\u306b\u95a2\u4fc2\u3059\u308b\u3053\u3068\u3092\u305f\u304f\u3055\u3093\u3064\u3076\u3084\u3044\u3066\u3044\u304d\u307e\u3059\u3002\u611f\u3058\u308b\u3082\u306e\u304c\u3042\u308c\u3070RT\u3057\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471319151458258946/rWnXn-I7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515146372/1405308274\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"gandamu3213\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ac\u30f3\u30c0\u30e0\u95a2\u4fc2\u306e\u3044\u308d\u3044\u308d\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 11:03:56 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174354542858240, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174354542858240\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2531465898, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471852878491959298/06KO674m_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 492, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2531465898\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 808, \"description\": \"\u4e16\u754c\u304b\u3089\u611b\u3055\u308c\u3066\u3084\u307e\u306a\u3044\u540d\u4f5c\u3001\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30eb\uff01\u305d\u306e\u4e2d\u304b\u3089\u540d\u8a00\u3092\u653e\u3063\u3066\u884c\u304d\u307e\u3059\u3002\u4e16\u754c\u306e\u7686\u306b\u5c4a\u3051\u308b\u70ba\u306b\u2026\u30aa\u30e9\u306b\u529b\u3092\u5206\u3051\u3066\u304f\u308c\u3002\u5fdc\u63f4\u62f3100\u500d\u4e2d\u203c\ufe0e\", \"friends_count\": 737, \"location\": \"\u5730\u7403\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471852878491959298/06KO674m_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2531465898/1401334141\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"dragon_ball___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30eb\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 29 03:16:23 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @onepiecesaikoo: \u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http:/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174354501332992, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/koiseyootomeyo\\\" rel=\\\"nofollow\\\">\u604b\u305b\u3088\u4e59\u5973</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2170061892, \"indices\": [3, 18], \"id_str\": \"2170061892\", \"screen_name\": \"onepiecesaikoo\", \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [108, 130], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"source_status_id_str\": \"489174348276588546\", \"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"source_status_id\": 489174348276588546, \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174354501332992\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1890335059, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme4/bg.gif\", \"verified\": false, \"profile_text_color\": \"3C3940\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/472981238819463168/AMkZZ4zg_normal.jpeg\", \"profile_sidebar_fill_color\": \"95E8EC\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7604, \"profile_sidebar_border_color\": \"5ED4DC\", \"id_str\": \"1890335059\", \"profile_background_color\": \"0099B9\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 974, \"description\": \"LINE\u30ab\u30c3\u30d7\u30eb\u3042\u308b\u3042\u308b\u3067\u7b11\u3063\u3061\u3083\u304a\u266a\", \"friends_count\": 8366, \"location\": \"\", \"profile_link_color\": \"0099B9\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/472981238819463168/AMkZZ4zg_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1890335059/1401602577\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme4/bg.gif\", \"screen_name\": \"linecouplearu\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"LINE\u30ab\u30c3\u30d7\u30eb\u3042\u308b\u3042\u308b\uff57\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Sep 21 14:10:14 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174354333147136, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/niji_ero_club\\\" rel=\\\"nofollow\\\">niji_ero_club</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174354333147136\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2469727524, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/464939738705580032/EJDo5hOz_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1146, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2469727524\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 68689, \"description\": \"\u8a71\u984c\u306e\u795e\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\u65ec\u306a\u6700\u65b0\u30a2\u30d7\u30ea\u3092\u3044\u3061\u65e9\u304f\u30c1\u30a7\u30c3\u30af\uff01\", \"friends_count\": 1495, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/464939738705580032/EJDo5hOz_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2469727524/1399685194\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_app_news\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u2606\u30cb\u30e5\u30fc\u30b9\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Apr 29 18:53:11 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174353896943616, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/GtRegaro610\\\" rel=\\\"nofollow\\\">\u6ce3\u3051\u308b\u6620\u753b</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174353896943616\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2615447052, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487223775230844928/WSZ2Fw2g_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 230, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2615447052\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 216, \"description\": \"\u6b7b\u306c\u307e\u3067\u306b\u4e00\u5ea6\u306f\u898b\u3066\u304a\u304d\u305f\u3044\u300c\u6ce3\u3051\u308b\u6620\u753b\u300d\u3092\u3054\u7d39\u4ecb\u3057\u307e\u3059\u3002\", \"friends_count\": 1989, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487223775230844928/WSZ2Fw2g_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2615447052/1404998980\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"nakeru_cinema\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u6b7b\u306c\u307e\u3067\u306b\u898b\u305f\u3044\u6ce3\u3051\u308b\u6620\u753b\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 10 13:12:47 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174353813073921, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dorakuearu2\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af34</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174353813073921\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515340792, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478896520813486081/yn4PuB9a_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1413, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515340792\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2408, \"description\": \"SMAP\u5927\u597d\u304d\u306a\u4eba\u96c6\u307e\u308c\u30fc\u30fc\u30fc\uff01\uff01\uff01\\r\\n\u30b9\u30de\u30c3\u30d7\u306e\u3053\u3068\u3064\u3076\u3084\u304f\u306e\u3067\u307f\u3093\u306a\u3067RT\u3057\u3066\u3044\u304d\u307e\u3057\u3087\u3046\uff01\", \"friends_count\": 1762, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478896520813486081/yn4PuB9a_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515340792/1405337399\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"sumap11\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"SMAP\u5927\u597d\u304d\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 12:37:40 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174353699807232, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174353699807232\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2531635285, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471865482518073344/kYhkkaOF_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 480, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2531635285\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 110, \"description\": \"\u7686\u3067\u30cb\u30bb\u30b3\u30a4\u3092\u3082\u3063\u3068\u3082\u3063\u3068\u76db\u308a\u4e0a\u3052\u307e\u3057\u3087\u3046\u266a \u300e\u30a6\u30bd\u30c4\u30ad\u306f\u604b\u306e\u59cb\u307e\u308a\u300f\u30d5\u30a9\u30ed\u30d0\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 894, \"location\": \"\u51e1\u77e2\u7406\u9ad8\u6821\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471865482518073344/kYhkkaOF_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2531635285/1401397175\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"nisekoi_bot__\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30cb\u30bb\u30b3\u30a4 \u30d5\u30a1\u30f3bot\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 29 04:06:00 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:09 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174353603342337, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/inthe_skirt\\\" rel=\\\"nofollow\\\">\u30de\u30b9\u30bf\u30fc\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30c4\u30a4\u30c3\u30bf\u30fc</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174353603342337\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2511511910, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/473982731756371968/zyOKd9h1_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2564, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2511511910\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 25, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 45680, \"description\": \"\u670d\u3088\u308a\u3082\u88f8\uff01\u88f8\u3088\u308a\u3082\u4e0b\u7740\u3067\u3057\u3087\uff57\u305d\u3093\u306a\u4e0b\u7740\u59ff\u304c\u4f3c\u5408\u3046\u7f8e\u5973\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\u3002\u8208\u596e\u3057\u305f\u3089RT\u3088\u308d\u3057\u304f\uff01\", \"friends_count\": 1665, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/473982731756371968/zyOKd9h1_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2511511910/1401841453\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_sexy_shorts\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u5b8c\u5168\u7248\u3011\u30bb\u30af\u30b7\u30fc\u4e0b\u7740\u7f8e\u5973\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed May 21 00:49:18 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Pel\u00edculas para Iphone Promo\u00e7\u00e3o da Copa Desconto 30% QUICKPELICULAS http://t.co/X2cCfYi188\", \"in_reply_to_status_id\": null, \"id\": 489174353590763520, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://postlist.com.br\\\" rel=\\\"nofollow\\\">PostList</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X2cCfYi188\", \"indices\": [67, 89], \"expanded_url\": \"http://poo.st/19B28\", \"display_url\": \"poo.st/19B28\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174353590763520\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 142911410, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/438814066128060417/7CGTTjL6.jpeg\", \"verified\": false, \"profile_text_color\": \"634047\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/438813919755247617/j0naX1dh_normal.jpeg\", \"profile_sidebar_fill_color\": \"E3E2DE\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/UfnR6lVH8s\", \"indices\": [0, 22], \"expanded_url\": \"http://www.quickpeliculas.com.br\", \"display_url\": \"quickpeliculas.com.br\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 7443, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"142911410\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 34, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 28655, \"description\": \"Quickpeliculas Loja Especializada em Pel\u00edculas para Celulares Smartphones e tablets.\", \"friends_count\": 4866, \"location\": \"S\u00e3o Paulo Brasil\", \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/438813919755247617/j0naX1dh_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/142911410/1393456349\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/438814066128060417/7CGTTjL6.jpeg\", \"screen_name\": \"temquecontar\", \"lang\": \"pt\", \"profile_background_tile\": true, \"favourites_count\": 22, \"name\": \"TEMQUECONTAR\", \"notifications\": false, \"url\": \"http://t.co/UfnR6lVH8s\", \"created_at\": \"Wed May 12 02:28:25 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Santiago\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"pt\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"pt\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Australia 76. Up! - Samantha Jade http://t.co/qlJUQ9iNOn #Music #Video #iTunes #iPhone #Apple #Mac\", \"in_reply_to_status_id\": null, \"id\": 489174353221677057, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://blog.77jp.net\\\" rel=\\\"nofollow\\\">Top 10 Music Video</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 63], \"text\": \"Music\"}, {\"indices\": [64, 70], \"text\": \"Video\"}, {\"indices\": [71, 78], \"text\": \"iTunes\"}, {\"indices\": [79, 86], \"text\": \"iPhone\"}, {\"indices\": [87, 93], \"text\": \"Apple\"}, {\"indices\": [94, 98], \"text\": \"Mac\"}], \"urls\": [{\"url\": \"http://t.co/qlJUQ9iNOn\", \"indices\": [34, 56], \"expanded_url\": \"http://tinyurl.com/m7wu7fh\", \"display_url\": \"tinyurl.com/m7wu7fh\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174353221677057\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2457837283, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme3/bg.gif\", \"verified\": false, \"profile_text_color\": \"634047\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/458588999917899776/2RXHqUhF_normal.png\", \"profile_sidebar_fill_color\": \"E3E2DE\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/BIIZY2zulT\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/1mMfen3\", \"display_url\": \"j.mp/1mMfen3\"}, {\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [136, 158], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}}, \"followers_count\": 147, \"profile_sidebar_border_color\": \"D3D2CF\", \"id_str\": \"2457837283\", \"profile_background_color\": \"EDECE9\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 54160, \"description\": \"http://t.co/BIIZY2zulT iTunes Store Top 10 Music Video. United States, China, Korea, United Kingdom, France, Australia, Germany, Japan, http://t.co/UBaFeqTc4O\", \"friends_count\": 16, \"location\": \"\", \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/458588999917899776/2RXHqUhF_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme3/bg.gif\", \"screen_name\": \"itmvideorank\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Top 10 Music Video\", \"notifications\": false, \"url\": \"http://t.co/UBaFeqTc4O\", \"created_at\": \"Tue Apr 22 08:36:16 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @onepiecesaikoo: \u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http:/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174353158762496, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2170061892, \"indices\": [3, 18], \"id_str\": \"2170061892\", \"screen_name\": \"onepiecesaikoo\", \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [108, 130], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"source_status_id_str\": \"489174348276588546\", \"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"source_status_id\": 489174348276588546, \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174353158762496\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2162452189, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467358106620407808/M2a3updZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7287, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2162452189\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1146, \"description\": \"\u7b11\u3044\u306b\u98e2\u3048\u3066\u308b\u4eba\u306b\u7b11\u3044\u3092\u5c4a\u3051\u307e\u3059\uff57\uff57\", \"friends_count\": 8025, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467358106620407808/M2a3updZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2162452189/1400261888\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"warainodendouu\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7b11\u3044\u306e\u00d7\u96fb\u52d5\u25cb\u6bbf\u5802\uff57\uff57\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Oct 29 08:51:41 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174353125208064, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/FiRegaro610\\\" rel=\\\"nofollow\\\"> \u539f\u4fa1\u306e\u771f\u5b9f</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174353125208064\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2606893368, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485675111400210432/Mu-ktwg3_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 235, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2606893368\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 340, \"description\": \"\u3044\u3064\u3082\u53e3\u306b\u3057\u3066\u3044\u305f\u308a\u4f7f\u3063\u3066\u3044\u308b\u3082\u306e\u306e\u9a5a\u304d\u306e\u539f\u4fa1\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u3048\u3063\uff1f\u3068\u601d\u3063\u305f\u3089RT\u3092\uff01\", \"friends_count\": 1618, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485675111400210432/Mu-ktwg3_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2606893368/1404629667\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"truth_genka\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u8ab0\u306b\u3082\u8a00\u3048\u306a\u3044\u539f\u4fa1\u306e\u771f\u5b9f\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jul 06 06:37:44 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174353011949568, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/sccmeigen\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af51</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174353011949568\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515142119, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471302308957921281/fRxky5GQ_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1523, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515142119\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3403, \"description\": \"\u30e4\u30d5\u30fc\u77e5\u6075\u888b\u3067\u56de\u7b54\u3055\u308c\u305f\u7206\u7b11\u56de\u7b54\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u304d\u307e\u3059\u3002\u304a\u3082\u3057\u308d\u304b\u3063\u305f\u3089RT\u3057\u3066\u304f\u3060\u3055\u3044\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471302308957921281/fRxky5GQ_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515142119/1405268655\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"yahootie3\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30e4\u30d5\u30fc\u77e5\u6075\u888b\u7206\u7b11\u56de\u7b54\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 10:50:05 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"@elenieel He mirado precios y lo que ten\u00edan en Orange y la mayoria era o muy caro (m\u00e1s que un iPhone) o un Samsung xD Seguramente me compre*\", \"in_reply_to_status_id\": 489174121285439488, \"id\": 489174352915857408, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 238357914, \"indices\": [0, 9], \"id_str\": \"238357914\", \"screen_name\": \"elenieel\", \"name\": \"Fassy\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": \"elenieel\", \"in_reply_to_user_id\": 238357914, \"retweet_count\": 0, \"id_str\": \"489174352915857408\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 334620709, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/464521286492753921/OC3gmAxC.png\", \"verified\": false, \"profile_text_color\": \"851434\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/489129063361937408/x4DJnKh__normal.jpeg\", \"profile_sidebar_fill_color\": \"F0A1A1\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/NnbV4n8omf\", \"indices\": [0, 22], \"expanded_url\": \"http://insanity--instinct.tumblr.com/\", \"display_url\": \"insanity--instinct.tumblr.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 424, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"334620709\", \"profile_background_color\": \"000000\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 3600, \"statuses_count\": 34793, \"description\": \"1995. History of Art Student | #SPN #TWD #AHS #BB #HIMYM #Skins #Shameless #ModernFamily... | My life is summarised n Music & tv shows. Gallevich \u2661\", \"friends_count\": 274, \"location\": \"Barcelona (Spain)\", \"profile_link_color\": \"8A0B39\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/489129063361937408/x4DJnKh__normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/334620709/1405452907\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/464521286492753921/OC3gmAxC.png\", \"screen_name\": \"kurara_95\", \"lang\": \"es\", \"profile_background_tile\": true, \"favourites_count\": 4980, \"name\": \"Kurara\", \"notifications\": false, \"url\": \"http://t.co/NnbV4n8omf\", \"created_at\": \"Wed Jul 13 11:52:45 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"London\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": \"238357914\", \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": \"489174121285439488\", \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174352865157120, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174352865157120\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2509843478, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/468685335686172673/8kIMBIpX_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 480, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2509843478\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 643, \"description\": \"\u30c7\u30a3\u30ba\u30cb\u30fc\u5927\u597d\u304d\uff0d\uff01\uff01\u30c7\u30a3\u30ba\u30cb\u30fc\u753b\u50cf\u3001\u304a\u3082\u3057\u308d\u60c5\u5831\u3001\u96d1\u5b66\u3001\u90fd\u5e02\u4f1d\u8aac\u3092\u767a\u4fe1\u3057\u307e\u3059\u266a\", \"friends_count\": 1416, \"location\": \"\u5922\u306e\u56fd\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/468685335686172673/8kIMBIpX_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2509843478/1400599442\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"disney_love_1_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30c7\u30a3\u30ba\u30cb\uff0dLOVE\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 20 09:27:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174352848375809, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/kyonyu_heaven\\\" rel=\\\"nofollow\\\">kyonyu_heaven</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174352848375809\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2574676015, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481081905496854528/lrzz55JV_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 4580, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2574676015\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 31, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 22190, \"description\": \"\u30c7\u30a3\u30ba\u30cb\u30fc\u30e9\u30f3\u30c9\u304c\u5927\u597d\u304d\u306a\u307d\u3063\u3061\u3083\u308aJD\u2661\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u7537\u306e\u4eba\u3068\u7d61\u3093\u3067\u307f\u305f\u304f\u3066\u30a8\u30ed\u57a2\u4f5c\u3063\u3066\u307f\u307e\u3057\u305f\uff57\u30c7\u30a3\u30ba\u30cb\u30fc\u597d\u304d\u306a\u4eba\u3068\u304b\u8d85\u3046\u308c\u3057\u3044\u304b\u3082\u2661\u5c11\u3057\u307d\u3063\u3061\u3083\u308a\u3067\u3059\u304c\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2661\", \"friends_count\": 1250, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481081905496854528/lrzz55JV_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2574676015/1403534632\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"miyuki_eroaka\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u307d\u3063\u3061\u3083\u308a\u2661\u7f8e\u7531\u7d00\uff20\u30a8\u30ed\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Jun 18 11:27:56 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @onepiecesaikoo: \u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http:/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174352416370689, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/warosudouga\\\" rel=\\\"nofollow\\\">\u30ef\u30ed\u30b96\u79d2\u52d5\u753b</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2170061892, \"indices\": [3, 18], \"id_str\": \"2170061892\", \"screen_name\": \"onepiecesaikoo\", \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [108, 130], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"source_status_id_str\": \"489174348276588546\", \"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"source_status_id\": 489174348276588546, \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174352416370689\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1716052790, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme13/bg.gif\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467335066444525568/zkHP66Fw_normal.jpeg\", \"profile_sidebar_fill_color\": \"FFFFFF\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7693, \"profile_sidebar_border_color\": \"EEEEEE\", \"id_str\": \"1716052790\", \"profile_background_color\": \"B2DFDA\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1162, \"description\": \"\u7b11\u3048\u308b\u52d5\u753b\u3092\u7d39\u4ecb\u3059\u308b\u3088\u266a\", \"friends_count\": 8465, \"location\": \"\", \"profile_link_color\": \"93A644\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467335066444525568/zkHP66Fw_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1716052790/1400256444\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme13/bg.gif\", \"screen_name\": \"warosudouga\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30ed\u30b96\u79d2\u52d5\u753b\uff57\uff57\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Aug 31 15:55:45 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174352395395073, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/BuRegaro610\\\" rel=\\\"nofollow\\\">\u30c9\u30e9\u30c3\u30ab\u30fc\u79d8\u8a23</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174352395395073\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2585480726, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481377858594435072/4cHL3wWk_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 249, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2585480726\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 4018, \"description\": \"\u7d4c\u55b6\u306e\u795e\u69d8\u3001\u30d4\u30fc\u30bf\u30fc\u30c9\u30e9\u30c3\u30ab\u30fc\u306e\u540d\u8a00\u96c6\u3067\u3059\u3002\u30d3\u30b8\u30cd\u30b9\u3060\u3051\u3067\u306f\u306a\u304f\u3001\u5145\u5b9f\u3057\u305f\u4eba\u751f\u3092\u9001\u308b\u305f\u3081\u306b\u5f79\u7acb\u3064\u6df1\u3044\u8a00\u8449\u304c\u51dd\u7e2e\u3055\u308c\u3066\u3044\u307e\u3059\u3002\", \"friends_count\": 1975, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481377858594435072/4cHL3wWk_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2585480726/1403604282\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"drucker_words6\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u2606\u30c9\u30e9\u30c3\u30ab\u30fc\u304c\u6559\u3048\u308b\u4eba\u751f\u306e\u79d8\u8a23\u2606\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jun 24 09:55:06 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174352277946368, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/kowaiyu2\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af26</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174352277946368\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515259402, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/472343834458730496/_u9ymzcR_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1617, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515259402\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3468, \"description\": \"\u30b8\u30d6\u30ea\u306e\u753b\u50cf\u3092\u306e\u305b\u3066\u3044\u304d\u307e\u3059\u3002\\r\\n\u597d\u304d\u306a\u65b9\u306f\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/472343834458730496/_u9ymzcR_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515259402/1405310207\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"jibuburi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30b8\u30d6\u30ea\u306e\u753b\u50cf\u3044\u3063\u3071\u3044\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 11:56:51 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174352093405184, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ero_watashi\\\" rel=\\\"nofollow\\\">ero_watashi</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174352093405184\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2473248714, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme11/bg.gif\", \"verified\": false, \"profile_text_color\": \"362720\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/462363598082170880/1fSUOgl8_normal.png\", \"profile_sidebar_fill_color\": \"E5507E\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1416, \"profile_sidebar_border_color\": \"CC3366\", \"id_str\": \"2473248714\", \"profile_background_color\": \"FF6699\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 70077, \"description\": \"\u3061\u3087\u3063\u3074\u308a\u30aa\u30c8\u30ca\u5411\u3051\u306e\u30a2\u30d7\u30ea\u3092\u30a4\u30c1\u65e9\u304f\u3054\u7d39\u4ecb\u3057\u3066\u304f\u3088\u2606\u6c17\u306b\u306a\u3063\u305f\u3089\u904a\u3093\u3067\u307f\u3066\u306d\u266a\u79c1\u3082\u826f\u304f\u4f7f\u3046\u7121\u6599\u3067\u512a\u826f\u306e\u795e\u30a2\u30d7\u30ea\u2661\", \"friends_count\": 276, \"location\": \"\", \"profile_link_color\": \"B40B43\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/462363598082170880/1fSUOgl8_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2473248714/1399071189\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme11/bg.gif\", \"screen_name\": \"app_otona\", \"lang\": \"ja\", \"profile_background_tile\": true, \"favourites_count\": 0, \"name\": \"\u5927\u4eba\u30a2\u30d7\u30ea\u2606\u795e\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 02 01:12:53 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174352089190401, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174352089190401\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2525941327, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471048445231243266/wLuKHXPc_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 495, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2525941327\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 713, \"description\": \"miwa(bot)\u3088\u308a\u6b4c\u8a5e\u3084\u753b\u50cf\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u6c17\u306b\u5165\u3063\u305f\u3089\u3001\u30d5\u30a9\u30ed\u30fc\u30fbRT\u304a\u9858\u3044\u3057\u307e\u3059\u3002miwa\u306e\u7d20\u6575\u306a\u6b4c\u3092\u6b4c\u8a5e\u3092\u805e\u304d\u6d78\u3063\u3066\u4e0b\u3055\u3044\u266a no life no miwa\u203c\ufe0e\", \"friends_count\": 957, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471048445231243266/wLuKHXPc_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2525941327/1401141450\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"miwa_song_bot_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"miwa \", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 26 21:52:27 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174351686553600, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/BxRegaro610\\\" rel=\\\"nofollow\\\"> \u6df1\u30a4\u30a4\u8a00\u8449</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174351686553600\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2585660972, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481412033938616320/5o24TCIS_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 242, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2585660972\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 6526, \"description\": \"\u4e16\u754c\u3084\u65e5\u672c\u306e\u8457\u540d\u4eba\u306e\u6df1\u30a4\u30a4\u8a00\u8449\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u5171\u611f\u3057\u305f\u3089\u30ea\u30c4\u30a4\u30fc\u30c8\u304a\u9858\u3044\u3057\u307e\u3059\u2606\", \"friends_count\": 1954, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481412033938616320/5o24TCIS_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2585660972/1403612630\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"fukaii_words\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u4eba\u751f\u306b\u5f79\u7acb\u3064\u6df1\u30a4\u30a4\u8a00\u8449\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jun 24 12:10:50 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @onepiecesaikoo: \u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http:/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174351585873920, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2170061892, \"indices\": [3, 18], \"id_str\": \"2170061892\", \"screen_name\": \"onepiecesaikoo\", \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [108, 130], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"source_status_id_str\": \"489174348276588546\", \"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"source_status_id\": 489174348276588546, \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174351585873920\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2169846714, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467398495226187776/uFxzPHSJ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7747, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2169846714\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1186, \"description\": \"\u7b11\u3048\u308b\u304a\u304b\u3093\u30cd\u30bf\u3084\uff01\uff57\uff57\", \"friends_count\": 8522, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467398495226187776/uFxzPHSJ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2169846714/1400271709\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"okannetawarosu\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 08:34:37 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u3010\u901f\u5831\u3011\u4ffa\u6c0f\u7ae5\u8c9e\u5352\u696d\uff01\uff01\\n\u3081\u3063\u3061\u3083\u304b\u308f\u3044\u3044\u5b50\u3068\u7121\u6599\u3067\u51fa\u4f1a\u3048\u308b\u3068\u304b\u534a\u7aef\u306a\u3044\\nAndroid\u2192http://t.co/LXN5VMWmuo\\niPhone\u2192http://t.co/1KfexIec9B\\n\u30a8\u30ed\u30e9\u30a4\u30d6\u30c1\u30e3\u30c3\u30c8\u307f\u305f\u3044\u3067\u3084\u3070\u3044w\\nhttp://t.co/5nFk7bzdot\", \"in_reply_to_status_id\": null, \"id\": 489174351543943168, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://www.google.co.jp/\\\" rel=\\\"nofollow\\\">\u5927\u4eba\u30a2\u30d7\u30ea</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/LXN5VMWmuo\", \"indices\": [45, 67], \"expanded_url\": \"http://bit.ly/TmciEi\", \"display_url\": \"bit.ly/TmciEi\"}, {\"url\": \"http://t.co/1KfexIec9B\", \"indices\": [75, 97], \"expanded_url\": \"http://bit.ly/1jNg3rb\", \"display_url\": \"bit.ly/1jNg3rb\"}], \"media\": [{\"source_status_id_str\": \"466747905223561216\", \"expanded_url\": \"http://twitter.com/ero_apuri/status/466747905223561216/photo/1\", \"display_url\": \"pic.twitter.com/5nFk7bzdot\", \"url\": \"http://t.co/5nFk7bzdot\", \"media_url_https\": \"https://pbs.twimg.com/media/Bno4vyQCEAADdMU.jpg\", \"source_status_id\": 466747905223561216, \"id_str\": \"466747904980291584\", \"sizes\": {\"large\": {\"h\": 583, \"resize\": \"fit\", \"w\": 687}, \"small\": {\"h\": 289, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 509, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [116, 138], \"type\": \"photo\", \"id\": 466747904980291584, \"media_url\": \"http://pbs.twimg.com/media/Bno4vyQCEAADdMU.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174351543943168\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2571360157, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478599372024729600/rWCv4Zq3_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 115, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2571360157\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 32470, \"description\": \"\u795e\u7d1a\u30a8\u30ed\u30a2\u30d7\u30ea\u306e\u7d39\u4ecb\u6240\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478599372024729600/rWCv4Zq3_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_GOD_app\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30eaGOD\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 16 17:38:13 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174351514574848, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/rupan3rd1\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af49</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174351514574848\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515115070, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471300294806994944/PCF7gsYY_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1536, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515115070\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3525, \"description\": \"\u30d7\u30ed\u91ce\u7403\u3067\u6d3b\u8e8d\u3057\u3066\u3044\u308b\u9078\u624b\u306e\u753b\u50cf\u3092\u3042\u3052\u3066\u3044\u304d\u307e\u3059\u3002\u30d7\u30ed\u91ce\u7403\u304c\u597d\u304d\u306a\u65b9\u306f\u62e1\u6563\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471300294806994944/PCF7gsYY_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515115070/1405268599\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"puroyakyuu2\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30d7\u30ed\u91ce\u7403\u5927\u597d\u304d\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 10:48:59 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174351346798593, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174351346798593\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2522569740, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/470537356689174528/lHb8l7Jw_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 512, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2522569740\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 791, \"description\": \"Aqua Timez\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u7ba1\u7406\u4eba\u304c\u6b4c\u8a5e\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u6ca2\u5c71\u306e\u540d\u66f2\u3092\u4eca\u4e00\u5ea6\u3001\u6d78\u308a\u307e\u3057\u3087\u3046\uff01\u30d5\u30a1\u30f3\u306e\u65b9\u306f\u5927\u96c6\u5408\u203c\ufe0e\u30d5\u30a9\u30ed\u30d0\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u266a\", \"friends_count\": 1114, \"location\": \"\u8679\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/470537356689174528/lHb8l7Jw_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2522569740/1401020448\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"AquaTimez_song\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Aqua Timez\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun May 25 12:04:20 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174351061581824, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/gMcdDJ\\\" rel=\\\"nofollow\\\">\u6700\u65b0\u30cb\u30e5\u30fc\u30b9.jp\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489174351061581824\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 1, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1272407959, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme13/bg.gif\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487196697567567872/TJ58dXZL_normal.jpeg\", \"profile_sidebar_fill_color\": \"FFFFFF\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 166, \"profile_sidebar_border_color\": \"EEEEEE\", \"id_str\": \"1272407959\", \"profile_background_color\": \"B2DFDA\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 215, \"description\": \"\", \"friends_count\": 144, \"location\": \"\", \"profile_link_color\": \"93A644\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487196697567567872/TJ58dXZL_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1272407959/1404922026\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme13/bg.gif\", \"screen_name\": \"chinar1223\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 745, \"name\": \"\u3061 \u306a \u308a \u3006 \u5ee3 \u7530\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Mar 16 13:56:27 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174350906392577, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/FoRegaro610\\\" rel=\\\"nofollow\\\"> \u7b11\u3048\u308b\u30dd\u30b9\u30bf\u30fc</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174350906392577\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2607149210, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485714175138603008/e6nN0ngT_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 272, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2607149210\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 329, \"description\": \"\u601d\u308f\u305a\u7b11\u3063\u3066\u3057\u307e\u3046\u5546\u5e97\u8857\u306e\u30dd\u30b9\u30bf\u30fc\u3092\u96c6\u3081\u307e\u3057\u305fw\", \"friends_count\": 1979, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485714175138603008/e6nN0ngT_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2607149210/1404638159\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"shouten_poster\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7b11\u3048\u308b\u5546\u5e97\u8857\u30dd\u30b9\u30bf\u30fc\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jul 06 09:09:12 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @onepiecesaikoo: \u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http:/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174350839308290, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2170061892, \"indices\": [3, 18], \"id_str\": \"2170061892\", \"screen_name\": \"onepiecesaikoo\", \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [108, 130], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"source_status_id_str\": \"489174348276588546\", \"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"source_status_id\": 489174348276588546, \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174350839308290\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2177678473, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme11/bg.gif\", \"verified\": false, \"profile_text_color\": \"362720\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467379064525701120/LuzOITqs_normal.jpeg\", \"profile_sidebar_fill_color\": \"E5507E\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 11946, \"profile_sidebar_border_color\": \"CC3366\", \"id_str\": \"2177678473\", \"profile_background_color\": \"FF6699\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 982, \"description\": \"\u304b\u308f\u3044\u3044\u3042\u308b\u3042\u308b\u30cd\u30bf\u3084\u80b2\u5150\u4e2d\u306e\u7b11\u3044\u30cd\u30bf\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u266a\", \"friends_count\": 13129, \"location\": \"\", \"profile_link_color\": \"B40B43\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467379064525701120/LuzOITqs_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2177678473/1383744977\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme11/bg.gif\", \"screen_name\": \"love_ly_baby\", \"lang\": \"ja\", \"profile_background_tile\": true, \"favourites_count\": 0, \"name\": \"\u30d9\u30a4\u30d3\u30fc\u3042\u308b\u3042\u308b\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Nov 06 08:42:17 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ImDylanDauzat: I give up on IPhone 5s voice control \ud83d\ude11\", \"in_reply_to_status_id\": null, \"id\": 489174350772199424, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 853324519, \"indices\": [3, 17], \"id_str\": \"853324519\", \"screen_name\": \"ImDylanDauzat\", \"name\": \"Dylan Dauzat\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 506, \"id_str\": \"489174350772199424\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"I give up on IPhone 5s voice control \ud83d\ude11\", \"in_reply_to_status_id\": null, \"id\": 482274336405852161, \"favorite_count\": 2561, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 506, \"id_str\": \"482274336405852161\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 853324519, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000055890481/99a194c54f761e47ff92609412becda2.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/484233666235621376/l9i9qy9h_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/clxyJLsNFF\", \"indices\": [0, 22], \"expanded_url\": \"http://youtube.com/dylandauzat\", \"display_url\": \"youtube.com/dylandauzat\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 134127, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"853324519\", \"profile_background_color\": \"009999\", \"listed_count\": 258, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 3260, \"description\": \"\u265b YouTube Vlogger - Recording Artist \u265b Taken 11/2/13\", \"friends_count\": 1377, \"location\": \"\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/484233666235621376/l9i9qy9h_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/853324519/1403160987\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000055890481/99a194c54f761e47ff92609412becda2.jpeg\", \"screen_name\": \"ImDylanDauzat\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9804, \"name\": \"Dylan Dauzat\", \"notifications\": false, \"url\": \"http://t.co/clxyJLsNFF\", \"created_at\": \"Sat Sep 29 17:53:07 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Thu Jun 26 21:28:56 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2505218484, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/486928309305896960/mRctVqph.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/489085252334125056/hEQaH0p-_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 532, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"2505218484\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 6, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 2739, \"description\": \"Texas | Im a Guy | 0/6 | 0/4 | 1/12 | 5SOSFAM | Bethany M. Follows me |\", \"friends_count\": 364, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/489085252334125056/hEQaH0p-_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2505218484/1405389925\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/486928309305896960/mRctVqph.jpeg\", \"screen_name\": \"Arnoldlikeso2l\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1339, \"name\": \"PLEASE DYLAN!!\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun May 18 18:46:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174350717669377, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/rupan3rd1\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af48</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174350717669377\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515000772, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/469834722349047808/MYsKOJCk_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1517, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515000772\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3862, \"description\": \"HUNTER\u00d7HUNTER(\u30cf\u30f3\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc)\u306e\u540d\u8a00\u3092\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\u30cf\u30f3\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u304c\u597d\u304d\u306a\u65b9\u306f\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u3046\u308c\u3057\u3044\u3067\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/469834722349047808/MYsKOJCk_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515000772/1405270393\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"hunter21bot\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30cf\u30f3\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u540d\u8a00bot \", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 09:43:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\uff3c(^o^)\uff0f #ohayo #Follow #sougo #iphone #ipad #mobile #followback\", \"in_reply_to_status_id\": null, \"id\": 489174350688305152, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twirobo.com/\\\" rel=\\\"nofollow\\\">twiroboJP</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [17, 23], \"text\": \"ohayo\"}, {\"indices\": [24, 31], \"text\": \"Follow\"}, {\"indices\": [32, 38], \"text\": \"sougo\"}, {\"indices\": [39, 46], \"text\": \"iphone\"}, {\"indices\": [47, 52], \"text\": \"ipad\"}, {\"indices\": [53, 60], \"text\": \"mobile\"}, {\"indices\": [61, 72], \"text\": \"followback\"}], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174350688305152\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 516531618, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/1876860297/twitterico_normal.jpg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/acYEnjUdbS\", \"indices\": [0, 22], \"expanded_url\": \"http://digitalpirate.client.jp\", \"display_url\": \"digitalpirate.client.jp\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/acYEnjUdbS\", \"indices\": [126, 148], \"expanded_url\": \"http://digitalpirate.client.jp\", \"display_url\": \"digitalpirate.client.jp\"}]}}, \"followers_count\": 6089, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"516531618\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 22, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36280, \"description\": \"\u30c7\u30b8\u30bf\u30eb\u30ac\u30b8\u30a7\u30c3\u30c8\u597d\u304d\u306a\u5e97\u9577\u300c\u306a\u304a\u300d\u3067\u3059\u3002\\r\\n\u8da3\u5473\u306fPC\u3001\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u3001\u30b2\u30fc\u30e0\u3001\u30a2\u30cb\u30e1\u3068\u3001\u3084\u3084\u30a4\u30f3\u30c9\u30a2\u6c17\u5473\uff57\u304a\u3059\u3059\u3081\u30a2\u30cb\u30e1\u6559\u3048\u3066\u304f\u3060\u3055\u3044\uff57\u597d\u304d\u306a\u30d6\u30e9\u30f3\u30c9\u306f\u30f4\u30a3\u30f4\u30a3\u30a2\u30f3\u30fb\u30a6\u30a8\u30b9\u30c8\u30a6\u30c3\u30c9\u3067\u3059\u266a\u30a4\u30b1\u3066\u308b\u30c7\u30b8\u30bf\u30eb\u30ac\u30b8\u30a7\u30c3\u30c8\u3092\u305f\u304f\u3055\u3093\u3054\u7d39\u4ecb\u3067\u304d\u305f\u3089\u3068\u601d\u3044\u307e\u3059\uff01http://t.co/acYEnjUdbS\", \"friends_count\": 6380, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/1876860297/twitterico_normal.jpg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"digitalpiratesz\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"digital-pirates\", \"notifications\": false, \"url\": \"http://t.co/acYEnjUdbS\", \"created_at\": \"Tue Mar 06 13:39:43 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174350507945985, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174350507945985\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2493092732, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/466231001375469568/KoYyrxt0_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 556, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2493092732\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 873, \"description\": \"\u30b9\u30e9\u30e0\u30c0\u30f3\u30af\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u7ba1\u7406\u4eba\u304c\u753b\u50cf\u3084\u540d\u8a00\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u71b1\u3044\u5834\u9762\u30fb\u540d\u8a00\u3092\u601d\u3044\u51fa\u3057\u3066\u3001\u65ad\u56fa\u305f\u308b\u6c7a\u610f\u3092\u203c\ufe0e\u30d5\u30a1\u30f3\u306e\u65b9\u306f\u5927\u96c6\u5408\u203c\ufe0e\u30d5\u30a9\u30ed\u30d0\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u266a\", \"friends_count\": 1652, \"location\": \"\u6e58\u5357\u9ad8\u6821\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/466231001375469568/KoYyrxt0_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2493092732/1400500406\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"slamdunk___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 3, \"name\": \"\u30b9\u30e9\u30e0\u30c0\u30f3\u30af \u65ad\u56fa\u540d\u8a00\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 13 14:51:04 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174350461804544, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/otome_game_soku\\\" rel=\\\"nofollow\\\">\u4e59\u5973\u30b2\u30fc\u30e0</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174350461804544\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2539483123, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478572279559770113/26DIskjd_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3444, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2539483123\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 19, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 26246, \"description\": \"\u30a8\u30c3\u30c1\u304c\u697d\u3057\u3044\u3068\u601d\u3048\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u304d\u307e\u3057\u305f\uff57\u82e5\u3044\u3046\u3061\u306b\u8272\u3005\u306a\u7d4c\u9a13\u3092\u3057\u3066\u304a\u304d\u305f\u3044\u306e\u3067\u3001\u76f8\u624b\u3057\u3066\u304f\u308c\u308b\u4eba\u52df\u96c6\u3057\u3066\u3044\u307e\u3059\u2661\u5272\u308a\u5207\u308aOK\u306a\u4eba\u304a\u9858\u3044\u3057\u307e\u3059\u7b11\", \"friends_count\": 1591, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478572279559770113/26DIskjd_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2539483123/1402935674\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"riko_eroaka\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u51db\u5b50\uff20\u30a8\u30ed\u53cb\u52df\u96c6\u4e2d\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 01 12:11:43 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174350184992769, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/EeRegaro610\\\" rel=\\\"nofollow\\\">\u5973\u65ac\u308a\u30c4\u30a4\u30fc\u30c8</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174350184992769\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2598258116, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485475944199503873/Sno9fjwN_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 264, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2598258116\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 330, \"description\": \"\u5df7\u306b\u3088\u304f\u3044\u308b\u30af\u30bd\u5973\u3092\u7247\u3063\u7aef\u304b\u3089\u65ac\u3063\u3066\u3044\u304d\u307e\u3059\u3002\", \"friends_count\": 1924, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485475944199503873/Sno9fjwN_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"bitches_giri\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30af\u30bd\u5973\u65ac\u308a\u30c4\u30a4\u30fc\u30c8\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jul 01 16:50:32 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @onepiecesaikoo: \u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http:/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174350126268417, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/waraitaii\\\" rel=\\\"nofollow\\\">\u3068\u306b\u304b\u304f\u7b11\u3044\u305f\u3044</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2170061892, \"indices\": [3, 18], \"id_str\": \"2170061892\", \"screen_name\": \"onepiecesaikoo\", \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [108, 130], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"source_status_id_str\": \"489174348276588546\", \"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"source_status_id\": 489174348276588546, \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174350126268417\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2168817607, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/468846757451812864/xJ24ZFoj_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7747, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2168817607\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1034, \"description\": \"\u601d\u308f\u305a\u7b11\u3063\u3066\u3057\u307e\u3046\u753b\u50cf\u3001\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u6295\u7a3f\u3057\u307e\u3059\u3002\u65e5\u3005\u306e\u75b2\u308c\u3092\u7b11\u3044\u98db\u3070\u305d\u3046\uff01\", \"friends_count\": 8525, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/468846757451812864/xJ24ZFoj_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2168817607/1386490922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"waraigahitsuyou\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7b11\u308f\u305a\u306b\u306f\u3044\u3089\u308c\u306a\u3044\uff57\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Nov 01 17:35:08 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174349996257280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/rupan3rd1\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af49</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174349996257280\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515095763, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/470210571497783296/Ts6_gkoF_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1635, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515095763\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3816, \"description\": \"\u96fb\u8eca\u306e\u4e2d\u3067\u306e\u3067\u304d\u3053\u3068\u306a\u3069\u306b\u3064\u3044\u3066\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\\r\\n\u5171\u611f\u3057\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/470210571497783296/Ts6_gkoF_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515095763/1405269316\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"densha1bot\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u96fb\u8eca\u306e\u4e2dbot\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 10:28:03 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"sex clip: The pleasures of a tongue and dildo combo #sex #movie #hot #iPhone http://t.co/jXysn0bLrd\", \"in_reply_to_status_id\": null, \"id\": 489174349833064448, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tweetadder.com\\\" rel=\\\"nofollow\\\">TweetAdder v4</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 56], \"text\": \"sex\"}, {\"indices\": [57, 63], \"text\": \"movie\"}, {\"indices\": [64, 68], \"text\": \"hot\"}, {\"indices\": [69, 76], \"text\": \"iPhone\"}], \"urls\": [{\"url\": \"http://t.co/jXysn0bLrd\", \"indices\": [77, 99], \"expanded_url\": \"http://bit.ly/1jRLWEY\", \"display_url\": \"bit.ly/1jRLWEY\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174349833064448\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2582548494, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/480763144394903552/ZPVAUAFG_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2582548494\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 18651, \"description\": \"\", \"friends_count\": 61, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/480763144394903552/ZPVAUAFG_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2582548494/1403457863\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"cfnmsex\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"cfnm sex\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 22 17:21:20 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174349685850113, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174349685850113\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2512924716, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/469144755259973633/K6U7mh4k_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 558, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2512924716\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 691, \"description\": \"NARUTO\u5927\u597d\u304d\u306a\u4eba\u96c6\u5408\u203c\ufe0e\u6700\u7d42\u6c7a\u6226\u304c\u71b1\u3044\u3002\u7686\u3067\u5fdc\u63f4\u3057\u307e\u3057\u3087\u3046\u266a NARUTO\u306e\u540d\u8a00\u96c6\u306b\u3064\u3044\u3066\u767a\u8a00\u3057\u3066\u3044\u304f\u3063\u3066\u3070\u3088\u203c\ufe0e\", \"friends_count\": 868, \"location\": \"\u6728\u306e\u8449\u96a0\u308c\u306e\u91cc\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/469144755259973633/K6U7mh4k_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2512924716/1400719852\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"naruto__bot__\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 2, \"name\": \"NARUTO \u540d\u8a00\u96c6\u3060\u3063\u3066\u3070\u3088\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed May 21 15:50:23 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @SmartClick_EC: Tenemos los mejores precios del mercado!!!\\nCompru\u00e9balo\\nS4 MINI \\nS4\\nS5 \\nIPHONE 5S \\nXPERIA Z1 \\n@dondatosec\", \"in_reply_to_status_id\": null, \"id\": 489174349661110272, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://roundteam.co\\\" rel=\\\"nofollow\\\">RoundTeam</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 1425911738, \"indices\": [3, 17], \"id_str\": \"1425911738\", \"screen_name\": \"SmartClick_EC\", \"name\": \"SmartClick\"}, {\"id\": 615452497, \"indices\": [112, 123], \"id_str\": \"615452497\", \"screen_name\": \"DonDatosEc\", \"name\": \"Mercado de Datos Ec\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 1, \"id_str\": \"489174349661110272\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"Tenemos los mejores precios del mercado!!!\\nCompru\u00e9balo\\nS4 MINI \\nS4\\nS5 \\nIPHONE 5S \\nXPERIA Z1 \\n@dondatosec\", \"in_reply_to_status_id\": null, \"id\": 489174021276459010, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 615452497, \"indices\": [93, 104], \"id_str\": \"615452497\", \"screen_name\": \"DonDatosEc\", \"name\": \"Mercado de Datos Ec\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 1, \"id_str\": \"489174021276459010\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1425911738, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000848061288/1a7396b5fcacd81244c49b19a407393a_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2311, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"1425911738\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 745, \"description\": \"VENTA DE ART\u00cdCULOS VARIOS. ENV\u00cdOS A TODO EL PA\u00cdS. CONTACTOS: WHATSAPP 0991778151 - PIN 7A084EA1\", \"friends_count\": 49, \"location\": \"GUAYAQUIL-ECUADOR\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000848061288/1a7396b5fcacd81244c49b19a407393a_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"SmartClick_EC\", \"lang\": \"es\", \"profile_background_tile\": false, \"favourites_count\": 4, \"name\": \"SmartClick\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 13 16:57:54 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Quito\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:25:49 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": false, \"default_profile_image\": false, \"id\": 1481270780, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3756338116/62dce9d6cf4ee674012e3bbfc09e1f4f_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"https://t.co/ck3G0Y1wpk\", \"indices\": [0, 23], \"expanded_url\": \"https://www.facebook.com/AnunciosEcuProm\", \"display_url\": \"facebook.com/AnunciosEcuProm\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/KogjBDAjCe\", \"indices\": [114, 136], \"expanded_url\": \"http://www.facebook.com/ecu.prom\", \"display_url\": \"facebook.com/ecu.prom\"}]}}, \"followers_count\": 1781, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"1481270780\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 11, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 61594, \"description\": \"Damos #RT Gratis a tus Anuncios en #Ecuador. #Entretenimiento #Turismo #Comercio #Amistad\\r\\nS\u00edguenos en Facebook: http://t.co/KogjBDAjCe\", \"friends_count\": 1956, \"location\": \"Ecuador\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3756338116/62dce9d6cf4ee674012e3bbfc09e1f4f_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"EcuProm\", \"lang\": \"es\", \"profile_background_tile\": false, \"favourites_count\": 131, \"name\": \"Anuncios Gratis EC\", \"notifications\": false, \"url\": \"https://t.co/ck3G0Y1wpk\", \"created_at\": \"Tue Jun 04 03:38:33 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Quito\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174349568430082, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/inthe_skirt\\\" rel=\\\"nofollow\\\">\u30de\u30b9\u30bf\u30fc\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30c4\u30a4\u30c3\u30bf\u30fc</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174349568430082\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2552911350, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479689172664344577/lvERL7ef_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2732, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2552911350\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 16, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 25455, \"description\": \"\u30a8\u30ed\u3044\u5973\u795e\u9054\u306e\u30cf\u30e1\u64ae\u308a\u3084\u81ea\u753b\u64ae\u308a\u3092\u8cbc\u308a\u307e\u3059\u3002\u751f\u3005\u3057\u3044\u30a8\u30ed\u30b9\u3092\u304a\u697d\u3057\u307f\u304f\u3060\u3055\u3044\u2661\", \"friends_count\": 1413, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479689172664344577/lvERL7ef_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2552911350/1403201846\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"camera_ero\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u3044\u81ea\u753b\u64ae\u308a\u30a8\u30ed\u5199\u30e1\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Jun 07 16:39:45 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174349430026240, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/DlRegaro610\\\" rel=\\\"nofollow\\\"> \u75db\u3044\u30cb\u30e5\u30fc\u30b9</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174349430026240\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2594502368, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483173874507329536/TCtXfYuQ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 259, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2594502368\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 1484, \"description\": \"2ch\u3067\u8a71\u984c\u306e\u75db\u3044\u30cb\u30e5\u30fc\u30b9\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\", \"friends_count\": 1982, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483173874507329536/TCtXfYuQ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2594502368/1404032725\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"itai_news_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u75db\u3044\u30cb\u30e5\u30fc\u30b9\u7dcf\u96c6\u7de8\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 29 08:58:30 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @onepiecesaikoo: \u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http:/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174349404852224, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/sugosupoo\\\" rel=\\\"nofollow\\\"> \u51c4\u3059\u304e\u30b9\u30dd\u30fc\u30c4\u52d5\u753b</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2170061892, \"indices\": [3, 18], \"id_str\": \"2170061892\", \"screen_name\": \"onepiecesaikoo\", \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [108, 130], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"source_status_id_str\": \"489174348276588546\", \"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"source_status_id\": 489174348276588546, \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174349404852224\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1699677060, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/475760330325233664/tVS3JnZp_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 8040, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"1699677060\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 776, \"description\": \"\u885d\u6483\u306e\u30b9\u30dd\u30fc\u30c4\u52d5\u753b\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\", \"friends_count\": 8852, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/475760330325233664/tVS3JnZp_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1699677060/1403582332\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"sugosupoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u51c4\u3059\u304e\u30b9\u30dd\u30fc\u30c4\u52d5\u753b\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Aug 25 17:18:56 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174349295783937, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/sccmeigen\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af51</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174349295783937\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515079276, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/470209833266733057/jGcEI3nQ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1692, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515079276\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3644, \"description\": \"\u30b3\u30f3\u30d3\u30cb\u3042\u308b\u3042\u308b\u306b\u3064\u3044\u3066\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\\r\\n\u5171\u611f\u3057\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/470209833266733057/jGcEI3nQ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515079276/1405271010\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"konbiniabot\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30b3\u30f3\u30d3\u30cb\u3042\u308b\u3042\u3042\u308bbot\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 10:26:58 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174349031555072, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/1u0xXfY\\\" rel=\\\"nofollow\\\">\u885d\u6483\u203c\u4e16\u754c\u306e\u30d5\u30a1\u30a4\u30eb\u2606\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489174349031555072\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 1, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2425553323, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/464812885089472512/selhiY-C_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 192, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2425553323\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 433, \"description\": \"\", \"friends_count\": 189, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/464812885089472512/selhiY-C_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2425553323/1403825600\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tomoyayad\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 8, \"name\": \"tomoyadesu\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Apr 03 12:22:31 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @Forbes: Apple & IBM announced a partnership to build enterprise apps designed exclusively for iPhones & iPads: http://t.co/9tprDfflnQ\", \"in_reply_to_status_id\": null, \"id\": 489174348843212800, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 91478624, \"indices\": [3, 10], \"id_str\": \"91478624\", \"screen_name\": \"Forbes\", \"name\": \"Forbes\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/9tprDfflnQ\", \"indices\": [123, 145], \"expanded_url\": \"http://onforb.es/1n7XgOE\", \"display_url\": \"onforb.es/1n7XgOE\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 206, \"id_str\": \"489174348843212800\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"Apple & IBM announced a partnership to build enterprise apps designed exclusively for iPhones & iPads: http://t.co/9tprDfflnQ\", \"in_reply_to_status_id\": null, \"id\": 489151795445235713, \"favorite_count\": 81, \"source\": \"<a href=\\\"http://www.socialflow.com\\\" rel=\\\"nofollow\\\">SocialFlow</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/9tprDfflnQ\", \"indices\": [111, 133], \"expanded_url\": \"http://onforb.es/1n7XgOE\", \"display_url\": \"onforb.es/1n7XgOE\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 206, \"id_str\": \"489151795445235713\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 91478624, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/457626324/twitter_background_dark3.png\", \"verified\": true, \"profile_text_color\": \"000000\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/1824717932/Forbes_Icon_normal.png\", \"profile_sidebar_fill_color\": \"F7F7F7\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/KH6EtekF5q\", \"indices\": [0, 22], \"expanded_url\": \"http://forbes.com\", \"display_url\": \"forbes.com\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/iVGiXAHX\", \"indices\": [28, 48], \"expanded_url\": \"http://Forbes.com\", \"display_url\": \"Forbes.com\"}]}}, \"followers_count\": 3316393, \"profile_sidebar_border_color\": \"CCCCCC\", \"id_str\": \"91478624\", \"profile_background_color\": \"072250\", \"listed_count\": 33086, \"is_translation_enabled\": true, \"utc_offset\": -14400, \"statuses_count\": 66012, \"description\": \"Official Twitter account of http://t.co/iVGiXAHX, homepage for the world's business leaders.\", \"friends_count\": 3939, \"location\": \"New York, NY\", \"profile_link_color\": \"072250\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/1824717932/Forbes_Icon_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/91478624/1400096856\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/457626324/twitter_background_dark3.png\", \"screen_name\": \"Forbes\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1554, \"name\": \"Forbes\", \"notifications\": false, \"url\": \"http://t.co/KH6EtekF5q\", \"created_at\": \"Sat Nov 21 02:09:57 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Eastern Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 20:57:30 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 37814700, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/68440867/fondotwt.jpg\", \"verified\": false, \"profile_text_color\": \"000000\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481976012327362560/jsMTdQRr_normal.jpeg\", \"profile_sidebar_fill_color\": \"FF9900\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 121, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"37814700\", \"profile_background_color\": \"000000\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 1790, \"description\": \"Cada sue\u00f1o que usted deja atr\u00e1s, es un pedazo de su futuro que deja de existir. - Steve Jobs\", \"friends_count\": 58, \"location\": \"\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481976012327362560/jsMTdQRr_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/37814700/1405444850\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/68440867/fondotwt.jpg\", \"screen_name\": \"lansaga\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 31, \"name\": \"Larry S\u00e1nchez\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 05 01:02:32 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Bogota\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174348838617088, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174348838617088\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2496366686, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/466935754266927105/Fc1I9Yfu_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 619, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2496366686\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 726, \"description\": \"\u30c7\u30a3\u30ba\u30cb\u30fc\u6620\u753b\u3001\u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\u306b\u3064\u3044\u3066\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u266a \u7686\u306e\u5fc3\u304c\u3088\u308a\u6e29\u304b\u304f\u3001\u5143\u6c17\u306b\u306a\u3063\u3066\u304f\u308c\u308b\u305d\u306e\u65e5\u307e\u3067\u3002\u5c11\u3057\u3082\u5bd2\u304f\u306a\u3044\u308f\u301c\u266a\", \"friends_count\": 1772, \"location\": \"\u96ea\u306e\u56fd\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/466935754266927105/Fc1I9Yfu_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2496366686/1400335113\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ana_yuki_zyouou\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 15 13:32:50 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174348813438976, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/storage_idea\\\" rel=\\\"nofollow\\\">\u7d20\u6575\u53ce\u7d0d\u8853\u266a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174348813438976\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2598891992, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486740402716688384/kqEz1G-H_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1263, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2598891992\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 7578, \"description\": \"AV\u5973\u512a\u306b\u61a7\u308c\u308b\uff01\u6c17\u306b\u5165\u3063\u305f\u5973\u512a\u3055\u3093\u306fRT\u3057\u3066\u3042\u3052\u3066\u306d\u2661\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3082\u5927\u6b53\u8fce\u3060\u3088\u30fd(*\u00b4\u2200\uff40)\uff89\", \"friends_count\": 1118, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486740402716688384/kqEz1G-H_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"jyoyu_av\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"AV\u5973\u512a\uff20\u306a\u308a\u305f\u3044\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Jul 02 01:49:40 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174348524044288, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/rupan3rd1\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af48</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174348524044288\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515100472, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/470921468767789057/LuUrJlwD_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1644, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515100472\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3813, \"description\": \"\u5d50\u306e\u753b\u50cf\u306a\u3069\u3092\u306e\u305b\u3066\u3044\u304d\u307e\u3059\u3002 \u597d\u611f\u3092\u3082\u3063\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/470921468767789057/LuUrJlwD_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515100472/1405269906\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"arashigazou1\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5d50\u304b\u3063\u3053\u3044\u3044\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 10:41:16 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u7121\u6599\u30ac\u30c1\u30e3\u304d\u305f\uff5e\uff01\\n\u3053\u3093\u306a\u7c21\u5358\u306b\u3082\u3089\u3048\u308b\u306e\uff1f\uff57\\n\\n\u4eca\u306f\u3084\u308a\u306e\u30ef\u30f3\u30d4\u30fc\u30b9\u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u306e\\n\u30ac\u30c1\u30e3\uff15\u4e07\u5186\u5206\u3092\u7121\u6599\u3067\u914d\u3063\u3066\u308b\u30a2\u30d7\u30ea\u30e4\u30d0\u3044\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u2192 http://t.co/MwvdXk17pQ\\n. http://t.co/rFR7vvE03E\", \"in_reply_to_status_id\": null, \"id\": 489174348276588546, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/okannetawarosu\\\" rel=\\\"nofollow\\\"> \u304a\u304b\u3093\u30cd\u30bf \u30ef\u30ed\u30b9\uff57\uff57</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/MwvdXk17pQ\", \"indices\": [88, 110], \"expanded_url\": \"http://k4wu.com/n147fl/\", \"display_url\": \"k4wu.com/n147fl/\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/onepiecesaikoo/status/489174348276588546/photo/1\", \"display_url\": \"pic.twitter.com/rFR7vvE03E\", \"url\": \"http://t.co/rFR7vvE03E\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\", \"id_str\": \"489174348087848961\", \"sizes\": {\"large\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"small\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"medium\": {\"h\": 250, \"resize\": \"fit\", \"w\": 249}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174348087848961, \"media_url\": \"http://pbs.twimg.com/media/BsnlelMCcAEOt-B.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 84, \"id_str\": \"489174348276588546\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2170061892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 7241, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2170061892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2006, \"description\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\uff01\", \"friends_count\": 7968, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000682813243/3f267c36d445c6b99351c7b5581f58d6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2170061892/1383394754\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"onepiecesaikoo\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ef\u30f3\u30d4\u30fc\u30b9\u6700\u9ad8\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Nov 02 11:16:20 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Conozco gente que teclea 'sent from my iphone'.\", \"in_reply_to_status_id\": null, \"id\": 489174348264001537, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174348264001537\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 29080596, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/634908576/zki8oz9nydq6uzjrc9qh.jpeg\", \"verified\": false, \"profile_text_color\": \"010D0F\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/480715139742576640/MSvo2V5i_normal.jpeg\", \"profile_sidebar_fill_color\": \"F7F7F4\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/y3tBVon20I\", \"indices\": [0, 22], \"expanded_url\": \"http://amezcuabernal.tumblr.com\", \"display_url\": \"amezcuabernal.tumblr.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 536, \"profile_sidebar_border_color\": \"F5EBEF\", \"id_str\": \"29080596\", \"profile_background_color\": \"FAFAF2\", \"listed_count\": 20, \"is_translation_enabled\": false, \"utc_offset\": -21600, \"statuses_count\": 10598, \"description\": \"Me caen mal muchas personas. @sicfanzine\", \"friends_count\": 1098, \"location\": \"M\u00e9xico, DF. \", \"profile_link_color\": \"141403\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/480715139742576640/MSvo2V5i_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/29080596/1366613128\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/634908576/zki8oz9nydq6uzjrc9qh.jpeg\", \"screen_name\": \"chinampa\", \"lang\": \"es\", \"profile_background_tile\": false, \"favourites_count\": 476, \"name\": \"Melissa\", \"notifications\": false, \"url\": \"http://t.co/y3tBVon20I\", \"created_at\": \"Sun Apr 05 22:19:46 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Mountain Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"smh everytime I look at my cracked iPhone http://t.co/wkYXHLVAXp\", \"in_reply_to_status_id\": null, \"id\": 489174348230438912, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/#!/download/ipad\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [], \"media\": [{\"expanded_url\": \"http://twitter.com/MrDaniel_Austin/status/489174348230438912/photo/1\", \"display_url\": \"pic.twitter.com/wkYXHLVAXp\", \"url\": \"http://t.co/wkYXHLVAXp\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleXjIYAAdjcC.jpg\", \"id_str\": \"489174344426610688\", \"sizes\": {\"small\": {\"h\": 279, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 480, \"resize\": \"fit\", \"w\": 584}, \"medium\": {\"h\": 480, \"resize\": \"fit\", \"w\": 584}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [42, 64], \"type\": \"photo\", \"id\": 489174344426610688, \"media_url\": \"http://pbs.twimg.com/media/BsnleXjIYAAdjcC.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174348230438912\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 354153453, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/570342314/s2rv6xd09991bruxh3qi.jpeg\", \"verified\": false, \"profile_text_color\": \"634047\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/472204750650228736/oIcB1jow_normal.jpeg\", \"profile_sidebar_fill_color\": \"F5EBF5\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1018, \"profile_sidebar_border_color\": \"D3D2CF\", \"id_str\": \"354153453\", \"profile_background_color\": \"EDECE9\", \"listed_count\": 5, \"is_translation_enabled\": false, \"utc_offset\": -36000, \"statuses_count\": 68947, \"description\": \"Little Hallway Lover\\n\\n IG: @boonecancun\", \"friends_count\": 952, \"location\": \"\", \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/472204750650228736/oIcB1jow_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/354153453/1383617660\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/570342314/s2rv6xd09991bruxh3qi.jpeg\", \"screen_name\": \"MrDaniel_Austin\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 350, \"name\": \"Puff Danny\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Aug 13 06:41:24 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Hawaii\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174347978792960, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/onepiece_i_fan\\\" rel=\\\"nofollow\\\">\u3064\u3044\u3063\u305f\u30fc\u304c\u5927\u597d\u304d\uff01</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174347978792960\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2603546485, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486745556593545217/kkJ9TWP7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1719, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2603546485\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 6, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 7644, \"description\": \"\u6bce\u65e5\u30e0\u30e9\u30e0\u30e9\u2661\u30a8\u30c3\u30c1\u5927\u597d\u304d\u306a\u4e59\u5973\u306e\u30a8\u30ed\u57a2\u3067\u3059\uff57\u30bb\u30d5\u30ec\u307b\u3057\u3044\u30fc\uff1e\uff1c\uff1bRT\u3057\u3066\u304f\u308c\u305f\u3089\u8208\u596e\u3059\u308b\u266a\", \"friends_count\": 1114, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486745556593545217/kkJ9TWP7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2603546485/1404884208\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"sehure_hoshi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"H\u5927\u597d\u304d\uff20\u30bb\u30d5\u30ec\u52df\u96c6\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jul 04 13:48:45 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\uf8ff\u30b9\u30da\u30c3\u30af\u3001\u30d5\u30a1\u30df\u30f3\u98a8\u30c7\u30b6\u30a4\u30f3\u306eiPhone 5s\uff0f5\u7528\u30ac\u30e9\u30b9\u88fd\u6db2\u6676\u4fdd\u8b77\u30d5\u30a3\u30eb\u30e0\u3092\u767a\u58f2 | ITmedia http://t.co/iFFNKjlSbD | GNews Feeds\", \"in_reply_to_status_id\": null, \"id\": 489174347899494401, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://ifttt.com\\\" rel=\\\"nofollow\\\">IFTTT</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/iFFNKjlSbD\", \"indices\": [54, 76], \"expanded_url\": \"http://bit.ly/1slmbjK\", \"display_url\": \"bit.ly/1slmbjK\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174347899494401\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 75231172, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/101004808/shutterstock_22361452.jpg\", \"verified\": false, \"profile_text_color\": \"3E4415\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/915456386/TweetLandPhoto_normal.jpg\", \"profile_sidebar_fill_color\": \"99CC33\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 254, \"profile_sidebar_border_color\": \"829D5E\", \"id_str\": \"75231172\", \"profile_background_color\": \"352726\", \"listed_count\": 11, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 236886, \"description\": \"sunnycloudy01\u306fGoogle\u3068Yahoo!Pipes\u3068Dlvr.it\u3092\u5229\u7528\u3057\u3066Feed\u3092\u4f7f\u3063\u3066\u3001Apple\u3001\u96fb\u5b50\u66f8\u7c4d\u3001WiMax\u3001lifehack\u306a\u3069\u306e\u60c5\u5831\u3092\u81ea\u52d5\u3067\u6d41\u3057\u3066\u3044\u307e\u3059\u3002\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/915456386/TweetLandPhoto_normal.jpg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/101004808/shutterstock_22361452.jpg\", \"screen_name\": \"sunnycloudy01\", \"lang\": \"ja\", \"profile_background_tile\": true, \"favourites_count\": 4, \"name\": \"sunnycloudy\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Sep 18 08:13:08 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Osaka\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174347857154049, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174347857154049\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2509716283, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/468671165255270400/YyHIuZ8r_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 641, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2509716283\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 702, \"description\": \"\u4e16\u754c\u306e\u7f8e\u4eba\u3055\u3093\u3092\u767a\u4fe1\u3057\u307e\u3059\u3002\u7dba\u9e97\u306a\u7f8e\u4eba\u3055\u3093\u306b\u7652\u3055\u308c\u3066\u4e0b\u3055\u3044\u3002\", \"friends_count\": 881, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/468671165255270400/YyHIuZ8r_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2509716283/1400574904\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"bizinn_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 13, \"name\": \"\u7f8e\u4eba\u5929\u56fd\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 20 08:22:55 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"iphone 4s for sell\\nnot cracked nor damaged\", \"in_reply_to_status_id\": null, \"id\": 489174347790426112, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174347790426112\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 169339303, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/784601058/fed47438c75d5d6722696a12b6c433f3.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486344064833318914/duaCCxXJ_normal.jpeg\", \"profile_sidebar_fill_color\": \"E6F6F9\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1054, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"169339303\", \"profile_background_color\": \"FF6699\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 55602, \"description\": \"she who waits for her soldier's return.\", \"friends_count\": 1079, \"location\": \"\", \"profile_link_color\": \"B40B43\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486344064833318914/duaCCxXJ_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/784601058/fed47438c75d5d6722696a12b6c433f3.jpeg\", \"screen_name\": \"ave_maraa\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 472, \"name\": \"\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 22 03:06:58 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Quito\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"'Full moon rising over Cardiff Bay'.\\nMade, processed, and edited on iPhone and iPad. What a world we live in! http://t.co/ufg8blforh\", \"in_reply_to_status_id\": null, \"id\": 489174347492630528, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://www.apple.com\\\" rel=\\\"nofollow\\\">iOS</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [], \"media\": [{\"expanded_url\": \"http://twitter.com/MarineImage/status/489174347492630528/photo/1\", \"display_url\": \"pic.twitter.com/ufg8blforh\", \"url\": \"http://t.co/ufg8blforh\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlehcIgAA-gU9.jpg\", \"id_str\": \"489174347081613312\", \"sizes\": {\"large\": {\"h\": 404, \"resize\": \"fit\", \"w\": 1024}, \"small\": {\"h\": 134, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 236, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [110, 132], \"type\": \"photo\", \"id\": 489174347081613312, \"media_url\": \"http://pbs.twimg.com/media/BsnlehcIgAA-gU9.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174347492630528\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 601927900, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/2287292878/an5fhaqnfpiq84ves1tz_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/L0IJpsSmZO\", \"indices\": [0, 22], \"expanded_url\": \"http://MarineImage.com\", \"display_url\": \"MarineImage.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 42, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"601927900\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 3600, \"statuses_count\": 300, \"description\": \"Photographer. Passionate about Boats, Sea, Photography (and Apple'y bits...)\", \"friends_count\": 97, \"location\": \"Penarth by the Severn Sea\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/2287292878/an5fhaqnfpiq84ves1tz_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/601927900/1398957033\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"MarineImage\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"name\": \"Jonny Tilney\", \"notifications\": false, \"url\": \"http://t.co/L0IJpsSmZO\", \"created_at\": \"Thu Jun 07 14:39:36 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"London\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174347345436673, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/konanmeigen\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af33</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174347345436673\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515324134, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478889829975863296/0u2YwPTc_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1800, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515324134\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2405, \"description\": \"\u8133\u30c8\u30ec\u3067\u304d\u308b\u3088\u3046\u306a\u3053\u3068\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478889829975863296/0u2YwPTc_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515324134/1405336905\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"noutore1\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u8133\u30c8\u30ec\u3057\u307e\u3057\u3087\u3046\uff01\uff01\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 12:34:11 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @_ThatsIt: Who iPhone's not cracked?

\ud83d\ude02\", \"in_reply_to_status_id\": null, \"id\": 489174347270328320, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2335240088, \"indices\": [3, 12], \"id_str\": \"2335240088\", \"screen_name\": \"_ThatsIt\", \"name\": \"\u2600KoolaidOvaThotz\u2600\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 372, \"id_str\": \"489174347270328320\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"Who iPhone's not cracked? \ud83d\ude02\", \"in_reply_to_status_id\": null, \"id\": 489124696143572993, \"favorite_count\": 119, \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"retweeted\": false, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [-76.9010033, 38.9039911]}, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 372, \"id_str\": \"489124696143572993\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2335240088, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/445635963050414081/YYpIXLev.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/432530908453683201/BBeVz68g_normal.jpeg\", \"profile_sidebar_fill_color\": \"EADEAA\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/jAOrpbKmQn\", \"indices\": [0, 22], \"expanded_url\": \"http://www.RichKidz.com\", \"display_url\": \"RichKidz.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 18695, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"2335240088\", \"profile_background_color\": \"8B542B\", \"listed_count\": 21, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 29169, \"description\": \"You can't lose what you never had, you can't keep what's not yours, and you can't hold on to something that doesn't want to stay.\", \"friends_count\": 14411, \"location\": \"\u2708 Freeport,Bahamas \u2708\", \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/432530908453683201/BBeVz68g_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2335240088/1392265420\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/445635963050414081/YYpIXLev.jpeg\", \"screen_name\": \"_ThatsIt\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 7093, \"name\": \"\u2600KoolaidOvaThotz\u2600\", \"notifications\": false, \"url\": \"http://t.co/jAOrpbKmQn\", \"created_at\": \"Sun Feb 09 15:02:35 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Eastern Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": {\"type\": \"Point\", \"coordinates\": [38.9039911, -76.9010033]}, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 19:09:49 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": {\"country_code\": \"US\", \"url\": \"https://api.twitter.com/1.1/geo/id/dea1eac2d7ef8878.json\", \"country\": \"United States\", \"place_type\": \"admin\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[-79.487651, 37.886607], [-74.986286, 37.886607], [-74.986286, 39.723622], [-79.487651, 39.723622]]]}, \"contained_within\": [], \"full_name\": \"Maryland, USA\", \"attributes\": {}, \"id\": \"dea1eac2d7ef8878\", \"name\": \"Maryland\"}, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": false, \"default_profile_image\": false, \"id\": 595068245, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000175398463/LAfVmV1o.jpeg\", \"verified\": false, \"profile_text_color\": \"570157\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/489082633205592064/bo-bYafb_normal.jpeg\", \"profile_sidebar_fill_color\": \"777777\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/5cE5GInCEE\", \"indices\": [0, 22], \"expanded_url\": \"http://www.facebook.com/LeSpeare\", \"display_url\": \"facebook.com/LeSpeare\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 15791, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"595068245\", \"profile_background_color\": \"000000\", \"listed_count\": 20, \"is_translation_enabled\": false, \"utc_offset\": -25200, \"statuses_count\": 30906, \"description\": \"\u275di'm rude & i like pussy but idgaf\u275e\", \"friends_count\": 14463, \"location\": \"\", \"profile_link_color\": \"646666\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/489082633205592064/bo-bYafb_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/595068245/1405459648\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000175398463/LAfVmV1o.jpeg\", \"screen_name\": \"i8yourhoe_\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9292, \"name\": \"rude'ass\", \"notifications\": false, \"url\": \"http://t.co/5cE5GInCEE\", \"created_at\": \"Thu May 31 01:36:20 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Arizona\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174347236405248, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/gal_mizugi\\\" rel=\\\"nofollow\\\">gal_mizugi</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174347236405248\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2563310462, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/480104993593114624/lLiL1ha1_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3228, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2563310462\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 17, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 24352, \"description\": \"\u30ae\u30e3\u30eb\u5927\u597d\u304d\u2661\u6c34\u7740\uff06\u4e0b\u7740\u304c\u5927\u597d\u304d\u2661\u3068\u306b\u304b\u304f\u3042\u3052\u3042\u3052\uff57\", \"friends_count\": 1796, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/480104993593114624/lLiL1ha1_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2563310462/1403301013\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"gal_mizugi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u2661\u6c34\u7740\u30ae\u30e3\u30eb\u3067\u3042\u3052\u3042\u3052\u2661\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jun 12 12:25:14 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"But my iPhone battery life is like ... A \ud83d\udcaf to 0 niggga, real quick.\", \"in_reply_to_status_id\": null, \"id\": 489174347190652929, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174347190652929\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 790196258, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/663123909/f8rjw0wjz575nb5r6xnx.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488787097549946880/or0uWn5C_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 300, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"790196258\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": -10800, \"statuses_count\": 9838, \"description\": \"Never beg anyone, never trust anyone, and never expect anything from anyone\", \"friends_count\": 246, \"location\": \"NC\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488787097549946880/or0uWn5C_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/790196258/1405371203\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/663123909/f8rjw0wjz575nb5r6xnx.jpeg\", \"screen_name\": \"jaahzmean\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 3892, \"name\": \"Jassamine Lambert\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Aug 29 21:34:24 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Atlantic Time (Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174347152494592, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174347152494592\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2509752528, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/468675899924049921/zIbXSqcB_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 645, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2509752528\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 702, \"description\": \"\u9032\u6483\u306e\u5de8\u4eba\u306b\u95a2\u3059\u308b\u9762\u767d\u3044\u30cd\u30bf\u3084\u753b\u50cf\u3001\u60c5\u5831\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u5de8\u4eba\u3092\u99c6\u9010\u3059\u308b\u305d\u306e\u65e5\u307e\u3067\u203c\ufe0e\", \"friends_count\": 1166, \"location\": \"\u8abf\u67fb\u5175\u56e3\u99d0\u5c6f\u5730\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/468675899924049921/zIbXSqcB_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2509752528/1400576041\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"sinngeki_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u9032\u6483\u306e\u5de8\u4eba \u5fdc\u63f4\u5175\u56e3\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 20 08:48:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"mariana bonilla tiene en su iphone una carpeta llamada \\\"Harry\\\" y tiene puras fotos de Harry \\n\\nJAJAJJkgkaajJAJAJAJajajaJjaJ RE OBSESIVA ELLA\", \"in_reply_to_status_id\": null, \"id\": 489174347127726080, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174347127726080\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2511656056, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487761818375315456/M9IUQWNk_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 532, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2511656056\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 19, \"is_translation_enabled\": false, \"utc_offset\": -16200, \"statuses_count\": 9744, \"description\": \"one direction es el aire que respiro\", \"friends_count\": 337, \"location\": \"#TE4MARRECH4$\", \"profile_link_color\": \"322E33\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487761818375315456/M9IUQWNk_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2511656056/1405385375\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"VZL4RRECH4\", \"lang\": \"es\", \"profile_background_tile\": false, \"favourites_count\": 1034, \"name\": \"\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Apr 27 02:28:51 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174347068633088, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9\u2605\u3000\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489174347068633088\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 1, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2582402551, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486178544465104896/aCPkkII0_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 215, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2582402551\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 460, \"description\": \"\u5ca1\u5c71\u5de5\u696d \u8e74\u7403 11 \u7dca\u5f35\u611f\", \"friends_count\": 271, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486178544465104896/aCPkkII0_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"MMsoccerMM0120\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 382, \"name\": \"M\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 22 15:11:18 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174346888278016, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/GuRegaro610\\\" rel=\\\"nofollow\\\"> \u5927\u8feb\u534a\u7aef\u306a\u3044</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174346888278016\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2615495900, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487228263538765826/vJOITeHW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 257, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2615495900\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 201, \"description\": \"\u3010\u30b5\u30c3\u30ab\u30fc\u3011\u304b\u3089\u3010\u65e5\u5e38\u306e\u51fa\u6765\u4e8b\u3011\u307e\u3067\u534a\u7aef\u7121\u3044\u3068\u601d\u3063\u305f\u3053\u3068\u3092\u3064\u3076\u3084\u304d\u307e\u3059\uff01 \u30b5\u30c3\u30ab\u30fc\u304c\u5927\u597d\u304d\u3067\u3059\uff01\uff01\u534a\u7aef\u7121\u3044\u3063\u3066\uff01\uff01\", \"friends_count\": 1983, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487228263538765826/vJOITeHW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2615495900/1404999812\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"hanpanai__\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5927\u8feb\u534a\u7aef\u306a\u3044\u3063\u3066\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 10 13:31:39 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174346569502720, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/rupan3rd1\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af47</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174346569502720\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515090016, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/470410102504038400/sSVQhPXo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1719, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515090016\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3831, \"description\": \"\u30c7\u30a3\u30ba\u30cb\u30fc\u95a2\u4fc2\u306b\u3064\u3044\u3066\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002 \u5171\u611f\u3057\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/470410102504038400/sSVQhPXo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515090016/1405269798\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"disney11bot\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30c7\u30a3\u30ba\u30cb\u30fcbot\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 10:32:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174346464628736, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/storage_idea\\\" rel=\\\"nofollow\\\">\u7d20\u6575\u53ce\u7d0d\u8853\u266a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174346464628736\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2601666330, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486742395531165696/8H1ns0zP_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1494, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2601666330\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 7651, \"description\": \"\u4eca\u65e5\u4f55\u98df\u3079\u3088\u3046\u304b\u8ff7\u3063\u3066\u308b\u30bd\u30b3\u306e\u3042\u306a\u305f\uff01\u79c1\u3092\u98df\u3079\u3066\u3063\u3066\u2661\u306a\u3093\u3061\u3063\u3066\u2661\", \"friends_count\": 1124, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486742395531165696/8H1ns0zP_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2601666330/1404883578\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"hentai_mari\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u307e\u308a\uff20\u30e0\u30e9\u30e0\u30e9\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 03 13:39:21 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Australia 77. The Best of Kylie Minogue - Kylie Minogue http://t.co/qiNQYV9PPB #Music #iTunes #iPhone #Apple\", \"in_reply_to_status_id\": null, \"id\": 489174346426900481, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://blog.77jp.net\\\" rel=\\\"nofollow\\\">iTunes Top Albums</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 85], \"text\": \"Music\"}, {\"indices\": [86, 93], \"text\": \"iTunes\"}, {\"indices\": [94, 101], \"text\": \"iPhone\"}, {\"indices\": [102, 108], \"text\": \"Apple\"}], \"urls\": [{\"url\": \"http://t.co/qiNQYV9PPB\", \"indices\": [56, 78], \"expanded_url\": \"http://tinyurl.com/kulpq8g\", \"display_url\": \"tinyurl.com/kulpq8g\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174346426900481\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2464615196, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/460043717273858049/5TkZtAPL_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/BIIZY2zulT\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/1mMfen3\", \"display_url\": \"j.mp/1mMfen3\"}, {\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [132, 154], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}}, \"followers_count\": 186, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2464615196\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 8, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 53572, \"description\": \"http://t.co/BIIZY2zulT Top AlbumSongs iTunes Store. United States, China, Korea, United Kingdom, France, Australia, Germany, Japan, http://t.co/UBaFeqTc4O\", \"friends_count\": 16, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/460043717273858049/5TkZtAPL_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"mitarank\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Top 100 Album Songs\", \"notifications\": false, \"url\": \"http://t.co/UBaFeqTc4O\", \"created_at\": \"Sat Apr 26 13:11:22 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174346393346048, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174346393346048\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2524530066, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/470853996660264960/0RFk8eNr_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 668, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2524530066\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 857, \"description\": \"BUMP OF CHICKEN(bot)\u3088\u308a\u6b4c\u8a5e\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u6c17\u306b\u3044\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u30fbRT\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 1233, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/470853996660264960/0RFk8eNr_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2524530066/1401160764\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"BUMPOFCHICKEbot\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"BUMP OF CHICKEN\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 26 08:53:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174346150080512, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/GiRegaro610\\\" rel=\\\"nofollow\\\">\u7d76\u54c1\u30d1\u30f3\u30b1\u30fc\u30ad\u5c4b\u3055\u3093</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174346150080512\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2614581702, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487055639697317888/31GxMmf6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 279, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2614581702\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 247, \"description\": \"\u30d1\u30f3\u30b1\u30fc\u30ad\u597d\u304d\u306a\u3089\u4e00\u5ea6\u306f\u884c\u304d\u305f\u3044\u3068\u3063\u3066\u304a\u304d\u306e\u30d1\u30f3\u30b1\u30fc\u30ad\u5c4b\u3092\u7d39\u4ecb\u3057\u307e\u3059\u2665\ufe0e\u884c\u304d\u305f\u304f\u306a\u3063\u305f\u3089RT\uff01\", \"friends_count\": 1891, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487055639697317888/31GxMmf6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2614581702/1404958180\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"pancake_love2\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u7d76\u54c1\u3011\u4e00\u5ea6\u306f\u884c\u304d\u305f\u3044\u30d1\u30f3\u30b1\u30fc\u30ad\u5c4b\u3055\u3093\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 10 02:02:24 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u30e2\u30a4\uff01iPhone\u304b\u3089\u30ad\u30e3\u30b9\u914d\u4fe1\u4e2d - http://t.co/ApnXdkEyVI\", \"in_reply_to_status_id\": null, \"id\": 489174345864851456, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitcasting.tv/\\\" rel=\\\"nofollow\\\">TwitCasting</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/ApnXdkEyVI\", \"indices\": [20, 42], \"expanded_url\": \"http://moi.st/4cb3cac\", \"display_url\": \"moi.st/4cb3cac\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174345864851456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2410473594, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486669902913077249/ys34GeZ-_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 32, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2410473594\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 253, \"description\": \"\u30d0\u30ec\u30fc\u90e8\u3001 \u30dd\u30b8\u30b7\u30e7\u30f3 \u30bb\u30c3\u30bf\u30fc \u4eca17\u6b73\u3001 \u4eca\u5e74\u306718\u6b73\", \"friends_count\": 35, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486669902913077249/ys34GeZ-_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2410473594/1404112770\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"akkun728\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 1, \"name\": \"\u3042\u3063\u304f\u3093\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Mar 25 07:56:19 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174345759981568, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/yahootie3\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af19</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174345759981568\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515158589, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471309638244110336/9g0frg43_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1769, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515158589\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3670, \"description\": \"\u3042\u306e\u3086\u308b\u30ad\u30e3\u30e9\u304c\u30b3\u30ef\u304f\u306a\u3063\u3066\u307e\u3059\u3002\\r\\n\u304a\u3082\u3057\u308d\u304b\u3063\u305f\u308a\u3001\u3053\u308f\u304b\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471309638244110336/9g0frg43_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515158589/1405268779\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kowaiyu2\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30b3\u30ef\u30fc\u30a4\u3086\u308b\u30ad\u30e3\u30e9\u9054\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 10:59:18 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174345676099584, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/onepiece_i_fan\\\" rel=\\\"nofollow\\\">\u3064\u3044\u3063\u305f\u30fc\u304c\u5927\u597d\u304d\uff01</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174345676099584\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578912868, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481101521824649216/MxMAtXYV_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3643, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578912868\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 16, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 21562, \"description\": \"\u5909\u614b\u57a2\u4f5c\u3063\u3061\u3083\u3044\u307e\u3057\u305f\uff57\u3048\u3063\u3061\u306a\u5199\u30e1\u30a2\u30c3\u30d7\u3057\u3066\u308b\u306e\u3067\u3001\u8208\u596e\u3057\u3061\u3083\u3063\u305f\u3089RT\u3088\u308d\u3057\u304f\u306d\u2661\u307f\u3093\u306a\u304c\u559c\u3093\u3067\u304f\u308c\u308b\u3088\u3046\u306a\u3089\u30c9\u30f3\u30c9\u30f3\u30b5\u30fc\u30d3\u30b9\u3057\u3066\u3044\u304f\u3088\uff57\", \"friends_count\": 1195, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481101521824649216/MxMAtXYV_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578912868/1403538213\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"aya_h_hentai\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f69\uff20\u30bb\u30d5\u30ec\u52df\u96c6\u4e2d\uff20\u5909\u614b\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 16:18:06 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174345596424192, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174345596424192\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2517853388, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/469847997241495552/FU9KBmma_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 675, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2517853388\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 878, \"description\": \"YUI(bot)\u3088\u308a\u753b\u50cf\u3084\u6b4c\u8a5e\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002YUI\u304c\u30d5\u30e9\u30ef\u30d5\u30e9\u30ef\u30fc\u304c\u5927\u597d\u304d\u306a\u4eba\u306f\u96c6\u307e\u308c\u30fc\u203c\ufe0e\u30a2\u30c7\u30e5\u30fc\u3089\u5927\u6b53\u8fce\u3002 \u6c17\u306b\u5165\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u30fbRT\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u30a2\u30c7\u30e5\u30fc\", \"friends_count\": 1073, \"location\": \"\u300e\u79c1\u306e\u611b\u3059\u308b\u30e2\u30ce\u306f\u7c21\u5358\u306b\u306f\u8b72\u308c\u306a\u3044\u300f\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/469847997241495552/FU9KBmma_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2517853388/1400855466\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"yui_bot_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 15, \"name\": \"YUI \", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 23 13:32:41 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @_ThatsIt: Rt if u team iPhone \\n\u256d\u2501\u2501\u2501\u2501\u256e\\n\u2503\u3000\u25cf\u2550\u2550 \u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u3000 \u25cb \u2503\\n\u2570\u2501\u2501\u2501\u2501\u256f\", \"in_reply_to_status_id\": null, \"id\": 489174345516716033, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2335240088, \"indices\": [3, 12], \"id_str\": \"2335240088\", \"screen_name\": \"_ThatsIt\", \"name\": \"\u2600KoolaidOvaThotz\u2600\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 979, \"id_str\": \"489174345516716033\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"Rt if u team iPhone \\n\u256d\u2501\u2501\u2501\u2501\u256e\\n\u2503\u3000\u25cf\u2550\u2550 \u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u2588\u2588\u2588\u2588\u2503\\n\u2503\u3000 \u25cb \u2503\\n\u2570\u2501\u2501\u2501\u2501\u256f\", \"in_reply_to_status_id\": null, \"id\": 489108846934097920, \"favorite_count\": 139, \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"retweeted\": false, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [-76.9009936, 38.9039829]}, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 979, \"id_str\": \"489108846934097920\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2335240088, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/445635963050414081/YYpIXLev.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/432530908453683201/BBeVz68g_normal.jpeg\", \"profile_sidebar_fill_color\": \"EADEAA\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/jAOrpbKmQn\", \"indices\": [0, 22], \"expanded_url\": \"http://www.RichKidz.com\", \"display_url\": \"RichKidz.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 18695, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"2335240088\", \"profile_background_color\": \"8B542B\", \"listed_count\": 21, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 29169, \"description\": \"You can't lose what you never had, you can't keep what's not yours, and you can't hold on to something that doesn't want to stay.\", \"friends_count\": 14411, \"location\": \"\u2708 Freeport,Bahamas \u2708\", \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/432530908453683201/BBeVz68g_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2335240088/1392265420\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/445635963050414081/YYpIXLev.jpeg\", \"screen_name\": \"_ThatsIt\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 7093, \"name\": \"\u2600KoolaidOvaThotz\u2600\", \"notifications\": false, \"url\": \"http://t.co/jAOrpbKmQn\", \"created_at\": \"Sun Feb 09 15:02:35 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Eastern Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": {\"type\": \"Point\", \"coordinates\": [38.9039829, -76.9009936]}, \"in_reply_to_user_id_str\": null, \"lang\": \"pt\", \"created_at\": \"Tue Jul 15 18:06:50 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": {\"country_code\": \"US\", \"url\": \"https://api.twitter.com/1.1/geo/id/dea1eac2d7ef8878.json\", \"country\": \"United States\", \"place_type\": \"admin\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[-79.487651, 37.886607], [-74.986286, 37.886607], [-74.986286, 39.723622], [-79.487651, 39.723622]]]}, \"contained_within\": [], \"full_name\": \"Maryland, USA\", \"attributes\": {}, \"id\": \"dea1eac2d7ef8878\", \"name\": \"Maryland\"}, \"metadata\": {\"iso_language_code\": \"pt\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 104013239, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/887250300/d0c5f6fd00814afcc832254f636fd02b.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488500180287627265/Q6mdmt1o_normal.jpeg\", \"profile_sidebar_fill_color\": \"000000\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 917, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"104013239\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 31663, \"description\": \"KingLevi KingKapone #FreeRae \\n EbK \u26fd\ufe0f\", \"friends_count\": 417, \"location\": \"On The Strip...\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488500180287627265/Q6mdmt1o_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/104013239/1405011983\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/887250300/d0c5f6fd00814afcc832254f636fd02b.jpeg\", \"screen_name\": \"LilKev_BallOut\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 3799, \"name\": \"KingLEVI\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jan 12 00:17:34 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Quito\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"pt\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"pt\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174345168613377, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/FtRegaro610\\\" rel=\\\"nofollow\\\">\u30e1\u30b7\u30a6\u30de\uff01</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174345168613377\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2609359914, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486098206858567681/Zs4mbVTB_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 283, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2609359914\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 312, \"description\": \"\u304a\u3044\u3057\u305d\u3046\u306a\u98df\u3079\u7269\u3092\u9ad8\u753b\u8cea\u3067\u914d\u4fe1\u3057\u3066\u3044\u307e\u3059\u3002\u6df1\u591c\u306b\u898b\u305f\u308aRT\u3057\u305f\u308a\u3059\u308b\u306e\u306f\u3068\u3066\u3082\u5371\u967a\u306a\u306e\u3067\u3084\u3081\u307e\u3057\u3087\u3046w\", \"friends_count\": 1942, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486098206858567681/Zs4mbVTB_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2609359914/1404729975\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"mesiuma_tero\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u30e1\u30b7\u30a6\u30de\uff01\u3011\u9ad8\u753b\u8cea\u98ef\u30c6\u30ed\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jul 07 10:36:18 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:07 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\\\"Yo no uso celular, uso Iphone\\\" ... Existe gente que se cree tan bkn con su manzanita \u00ac\u00ac\", \"in_reply_to_status_id\": null, \"id\": 489174345135443969, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174345135443969\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 101612917, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/459723898708164608/ZKKeqN04.jpeg\", \"verified\": false, \"profile_text_color\": \"3C3940\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487023221959847936/EiW4gFhd_normal.jpeg\", \"profile_sidebar_fill_color\": \"95E8EC\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 624, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"101612917\", \"profile_background_color\": \"76B0E3\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 9353, \"description\": \"Primero soy persona, egresada de Terapia Ocupacional, amante del Capo de Provincia, Viuda de Berizzo, tauro y donante de \u00f3rganos por opci\u00f3n.[Fuerza Cerati]\", \"friends_count\": 561, \"location\": \"Rancagua - Santiago - Rancagua\", \"profile_link_color\": \"E62052\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487023221959847936/EiW4gFhd_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/101612917/1401389771\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/459723898708164608/ZKKeqN04.jpeg\", \"screen_name\": \"Yerdy_\", \"lang\": \"es\", \"profile_background_tile\": true, \"favourites_count\": 398, \"name\": \"Yerdy\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jan 04 00:34:56 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Santiago\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174345038561282, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/gMcdDJ\\\" rel=\\\"nofollow\\\">\u6700\u65b0\u30cb\u30e5\u30fc\u30b9.jp\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489174345038561282\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 1, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2256613982, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/452965568153260032/L0yfzQAV.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488655630480068609/_eLak62P_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 140, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2256613982\", \"profile_background_color\": \"FF00E4\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 1662, \"description\": \"\u5922\u306b\u5411\u304b\u3063\u3066\u4e00\u76f4\u7dda\u3000\u5c71\u4e2d\u2192\u4e2d\u592e3119\", \"friends_count\": 133, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488655630480068609/_eLak62P_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2256613982/1405339557\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/452965568153260032/L0yfzQAV.jpeg\", \"screen_name\": \"aoi_sun800\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 1098, \"name\": \"Y\u00dcKA\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Dec 21 15:33:10 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ninkiapa: \u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174344946302976, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/rupan3rd1\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af48</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2515439940, \"indices\": [3, 12], \"id_str\": \"2515439940\", \"screen_name\": \"ninkiapa\", \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [67, 89], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"source_status_id_str\": \"489174341171425280\", \"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"source_status_id\": 489174341171425280, \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [113, 135], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174344946302976\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2514960944, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/469836192066727939/jFi5-3EB_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1786, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2514960944\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 6, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 3646, \"description\": \"\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30ebbot\u3067\u3059\u3002\u8208\u5473\u304c\u3042\u308a\u307e\u3057\u305f\u3089\u305c\u3072\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u3002\", \"friends_count\": 2001, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/469836192066727939/jFi5-3EB_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2514960944/1405270633\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"doragonball1bot\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30ebbot\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 09:22:08 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174344916926464, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174344916926464\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2501811902, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467687668780781568/jS8gQTIK_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 863, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2501811902\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 763, \"description\": \"\u30dc\u30ab\u30ed\u306e\u6b4c\u8a5e\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u6b4c\u8a5e\u306b\u9b45\u4e86\u3055\u308c\u305f\u3089\u3001\u662f\u975eVOCALOID\u805e\u304d\u6d78\u3063\u3066\u4e0b\u3055\u3044\u3002\", \"friends_count\": 1385, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467687668780781568/jS8gQTIK_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2501811902/1400500469\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"vocaloid__bot_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30dc\u30ab\u30ed \u6b4c\u8a5e\u306b\u9b45\u305b\u3089\u308c\u3066\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat May 17 15:20:59 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174344682061824, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/storage_idea\\\" rel=\\\"nofollow\\\">\u7d20\u6575\u53ce\u7d0d\u8853\u266a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174344682061824\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2525180240, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488655639808196609/puPN8y7n_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 788, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2525180240\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 10652, \"description\": \"\u30c9M\u5973\u5b50\u3067\u3059\u3002\u3002\u3002\u7e1b\u3089\u308c\u308b\u306e\u304c\u597d\u304d\u3002\u30c9M\u306a\u5984\u60f3\u3057\u307e\u304f\u308a\u306e\u5909\u614b\u3067\u3059\u2606\u305d\u3093\u306a\u81ea\u5206\u306e\u982d\u306e\u4e2d\u3092\u8d64\u88f8\u3005\u306b\u516c\u958b\u3057\u305f\u3044\u57a2\u3067\u3059\u2661\u30c9S\u306a\u4eba\u306b\u653b\u3081\u3089\u308c\u305f\u3044\uff1e\uff1c\", \"friends_count\": 473, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488655639808196609/puPN8y7n_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2525180240/1405339661\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"do_m_jyosi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30c9M\u5973\u5b50\uff20\u5909\u614b\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 26 14:43:03 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Prazer em conhecer, Sra. Thompson! Procure novas fa\u00e7anhas nas ruas de Londres! http://t.co/EN622jee6C #iPhone #iPhoneGames #...\", \"in_reply_to_status_id\": null, \"id\": 489174344657297408, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://www.game-insight.com/\\\" rel=\\\"nofollow\\\">Mirrors of Albion</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [102, 109], \"text\": \"iPhone\"}, {\"indices\": [110, 122], \"text\": \"iPhoneGames\"}], \"urls\": [{\"url\": \"http://t.co/EN622jee6C\", \"indices\": [79, 101], \"expanded_url\": \"http://gigam.es/tw_psAlbion\", \"display_url\": \"gigam.es/tw_psAlbion\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174344657297408\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 82282160, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/45009062/Melt__3_.jpg\", \"verified\": false, \"profile_text_color\": \"3C3940\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/741422895/17-03-07_1140_normal.jpg\", \"profile_sidebar_fill_color\": \"95E8EC\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 108, \"profile_sidebar_border_color\": \"5ED4DC\", \"id_str\": \"82282160\", \"profile_background_color\": \"0099B9\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": -10800, \"statuses_count\": 713, \"description\": \"\", \"friends_count\": 60, \"location\": \"Rio de janeiro\", \"profile_link_color\": \"0099B9\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/741422895/17-03-07_1140_normal.jpg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/45009062/Melt__3_.jpg\", \"screen_name\": \"Rafasagraty\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 1, \"name\": \"Rafaella Oliveira\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Oct 14 05:12:18 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Brasilia\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"pt\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"pt\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ReaIatabIe: Who want one? #iPhone6! \\n\\nLook at it here! >> http://t.co/tiMhOHTmTh \\n\\n- http://t.co/6auynXmfiq\", \"in_reply_to_status_id\": null, \"id\": 489174344359084032, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android Tablets</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 509479552, \"indices\": [3, 14], \"id_str\": \"509479552\", \"screen_name\": \"ReaIatabIe\", \"name\": \"Relatable\"}], \"hashtags\": [{\"indices\": [30, 38], \"text\": \"iPhone6\"}], \"urls\": [{\"url\": \"http://t.co/tiMhOHTmTh\", \"indices\": [73, 95], \"expanded_url\": \"http://lifepost.issued.tv/iphone-6-rumors/\", \"display_url\": \"lifepost.issued.tv/iphone-6-rumor\u2026\"}], \"media\": [{\"source_status_id_str\": \"440882451326316544\", \"expanded_url\": \"http://twitter.com/ReaIatabIe/status/440882451326316544/photo/1\", \"display_url\": \"pic.twitter.com/6auynXmfiq\", \"url\": \"http://t.co/6auynXmfiq\", \"media_url_https\": \"https://pbs.twimg.com/media/Bh5UQOtCMAA2L6U.jpg\", \"source_status_id\": 440882451326316544, \"id_str\": \"440882451330510848\", \"sizes\": {\"large\": {\"h\": 360, \"resize\": \"fit\", \"w\": 640}, \"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [100, 122], \"type\": \"photo\", \"id\": 440882451330510848, \"media_url\": \"http://pbs.twimg.com/media/Bh5UQOtCMAA2L6U.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 410, \"id_str\": \"489174344359084032\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"Who want one?

#iPhone6! \\n\\nLook at it here! >> http://t.co/tiMhOHTmTh \\n\\n- http://t.co/6auynXmfiq\", \"in_reply_to_status_id\": null, \"id\": 440882451326316544, \"favorite_count\": 692, \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [14, 22], \"text\": \"iPhone6\"}], \"urls\": [{\"url\": \"http://t.co/tiMhOHTmTh\", \"indices\": [57, 79], \"expanded_url\": \"http://lifepost.issued.tv/iphone-6-rumors/\", \"display_url\": \"lifepost.issued.tv/iphone-6-rumor\u2026\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ReaIatabIe/status/440882451326316544/photo/1\", \"display_url\": \"pic.twitter.com/6auynXmfiq\", \"url\": \"http://t.co/6auynXmfiq\", \"media_url_https\": \"https://pbs.twimg.com/media/Bh5UQOtCMAA2L6U.jpg\", \"id_str\": \"440882451330510848\", \"sizes\": {\"large\": {\"h\": 360, \"resize\": \"fit\", \"w\": 640}, \"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [84, 106], \"type\": \"photo\", \"id\": 440882451330510848, \"media_url\": \"http://pbs.twimg.com/media/Bh5UQOtCMAA2L6U.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 410, \"id_str\": \"440882451326316544\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 509479552, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/443487736247234560/Flh4Tuuq_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/HGRCWS677x\", \"indices\": [0, 22], \"expanded_url\": \"http://simply-teens.com\", \"display_url\": \"simply-teens.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 122118, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"509479552\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 56, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 6185, \"description\": \"Follow me to be inspired \u2764 *parody* (For Business Contact: LifePost77@gmail.com)\", \"friends_count\": 54035, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/443487736247234560/Flh4Tuuq_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/509479552/1394570728\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ReaIatabIe\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 126, \"name\": \"Relatable\", \"notifications\": false, \"url\": \"http://t.co/HGRCWS677x\", \"created_at\": \"Thu Mar 01 00:28:58 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Eastern Time (US & Canada)\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Mar 04 16:12:22 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2407649180, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488976481620459520/5qlNskCs_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 845, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2407649180\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 9010, \"description\": \"I ship my mouth with Luke's dick ~\u2022~\u2022~\u20225SOS IN MY HEART~\u2022~\u2022\u2022~ 5/19/14~\u2022~\u2022~\u2022~I LOVE THE WAY LUKE STANDS UP FOR HIS BAND JUST LIKE HIS DICK STANDS UP FOR ME\", \"friends_count\": 776, \"location\": \"\u26655SOS\u2665\", \"profile_link_color\": \"07CEED\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488976481620459520/5qlNskCs_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2407649180/1405414726\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"Dr_Fluke12\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3931, \"name\": \"\u2654\u221e Irwin \u221e\u2654\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Mar 23 19:34:11 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174344312946689, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/CtRegaro610\\\" rel=\\\"nofollow\\\">\u4e16\u754c\u306e\u30cf\u30fc\u30d5\u30ca\u30fc</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174344312946689\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2590580539, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482339428237447168/VkNsQsi0_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 281, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2590580539\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 4919, \"description\": \"\u6b69\u304f\u96fb\u67f1\u3053\u3068\u30cf\u30fc\u30d5\u30ca\u30fc\u30fb\u30de\u30a4\u30af\u3060\u3002\u307f\u3093\u306a\u3088\u308d\u3057\u304f\u306a\uff01\u203b\u672c\u4eba\u3068\u306f\u7121\u95a2\u4fc2\u3067\u3059\u3002\", \"friends_count\": 1399, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482339428237447168/VkNsQsi0_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2590580539/1403834317\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"havner_soccer\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u4e16\u754c\u306e\u3011\u30cf\u30fc\u30d5\u30ca\u30fc\u30fb\u30de\u30a4\u30af\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 27 01:37:17 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174343927070721, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/kyonyu_heaven\\\" rel=\\\"nofollow\\\">kyonyu_heaven</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174343927070721\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2590178168, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme17/bg.gif\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483055637174046722/KmnTvWD__normal.jpeg\", \"profile_sidebar_fill_color\": \"E6F6F9\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 4288, \"profile_sidebar_border_color\": \"DBE9ED\", \"id_str\": \"2590178168\", \"profile_background_color\": \"DBE9ED\", \"listed_count\": 15, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 17565, \"description\": \"\u30cf\u30bf\u30c1\u306b\u306a\u308a\u307e\u3057\u305f\uff5e\u30fd(*\u00b4\u2200\uff40)\uff89\u304b\u3089\u3093\u3067\u3047\uff5e\u2661\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u2661\u3044\u3063\u3071\u3044RT\u3055\u308c\u308b\u3068\u8208\u596e\u3057\u3061\u3083\u3046\u304b\u3082\u2661DM\u9045\u3044\u3051\u3069\u30bb\u30d5\u30ec\u52df\u96c6\u4e2d\u3060\u3088\u266a\", \"friends_count\": 1127, \"location\": \"\u6771\u4eac\", \"profile_link_color\": \"CC3366\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483055637174046722/KmnTvWD__normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme17/bg.gif\", \"screen_name\": \"yuzu_haka\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3085\u305a\uff20\u30bb\u30d5\u30ec\u52df\u96c6\u4e2d\u2661\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jun 26 19:49:55 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174343834804224, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174343834804224\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2512881302, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/469139055809015808/2PXZl24w_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1102, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2512881302\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 667, \"description\": \"vocaloid\u306e\u753b\u50cf\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u753b\u50cf\u306b\u9b45\u4e86\u3055\u308c\u305f\u3089\u3001vocalo\u3092\u8074\u304d\u6d78\u3063\u3066\u4e0b\u3055\u3044\u306d\u3002\", \"friends_count\": 1148, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/469139055809015808/2PXZl24w_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2512881302/1400686463\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"vocaloid_gazou\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 3, \"name\": \"\u30dc\u30ab\u30ed \u753b\u50cf \u306b\u9b45\u305b\u3089\u308c\u3066\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed May 21 15:27:55 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174343532822528, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/GpRegaro610\\\" rel=\\\"nofollow\\\">\u304a\u6d12\u843d\u6559\u672c</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174343532822528\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2615353572, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487208070074748928/4TdkbcZw_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 308, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2615353572\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 226, \"description\": \"\u304a\u51fa\u304b\u3051\u524d\u306b\u3044\u3064\u3082\u8ff7\u3063\u3066\u3057\u307e\u3046\u670d\u306e\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3002\u3067\u3082\u3001\u914d\u8272\u306e\u30dd\u30a4\u30f3\u30c8\u3055\u3048\u899a\u3048\u308c\u3070\u610f\u5916\u3068\u670d\u306f\u7c21\u5358\u306b\u6c7a\u307e\u3063\u3066\u3057\u307e\u3046\u3082\u306e\u3002\u3069\u306e\u8272\u306b\u4f55\u3092\u5408\u308f\u305b\u308c\u3070\u3044\u3044\u304b\u308f\u304b\u3089\u306a\u3044\uff01\u3068\u3044\u3046\u65b9\u3078\u30d7\u30c1\u30a2\u30c9\u30d0\u30a4\u30b9\u3002\", \"friends_count\": 1991, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487208070074748928/4TdkbcZw_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2615353572/1404995049\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"oshare_manual\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u304a\u6d12\u843d\u306e\u6559\u672c\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 10 12:09:33 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @gijin_gijin_: \u305f\u3063\u305f3\u554f\u7b54\u3048\u308b\u3060\u3051\u3067\u30dd\u30a4\u30f3\u30c8\\n\u30b6\u30af\u30b6\u30af\u266a\u3000\u8d85\u30d1\u30cd\u30a7\u3063\u3059\uff01\\n\\niPhone\u3000\u21d2\u3000\u3010http://t.co/H62kD8GK2w\u3011\\nAndroid\u3000\u21d2\u3000\u3010http://t.co/gL3AXkKGZQ\u3011\\n\\n\u3053\u308c\u3067\u7c21\u5358\u304a\u5c0f\u9063\u3044\u7a3c\u304e\uff01 http://\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174343272763392, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/COUPLES_LINE1\\\" rel=\\\"nofollow\\\">COUPLES_LINE</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2460843415, \"indices\": [3, 16], \"id_str\": \"2460843415\", \"screen_name\": \"gijin_gijin_\", \"name\": \"\u64ec\u4eba\u5316\u3057\u3061\u3083\u3063\u305f\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/H62kD8GK2w\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/9M1d\", \"display_url\": \"urx.nu/9M1d\"}, {\"url\": \"http://t.co/gL3AXkKGZQ\", \"indices\": [94, 116], \"expanded_url\": \"http://urx.nu/9M1g\", \"display_url\": \"urx.nu/9M1g\"}], \"media\": [{\"source_status_id_str\": \"489174332245954561\", \"expanded_url\": \"http://twitter.com/gijin_gijin_/status/489174332245954561/photo/1\", \"display_url\": \"pic.twitter.com/XGj3fvvbcI\", \"url\": \"http://t.co/XGj3fvvbcI\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnldpfCAAExh47.jpg\", \"source_status_id\": 489174332245954561, \"id_str\": \"489174332061384705\", \"sizes\": {\"small\": {\"h\": 266, \"resize\": \"fit\", \"w\": 300}, \"large\": {\"h\": 266, \"resize\": \"fit\", \"w\": 300}, \"medium\": {\"h\": 266, \"resize\": \"fit\", \"w\": 300}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174332061384705, \"media_url\": \"http://pbs.twimg.com/media/BsnldpfCAAExh47.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 154, \"id_str\": \"489174343272763392\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u305f\u3063\u305f3\u554f\u7b54\u3048\u308b\u3060\u3051\u3067\u30dd\u30a4\u30f3\u30c8\\n\u30b6\u30af\u30b6\u30af\u266a\u3000\u8d85\u30d1\u30cd\u30a7\u3063\u3059\uff01\\n\\niPhone\u3000\u21d2\u3000\u3010http://t.co/H62kD8GK2w\u3011\\nAndroid\u3000\u21d2\u3000\u3010http://t.co/gL3AXkKGZQ\u3011\\n\\n\u3053\u308c\u3067\u7c21\u5358\u304a\u5c0f\u9063\u3044\u7a3c\u304e\uff01 http://t.co/XGj3fvvbcI\", \"in_reply_to_status_id\": null, \"id\": 489174332245954561, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/gijin_gijin_\\\" rel=\\\"nofollow\\\">gijin_gijin_</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/H62kD8GK2w\", \"indices\": [41, 63], \"expanded_url\": \"http://urx.nu/9M1d\", \"display_url\": \"urx.nu/9M1d\"}, {\"url\": \"http://t.co/gL3AXkKGZQ\", \"indices\": [76, 98], \"expanded_url\": \"http://urx.nu/9M1g\", \"display_url\": \"urx.nu/9M1g\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/gijin_gijin_/status/489174332245954561/photo/1\", \"display_url\": \"pic.twitter.com/XGj3fvvbcI\", \"url\": \"http://t.co/XGj3fvvbcI\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnldpfCAAExh47.jpg\", \"id_str\": \"489174332061384705\", \"sizes\": {\"small\": {\"h\": 266, \"resize\": \"fit\", \"w\": 300}, \"large\": {\"h\": 266, \"resize\": \"fit\", \"w\": 300}, \"medium\": {\"h\": 266, \"resize\": \"fit\", \"w\": 300}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174332061384705, \"media_url\": \"http://pbs.twimg.com/media/BsnldpfCAAExh47.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 154, \"id_str\": \"489174332245954561\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2460843415, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/459203859110309889/K2I1fNPT_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1651, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2460843415\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 2824, \"description\": \"\u3044\u308d\u306a\u3093\u306a\u3082\u306e\u306e\u64ec\u4eba\u5316\u753b\u50cf\u3092\u307e\u3068\u3081\u3066\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u3002\", \"friends_count\": 1984, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/459203859110309889/K2I1fNPT_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"gijin_gijin_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u64ec\u4eba\u5316\u3057\u3061\u3083\u3063\u305f\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Apr 24 05:32:31 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2305791524, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483511439001260032/L6NVPjIV_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2092, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2305791524\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 689, \"description\": \"\u30d1\u30ba\u30c9\u30e9\u306e\u3042\u308b\u3042\u308b\u306b\u3064\u3044\u3066\u3064\u3076\u3084\u304d\u307e\u3059\u266b\", \"friends_count\": 2060, \"location\": \"\u5c71\u68a8\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483511439001260032/L6NVPjIV_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"jososyjimyxi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30d1\u30ba\u30c9\u30e9\u3042\u308b\u3042\u308b\u266b\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jan 23 02:12:36 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174343121780736, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/hiaosksai\\\" rel=\\\"nofollow\\\">bhuvgycftd</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174343121780736\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 146, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2569174115, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485327345314586624/rRQqz837_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 320, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2569174115\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 420, \"description\": \"\u601d\u308f\u305a\u3001\u30ad\u30e5\u30f3\u3068\u80f8\u3092\u30c8\u30ad\u30e1\u304b\u305b\u308b\u30ac\u30c3\u30ad\u30fc\u3002\u305d\u3093\u306a\u30ac\u30c3\u30ad\u30fc\u306e\u753b\u50cf\u3084\u52a0\u5de5\u753b\u3092\u8f09\u305b\u3066\u3044\u304d\u307e\u3059\u3002 \u3068\u304d\u3081\u3044\u305f\u3089\u30d5\u30a9\u30ed\u30fc&RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 1953, \"location\": \"\u6e0b\u8c37\", \"profile_link_color\": \"B30098\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485327345314586624/rRQqz837_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2569174115/1404546018\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"uscottAsc\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u521d\u604b\u306e\u30c8\u30ad\u30e1\u30ad\u8607\u308b\uff01\u65b0\u57a3\u7d50\u8863BOT\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed May 28 15:33:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174342991769600, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/pokemon_learn\\\" rel=\\\"nofollow\\\">\u30dd\u30b1\u30e2\u30f3\u304b\u3089\u5b66\u3093\u3060\u3053\u3068</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174342991769600\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2472541014, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/466117385666039808/Ghq3BGpq_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1026, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2472541014\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 66334, \"description\": \"\u4eca\u6d41\u884c\u306e\u30ca\u30f3\u30d0\u30fc\uff11\u30a2\u30d7\u30ea\u306f\u30b3\u30ec\u3060\uff01\", \"friends_count\": 1002, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/466117385666039808/Ghq3BGpq_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2472541014/1399966063\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"king_of_app\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30ad\u30f3\u30b0\u30fb\u30aa\u30d6\u30fb\u30a2\u30d7\u30ea\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 01 13:56:38 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174342991745024, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tinyurl.com/pjgflku\\\" rel=\\\"nofollow\\\">\u885d\u6483\u203c\u4e16\u754c\u306e\u30d5\u30a1\u30a4\u30eb</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489174342991745024\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 1, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 234, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 489979269, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471605064516120577/85SnhwkL_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 60, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"489979269\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 1837, \"description\": \"\u300c\u4e09\u5ea6\u306e\u98ef\u3088\u308a\u7814\u7a76\u5927\u597d\u304d\u300d\u3053\u3068\u65e5\u91ce\u30ab\u30a4\u30b8\u30e7\u30a6\u3068\u7533\u3057\u307e\u3059\u3002\\n\u975e\u5bfe\u79f0\u306e\u30d6\u30e9\u30b7\u30ec\u30b9DC\u30e2\u30fc\u30bf\u30fc\u306e\u30d9\u30af\u30c8\u30eb\u5236\u5fa1\u3068\u6b63\u5f26\u6ce2\u76f4\u63a5\u5236\u5fa1\u306e\u7814\u7a76\u3092\u884c\u3063\u3066\u3044\u307e\u3059\u3002\u5c11\u3057\u3067\u3082\u7814\u7a76\u306b\u8208\u5473\u3042\u308b\u65b9\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 64, \"location\": \"\u5bae\u57ce\u770c\u6771\u677e\u5cf6\u5e02\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471605064516120577/85SnhwkL_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/489979269/1401042745\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"takuyahino\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 6, \"name\": \"\u30d2\u30ce\u30ab\u30a4\u30b8\u30e7\u30a6\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Feb 12 03:17:31 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @kami_apuri___: \u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174342933037057, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/summerwars111\\\" rel=\\\"nofollow\\\">\u8131\u793e\u4f1a</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2541664909, \"indices\": [3, 17], \"id_str\": \"2541664909\", \"screen_name\": \"kami_apuri___\", \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [39, 61], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [72, 94], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"source_status_id_str\": \"489174341246910466\", \"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"source_status_id\": 489174341246910466, \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174342933037057\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 36, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2495991330, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/466871555180347394/6WpZ1XwN_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1084, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2495991330\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 825, \"description\": \"sekaino owari\u30fb\u4e16\u754c\u306e\u7d42\u308f\u308a\u306e\u7d20\u6575\u306a\u6b4c\u8a5e\u3084\u753b\u50cf\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u30bb\u30ab\u30aa\u30ef\u306e\u8f2a\u3092\u5e83\u3052\u307e\u3057\u3087\u266a\u300e\u6ca2\u5c71\u306e\u75db\u307f\u3092\u77e5\u3063\u3066\u3044\u308b\u5f7c\u7b49\u304c\u5927\u597d\u304d\u3060\u203c\ufe0e\u300f\", \"friends_count\": 1928, \"location\": \"\u4e16\u754c\u306e\u4e2d\u5fc3\u3088\u308a\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/466871555180347394/6WpZ1XwN_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2495991330/1400500383\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"seka_owa_bot_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"SEKAI NO OWARI\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 15 09:18:24 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174342815608832, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/FkRegaro610\\\" rel=\\\"nofollow\\\">\u5927\u5b66\u751f\u8a9e\u8f9e\u5178</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174342815608832\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2607076460, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485698891975639040/ZRCt3TBO_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 297, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2607076460\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 361, \"description\": \"\u4e00\u822c\u306b\u4f7f\u308f\u308c\u3066\u3044\u308b\u8a00\u8449\u306e\u300c\u5927\u5b66\u751f\u7684\u89e3\u91c8\u300d\u3092\u307e\u3068\u3081\u305f\u8f9e\u66f8\u3067\u3059\u3002\", \"friends_count\": 1940, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485698891975639040/ZRCt3TBO_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2607076460/1404634842\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"daigakugo_jiten\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5927\u5b66\u751f\u8a9e\u8f9e\u5178\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jul 06 08:08:44 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u671d\u8d77\u304d\u3066\u5145\u96fb3%\u3067\u7126\u3063\u305f\ua4b0\ua4aa\ua4ab\ua4aa\u232f\ua4b1\\n\u5145\u96fb\u3057\u3066\u884c\u304f\u30ae\u30ea\u30ae\u30ea\u307e\u3067\u3057\u3066\u305f\u308960%\u307e\u3067\u56de\u5fa9\u3057\u305f\u203c\ufe0eiPhone\u3084\u3063\u3071\u308a\u65e9\u3044\u306a\u7b11\", \"in_reply_to_status_id\": null, \"id\": 489174342777847808, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174342777847808\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 786514856, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/718332140/429c5b65314a42b35dff302a5d840b4f.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486811376476643328/sdqMuAvR_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 198, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"786514856\", \"profile_background_color\": \"FF6699\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 4121, \"description\": \"\u793e\u4f1a\u4eba2\u5e74\u76ee\u266a\u597d\u304d\u306a\u3082\u306e\u2606\u306d\u3053 \u30ef\u30f3\u30d4\u30fc\u30b9 \u5d50 SEKAI NO OWARI aiko \u897f\u91ce\u30ab\u30caONE OK ROCK UVERworld \uff77\uff7d\uff8f\uff72 AAA Disney(\uff8f\uff98\uff70\u3061\u3083\u3093)\u30b8\u30d6\u30ea \u6700\u8fd1AAA\u3068UVERworld\u304c\u597d\u304d\u3059\u304e\u3066\u3084\u3070\u3044\u2661\u2661\", \"friends_count\": 241, \"location\": \"\u9759\u5ca1\u770c\", \"profile_link_color\": \"B40B43\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486811376476643328/sdqMuAvR_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/786514856/1385086689\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/718332140/429c5b65314a42b35dff302a5d840b4f.jpeg\", \"screen_name\": \"Alpaka0809\", \"lang\": \"ja\", \"profile_background_tile\": true, \"favourites_count\": 1165, \"name\": \"\u307e\u3044\u2661\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Aug 28 08:20:17 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174342391971840, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/takeuchi_rin0\\\" rel=\\\"nofollow\\\">\u7af9\u5185\u3000\u51db</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174342391971840\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 146, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2575450498, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481640064603009025/KyKLIPTB_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 153, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2575450498\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 438, \"description\": \"\u76ca\u82e5\u3064\u3070\u3055\u3061\u3083\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3082\u3063\u3068\u4eba\u6c17\u8005\u306b\u306a\u3063\u3066\u307b\u3057\u3044\u3002\u305d\u3093\u306a\u9858\u3044\u3092\u8fbc\u3081\u3066\u4f5c\u308a\u307e\u3057\u305f\u3002\u304c\u3093\u3070\u308c\u76ca\u82e5\u3061\u3083\u3093\uff3e\uff3e\", \"friends_count\": 1746, \"location\": \"\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\", \"profile_link_color\": \"AA00B3\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481640064603009025/KyKLIPTB_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2575450498/1404378766\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tojarefev\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u76ca\u82e5\u3064\u3070\u3055\u5fdc\u63f4\u968a\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 01 14:26:21 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174342190637056, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/pokemon_learn\\\" rel=\\\"nofollow\\\">\u30dd\u30b1\u30e2\u30f3\u304b\u3089\u5b66\u3093\u3060\u3053\u3068</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174342190637056\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2533004659, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488617451530108928/3qgqGUbc_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 757, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2533004659\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 12489, \"description\": \"\u901a\u8ca9\u306e\u30e2\u30c7\u30eb\u3092\u30aa\u30ca\u30cd\u30bf\u306b\u3057\u3061\u3083\u304a\u3046\uff57\u307e\u3055\u304b\u30aa\u30ab\u30ba\u306b\u3055\u308c\u3066\u308b\u3068\u3082\u77e5\u3089\u305a\u306b\u3001\u30ab\u30e1\u30e9\u306e\u524d\u3067\u7b11\u9854\u3092\u632f\u308a\u307e\u304f\u7f8e\u5973\u30fb\u30fb\u30fb\u305d\u3046\u8003\u3048\u308b\u3068\u8208\u596e\u3059\u308b\uff57\", \"friends_count\": 425, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488617451530108928/3qgqGUbc_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2533004659/1405330518\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"mizugi_model\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u901a\u8ca9\u30e2\u30c7\u30eb\uff20\u30b7\u30b3\u30b7\u30b3\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 29 16:42:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Australia 87. Never be the Same - Jessica Mauboy http://t.co/qbjrJTnvYO #Music #iTunes #iPhone #Apple\", \"in_reply_to_status_id\": null, \"id\": 489174342186459136, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://blog.77jp.net\\\" rel=\\\"nofollow\\\">iTunes Store Top 10 Songs</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [72, 78], \"text\": \"Music\"}, {\"indices\": [79, 86], \"text\": \"iTunes\"}, {\"indices\": [87, 94], \"text\": \"iPhone\"}, {\"indices\": [95, 101], \"text\": \"Apple\"}], \"urls\": [{\"url\": \"http://t.co/qbjrJTnvYO\", \"indices\": [49, 71], \"expanded_url\": \"http://tinyurl.com/ko9dphm\", \"display_url\": \"tinyurl.com/ko9dphm\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174342186459136\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2453263052, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme3/bg.gif\", \"verified\": false, \"profile_text_color\": \"634047\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/457530367457513472/d8-2fII5_normal.png\", \"profile_sidebar_fill_color\": \"E3E2DE\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/BIIZY2zulT\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/1mMfen3\", \"display_url\": \"j.mp/1mMfen3\"}, {\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [135, 157], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}}, \"followers_count\": 217, \"profile_sidebar_border_color\": \"D3D2CF\", \"id_str\": \"2453263052\", \"profile_background_color\": \"EDECE9\", \"listed_count\": 5, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 54433, \"description\": \"http://t.co/BIIZY2zulT iTunes Top 10 Songs. United States, China, Korea, United Kingdom, France, Australia, Germany, Japan, and others http://t.co/UBaFeqTc4O\", \"friends_count\": 17, \"location\": \"\", \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/457530367457513472/d8-2fII5_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme3/bg.gif\", \"screen_name\": \"mitrank\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"iTunes Top 10 Songs\", \"notifications\": false, \"url\": \"http://t.co/UBaFeqTc4O\", \"created_at\": \"Sat Apr 19 14:35:36 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u5148\u751f\u300c\u3053\u3089\uff01\u6388\u696d\u4e2d\u306b\u30b9\u30de\u30db\u3044\u3058\u308b\u306a\uff01\u300d \\n\\nDQN\u300c\u306f\uff1f\u304a\u308c\u306eiPhone\u30a8\u30af\u30b9\u307a\u30ea\u30a2\u306a\u3093\u3060\u3051\u3069\u300d \\n\\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f \\n\uff1e \u304a\u308c\u306eiPhone\u30a8\u30af\u30b9\u307a\u30ea\u30a2\u306a\u3093\u3060\u3051\u3069 \uff1c \\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y\uffe3\", \"in_reply_to_status_id\": null, \"id\": 489174342136115200, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/omoshirogamem\\\" rel=\\\"nofollow\\\">\u8ffd\u52a0\uff11\uff13</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 4, \"id_str\": \"489174342136115200\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2484451443, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486574878531653633/ePxmzuaM_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 114, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2484451443\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 2523, \"description\": \"\u7b4b\u8089\u75db\u5fc5\u6b7b\uff57\uff57\uff57\u304a\u3082\u3057\u308d\u304b\u3063\u305f\u3089\uff32\uff34\", \"friends_count\": 158, \"location\": \"\u6771\u4eac\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486574878531653633/ePxmzuaM_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"hara_houkai\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u8179\u7b4b\u5d29\u58ca\uff57\uff57\uff57\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Apr 14 15:56:27 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174342060634112, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/EcRegaro610\\\" rel=\\\"nofollow\\\">\u5ec3\u589f\u306e\u3042\u308b\u98a8\u666f</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174342060634112\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2598205358, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/484006484359913472/Lq-vCr_w_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 290, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2598205358\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 305, \"description\": \"\u304b\u3064\u3066\u306f\u8f1d\u304d\u306b\u6e80\u3061\u3066\u3044\u305f\u5efa\u9020\u7269\u304c\u3001\u9762\u5f71\u3092\u6b8b\u3057\u306a\u304c\u3089\u3082\u59ff\u3092\u5909\u3048\u3066\u3044\u304f\u98a8\u666f\u306b\u306a\u305c\u304b\u5fc3\u60f9\u304b\u308c\u308b\u2026\", \"friends_count\": 1952, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/484006484359913472/Lq-vCr_w_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2598205358/1404230950\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"haikyo_view\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5ec3\u589f\u306e\u3042\u308b\u98a8\u666f\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jul 01 16:03:57 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u53ef\u611b\u3044iphone\u30b1\u30fc\u30b9\u767a\u898b\u266a\u3061\u3087\u3063\u3068\u6e80\u8db3\u266a\u3000http://t.co/t27PsQI3bA\", \"in_reply_to_status_id\": null, \"id\": 489174342039658496, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://www.twisuke.com\\\" rel=\\\"nofollow\\\">\u30c4\u30a4\u52a9\u3002</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/t27PsQI3bA\", \"indices\": [23, 45], \"expanded_url\": \"http://bit.ly/1mMkJQq\", \"display_url\": \"bit.ly/1mMkJQq\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174342039658496\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2305710314, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/426157403881492480/R1T-RICO_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 4607, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2305710314\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 31072, \"description\": \"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u52df\u96c6\u4e2d\uff01\u30ea\u30d5\u30a9\u30ed\u30fc\u306f\uff11\uff10\uff10\uff05\u304a\u8fd4\u3057\u3057\u3066\u307e\u3059\u3002\u826f\u304b\u3063\u305f\u3089\u3054\u5229\u7528\u304f\u3060\u3055\u3044\u306d\", \"friends_count\": 4975, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/426157403881492480/R1T-RICO_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"follow_nagoyan\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\uff11\uff12\uff10\uff05\uff20\u306a\u3054\u3084\u3093\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jan 23 00:59:00 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174341674758144, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dydibiqokut\\\" rel=\\\"nofollow\\\">\u304b\u3093\u3061\u304c\u304dd\u3057\u3044</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174341674758144\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2468883408, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482785169816842241/pfpAyv-Q_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 484, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2468883408\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 488, \"description\": \"\u3010\u9577\u304f\u5370\u8c61\u306b\u6b8b\u308b\u6b4c\u8a5eBOT\u3011\u306eJuJu\u7de8\u3067\u3059\u3002JUJU\u3068\u3044\u3048\u3070\u3001\u3069\u3053\u304b\u5207\u306a\u3055\u611f\u3058\u308b\u6b4c\u8a5e\u304c\u3068\u3066\u3082\u5370\u8c61\u7684\u306a\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\uff01\u30d5\u30a9\u30ed\u30fc&RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 2001, \"location\": \"\u6771\u4eac\u90fd\u753a\u7530\u5e02\", \"profile_link_color\": \"9EB300\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482785169816842241/pfpAyv-Q_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2468883408/1403930814\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"jujuju_kashi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u9577\u304f\u5370\u8c61\u306b\u6b8b\u308b\u6b4c\u8a5eBOT\u2606JuJu\u2606\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Apr 29 07:10:50 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Missed it?

: Is Live TV Getting an iOS Makeover? [News] http://t.co/dyoOR6K9TJ\\n #iphone #iOS #apple\", \"in_reply_to_status_id\": null, \"id\": 489174341666365440, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://winthecustomer.com/\\\" rel=\\\"nofollow\\\">Win the Customer</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 86], \"text\": \"iphone\"}, {\"indices\": [87, 91], \"text\": \"iOS\"}, {\"indices\": [92, 98], \"text\": \"apple\"}], \"urls\": [{\"url\": \"http://t.co/dyoOR6K9TJ\", \"indices\": [55, 77], \"expanded_url\": \"http://bit.ly/1nnwWw3\", \"display_url\": \"bit.ly/1nnwWw3\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174341666365440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 57538072, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000090747277/f5e091078efe1444488d101f45a26f1a.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/2156692210/logo-250px_normal.png\", \"profile_sidebar_fill_color\": \"F6F6F6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/f2z7UfNN5E\", \"indices\": [0, 22], \"expanded_url\": \"http://pocketfullofapps.com/\", \"display_url\": \"pocketfullofapps.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 7648, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"57538072\", \"profile_background_color\": \"000000\", \"listed_count\": 179, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 55781, \"description\": \"Filling your pocket full of apps! iOS news, reviews, giveaways, and more in your Pocket. @ mention us if you ever need anything! Made by: @aaronwhitfield1.\", \"friends_count\": 135, \"location\": \"In your pocket\", \"profile_link_color\": \"038543\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/2156692210/logo-250px_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/57538072/1381265298\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000090747277/f5e091078efe1444488d101f45a26f1a.jpeg\", \"screen_name\": \"pocketfullofapp\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1597, \"name\": \"PocketFullOfApps.com\", \"notifications\": false, \"url\": \"http://t.co/f2z7UfNN5E\", \"created_at\": \"Fri Jul 17 03:24:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Indiana (East)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174341465034752, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/otome_game_soku\\\" rel=\\\"nofollow\\\">\u4e59\u5973\u30b2\u30fc\u30e0</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174341465034752\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2593348027, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme11/bg.gif\", \"verified\": false, \"profile_text_color\": \"362720\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485698606133829632/-t4DBU66_normal.jpeg\", \"profile_sidebar_fill_color\": \"E5507E\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2672, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"2593348027\", \"profile_background_color\": \"FF6699\", \"listed_count\": 13, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 10597, \"description\": \"\u30bb\u30d5\u30ec\u304c\u307b\u3057\u3044\u3088\uff01\u57a2\u3067\u3059(\u7b11)\u3002\u305d\u308c\u3068RT\u3057\u3066\u304f\u308c\u308b\u3068\u8208\u596e\u3057\u307e\u3059\u2661RT\u3057\u3066\u304f\u308c\u305f\u4eba\u306eDM\u307e\u3063\u3066\u307e\u3059\u266a\", \"friends_count\": 1243, \"location\": \"\", \"profile_link_color\": \"B40B40\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485698606133829632/-t4DBU66_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme11/bg.gif\", \"screen_name\": \"rio_h_aka\", \"lang\": \"ja\", \"profile_background_tile\": true, \"favourites_count\": 0, \"name\": \"Rio\u2661\u30bb\u30d5\u30ec\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Jun 28 16:17:14 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174341263712256, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/FpRegaro610\\\" rel=\\\"nofollow\\\"> \u672c\u6c17\u306e\u767a\u60f3\u529b</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174341263712256\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2609473334, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486126066939858944/y4sDUj-D_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 324, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2609473334\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 317, \"description\": \"\u672c\u6c17\u304c\u4f1d\u308f\u3063\u3066\u304f\u308b\u7d20\u6575\u306a\u3082\u306e\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\", \"friends_count\": 1960, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486126066939858944/y4sDUj-D_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2609473334/1404736880\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"honki_ideas\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u672c\u6c17\u306e\u767a\u60f3\u529b\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jul 07 11:45:33 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u30dd\u30b1\u30c3\u30c8\u30b3\u30ed\u30cb\u30fc\\n\\niPhone \u21d2 http://t.co/X9zFTtKW0D\\nAndroid\u21d2 http://t.co/E41VFZbABn\\n\\n\u7740\u305b\u66ff\u3048\u3084\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u3092\u697d\u3057\u307f\u306a\u304c\u3089\\n\u307f\u3093\u306a\u3067\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u308b\u266a http://t.co/p5bpcYywvL\", \"in_reply_to_status_id\": null, \"id\": 489174341246910466, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u4e09\u6210\u77f3\u7530</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/X9zFTtKW0D\", \"indices\": [20, 42], \"expanded_url\": \"http://9oo.jp/cgowzA\", \"display_url\": \"9oo.jp/cgowzA\"}, {\"url\": \"http://t.co/E41VFZbABn\", \"indices\": [53, 75], \"expanded_url\": \"http://9oo.jp/alENPQ\", \"display_url\": \"9oo.jp/alENPQ\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/kami_apuri___/status/489174341246910466/photo/1\", \"display_url\": \"pic.twitter.com/p5bpcYywvL\", \"url\": \"http://t.co/p5bpcYywvL\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\", \"id_str\": \"489174341024628737\", \"sizes\": {\"small\": {\"h\": 566, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"medium\": {\"h\": 800, \"resize\": \"fit\", \"w\": 480}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [115, 137], \"type\": \"photo\", \"id\": 489174341024628737, \"media_url\": \"http://pbs.twimg.com/media/BsnleK4CQAEAaHr.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174341246910466\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541664909, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 244, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541664909\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 38, \"description\": \"\u4eca\u4eba\u6c17\u3067\u8a71\u984c\u306e\u7121\u6599\u30b2\u30fc\u30e0\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u904a\u3073\u5c3d\u304f\u3057\u3066\u697d\u3057\u3093\u3067\u4e0b\u3055\u3044\u266a\", \"friends_count\": 398, \"location\": \"\u96fb\u5b50\u4e16\u754c\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477604510416642049/YmiVT3gE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541664909/1401752481\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kami_apuri___\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u30a2\u30d7\u30ea\u307e\u3068\u3081\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:57:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @renaiaruaruaru: \u3010\u795d\u3011\u30d1\u30ba\u30c9\u30e92700\u4e07DL\u8a18\u5ff5\u306b\u3064\u304d\u9650\u5b9a\uff01\\n\u9b54\u6cd5\u77f3\u304c\u30bf\u30c0\u3067\u8cb0\u3048\u308b\u30c1\u30e3\u30fc\u30fc\u30fc\u30f3\u30b9\uff01\\n\\niPhone\u3000\u21d2\u3000\u3010http://t.co/IYF2OJtbeT\u3011\\n\\n\u30b9\u30de\u30db\u3000\u2192\u3000\u3010http://t.co/6eCriYHD7S\u3011\\n\\n\u2606 http://\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174341184000000, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/warai_senmon\\\" rel=\\\"nofollow\\\">warai_senmon_appp</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2489873816, \"indices\": [3, 18], \"id_str\": \"2489873816\", \"screen_name\": \"renaiaruaruaru\", \"name\": \"\u604b\u611b\u3042\u308b\u3042\u308b\u2605\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/IYF2OJtbeT\", \"indices\": [73, 95], \"expanded_url\": \"http://urx.nu/8ejf\", \"display_url\": \"urx.nu/8ejf\"}, {\"url\": \"http://t.co/6eCriYHD7S\", \"indices\": [105, 127], \"expanded_url\": \"http://urx.nu/8ei5\", \"display_url\": \"urx.nu/8ei5\"}], \"media\": [{\"source_status_id_str\": \"489173800265605121\", \"expanded_url\": \"http://twitter.com/renaiaruaruaru/status/489173800265605121/photo/1\", \"display_url\": \"pic.twitter.com/SreDRhAh2V\", \"url\": \"http://t.co/SreDRhAh2V\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsnk-nsCEAEQerz.png\", \"source_status_id\": 489173800265605121, \"id_str\": \"489173799003099137\", \"sizes\": {\"small\": {\"h\": 369, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 695, \"resize\": \"fit\", \"w\": 640}, \"medium\": {\"h\": 651, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173799003099137, \"media_url\": \"http://pbs.twimg.com/media/Bsnk-nsCEAEQerz.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 224, \"id_str\": \"489174341184000000\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3010\u795d\u3011\u30d1\u30ba\u30c9\u30e92700\u4e07DL\u8a18\u5ff5\u306b\u3064\u304d\u9650\u5b9a\uff01\\n\u9b54\u6cd5\u77f3\u304c\u30bf\u30c0\u3067\u8cb0\u3048\u308b\u30c1\u30e3\u30fc\u30fc\u30fc\u30f3\u30b9\uff01\\n\\niPhone\u3000\u21d2\u3000\u3010http://t.co/IYF2OJtbeT\u3011\\n\\n\u30b9\u30de\u30db\u3000\u2192\u3000\u3010http://t.co/6eCriYHD7S\u3011\\n\\n\u2606 http://t.co/SreDRhAh2V\", \"in_reply_to_status_id\": null, \"id\": 489173800265605121, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/renaiaruaruaru\\\" rel=\\\"nofollow\\\">renaiaruaruaru_app</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/IYF2OJtbeT\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/8ejf\", \"display_url\": \"urx.nu/8ejf\"}, {\"url\": \"http://t.co/6eCriYHD7S\", \"indices\": [85, 107], \"expanded_url\": \"http://urx.nu/8ei5\", \"display_url\": \"urx.nu/8ei5\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/renaiaruaruaru/status/489173800265605121/photo/1\", \"display_url\": \"pic.twitter.com/SreDRhAh2V\", \"url\": \"http://t.co/SreDRhAh2V\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsnk-nsCEAEQerz.png\", \"id_str\": \"489173799003099137\", \"sizes\": {\"small\": {\"h\": 369, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 695, \"resize\": \"fit\", \"w\": 640}, \"medium\": {\"h\": 651, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [112, 134], \"type\": \"photo\", \"id\": 489173799003099137, \"media_url\": \"http://pbs.twimg.com/media/Bsnk-nsCEAEQerz.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 224, \"id_str\": \"489173800265605121\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2489873816, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/465491027902472192/n0t0YMiI_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1162, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2489873816\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 1820, \"description\": \"\u604b\u611b\u3042\u308b\u3042\u308b\u3001\u540d\u8a00\uff06\u8ff7\u8a00\uff1f\u3092\u3069\u3093\u3069\u3093\u3064\u3076\u3084\u304d\u30de\u30b9\u266a\u3042\u308b\u3042\u308b\u3068\u601d\u3063\u305f\u3089RT\", \"friends_count\": 1936, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/465491027902472192/n0t0YMiI_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2489873816/1399816836\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"renaiaruaruaru\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u604b\u611b\u3042\u308b\u3042\u308b\u2605\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun May 11 13:49:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:24:57 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2463303744, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476384840627937280/aQl65h_u_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 10, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2463303744\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 499, \"description\": \"\u9762\u767d\u304b\u3063\u305f\u3089RT\", \"friends_count\": 73, \"location\": \"\u6771\u4eac\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476384840627937280/aQl65h_u_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"atorakushon_XX\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30c7\u30a3\u30ba\u30cb\u30fc\u30a2\u30c8\u30e9\u30af\u30b7\u30e7\u30f3\u306e\u8b0e\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Apr 25 14:45:14 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Tokyo\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u7d76\u5bfe\u306b1\u5ea6\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\uff01\uff01\\n\u6700\u9ad8\u306b\u30cf\u30de\u308b\u3001\u723d\u5feb\u30b2\u30fc\u30e0\uff01\uff01\uff01\\n\\n\u3010iphone\u3082Android\u3082\u3011\u21d2http://t.co/whmO8TvUzC\\n\\n\u4e16\u754c\u306e\u30d1\u30ba\u30eb\u30de\u30cb\u30a2\u305f\u3061\u3092\u865c\u306b\u3057\u3066\u3044\u308b\uff01\uff01\uff01 http://t.co/40pPjgTLdM\", \"in_reply_to_status_id\": null, \"id\": 489174341171425280, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ayudaisuki12\\\" rel=\\\"nofollow\\\">\u30cd\u30c3\u30c8\u30ef\u30fc\u30af59</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/whmO8TvUzC\", \"indices\": [53, 75], \"expanded_url\": \"http://urx.nu/9I0R\", \"display_url\": \"urx.nu/9I0R\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ninkiapa/status/489174341171425280/photo/1\", \"display_url\": \"pic.twitter.com/40pPjgTLdM\", \"url\": \"http://t.co/40pPjgTLdM\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\", \"id_str\": \"489174340873646080\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [99, 121], \"type\": \"photo\", \"id\": 489174340873646080, \"media_url\": \"http://pbs.twimg.com/media/BsnleKUCcAA3itd.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 132, \"id_str\": \"489174341171425280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2515439940, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 138, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2515439940\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 798, \"description\": \"\u4eca\u8a71\u984c\u306b\u306a\u3063\u3066\u308b\u30a2\u30d7\u30ea\u3092\u53b3\u9078\u3057\u3066\u3054\u7d39\u4ecb\uff01\uff01\u9762\u767d\u3044\u30a2\u30d7\u30ea\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u7d39\u4ecb\u3057\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476223797834420224/eV-7YqJo_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2515439940/1405266154\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ninkiapa\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7279\u9078\uff01\u795e\u30a2\u30d7\u30ea\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 22 13:32:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:06 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174340999471104, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/gMcdDJ\\\" rel=\\\"nofollow\\\">\u6700\u65b0\u30cb\u30e5\u30fc\u30b9.jp\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489174340999471104\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 3, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1966945477, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477276607996903424/HuzpgDEk_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 219, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"1966945477\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 321, \"description\": \"\u4f50\u5009\u6771\u2192\u516b\u5343\u4ee3\u67712-B\u30fb\u30b5\u30c3\u30ab\u30fc\u90e8\u30fb\u304a\u597d\u307f\u713c\u304d\u306f\u7f8e\u5473\u3057\u3044\u30fb\", \"friends_count\": 215, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477276607996903424/HuzpgDEk_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1966945477/1382338752\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"masa_nomiya\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 253, \"name\": \"\u91ce\u5bae\u3067\u3059\u30fc\u3002\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Oct 17 14:09:58 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @QuentinPoscia: @Hattontion tu t es pris un coup d iphone pour etre pomme ?

\ud83d\ude02\ud83d\ude02\", \"in_reply_to_status_id\": null, \"id\": 489174340949508096, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2650083593, \"indices\": [3, 17], \"id_str\": \"2650083593\", \"screen_name\": \"QuentinPoscia\", \"name\": \"Quentin\"}, {\"id\": 625906370, \"indices\": [19, 30], \"id_str\": \"625906370\", \"screen_name\": \"Hattontion\", \"name\": \"R'Hatton Laveur .\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 1, \"id_str\": \"489174340949508096\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"@Hattontion tu t es pris un coup d iphone pour etre pomme ?\ud83d\ude02\ud83d\ude02\", \"in_reply_to_status_id\": 489174060270911488, \"id\": 489174235861221376, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 625906370, \"indices\": [0, 11], \"id_str\": \"625906370\", \"screen_name\": \"Hattontion\", \"name\": \"R'Hatton Laveur .\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": \"Hattontion\", \"in_reply_to_user_id\": 625906370, \"retweet_count\": 1, \"id_str\": \"489174235861221376\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2650083593, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483782756498178049/Dwi2dG4w_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 65, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2650083593\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 10800, \"statuses_count\": 764, \"description\": \"Instagram: QuentinPoscia | Snapchat: Quent_in\", \"friends_count\": 71, \"location\": \"Gen\u00e8ve\", \"profile_link_color\": \"730000\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483782756498178049/Dwi2dG4w_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2650083593/1403961503\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"QuentinPoscia\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 14, \"name\": \"Quentin\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Jun 28 12:54:33 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Athens\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": \"625906370\", \"lang\": \"fr\", \"created_at\": \"Tue Jul 15 22:26:40 +0000 2014\", \"in_reply_to_status_id_str\": \"489174060270911488\", \"place\": null, \"metadata\": {\"iso_language_code\": \"fr\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 625906370, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/795247776/7f6442f77a887d1d13e94ca754a5f796.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488341545922625536/yvG-WseU_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 331, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"625906370\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 7200, \"statuses_count\": 12966, \"description\": \"Je sais pas quoi dire , ni quoi faire . Je ne veux pas passer pour un abruti ...\", \"friends_count\": 177, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488341545922625536/yvG-WseU_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/625906370/1405261682\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/795247776/7f6442f77a887d1d13e94ca754a5f796.jpeg\", \"screen_name\": \"Hattontion\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 2438, \"name\": \"R'Hatton Laveur .\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jul 03 21:32:46 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Amsterdam\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"fr\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"fr\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174340827500544, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/qocivorotam\\\" rel=\\\"nofollow\\\">\u30ab\u30ac\u30ef\u30ce\u30aa\u30c3\u30b5\u30f3</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174340827500544\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2477751512, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/484888382103777280/a9BW92aY_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 711, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2477751512\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 565, \"description\": \"\u58f0\u512a\u306e\u4e45\u4fdd\u30e6\u30ea\u30ab\u3055\u3093\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\u30e2\u30c7\u30eb\u306e\u4ed5\u4e8b\u3082\u3053\u306a\u3059\u3068\u3063\u3066\u3082\u304b\u308f\u3044\u3044\u5973\u6027\u3067\u3059\u3002\u307e\u3060\u6240\u5c5e\u4e8b\u52d9\u6240\u304c\u306a\u3044\u306a\u304b\u3067\u3053\u306e\u6d3b\u8e8d\u306b\u306f\u76ee\u3092\u898b\u5f35\u308a\u307e\u3059\u3002\u3069\u3046\u3057\u3066\u3082\u4e16\u306b\u5e83\u3081\u305f\u3044\uff01\u307f\u306a\u3055\u3093\u3067\u5fdc\u63f4\u3057\u3066\u3044\u304d\u307e\u3057\u3087\u3046\u3002\", \"friends_count\": 2001, \"location\": \"\u6771\u4eac\u90fd\u6587\u4eac\u533a\", \"profile_link_color\": \"B3002D\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/484888382103777280/a9BW92aY_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2477751512/1404441438\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"proless0819\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u4e45\u4fdd\u30e6\u30ea\u30ab \u58f0\u512a\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 03:24:35 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @OBEY: when u take off ur iphone case and it feels like ur holding a newborn\", \"in_reply_to_status_id\": null, \"id\": 489174340651716608, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 511107301, \"indices\": [3, 8], \"id_str\": \"511107301\", \"screen_name\": \"OBEY\", \"name\": \"OBEY\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 871, \"id_str\": \"489174340651716608\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"when u take off ur iphone case and it feels like ur holding a newborn\", \"in_reply_to_status_id\": null, \"id\": 476549937095012353, \"favorite_count\": 811, \"source\": \"<a href=\\\"https://about.twitter.com/products/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 871, \"id_str\": \"476549937095012353\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": false, \"default_profile_image\": false, \"id\": 511107301, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/826449476/34b40f0557afadfda962bf1462cab9bf.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/446501288096710656/BtPyVGnf_normal.jpeg\", \"profile_sidebar_fill_color\": \"EFEFEF\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/RXZHCxUVIW\", \"indices\": [0, 22], \"expanded_url\": \"http://obeyclothing.com/\", \"display_url\": \"obeyclothing.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 240364, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"511107301\", \"profile_background_color\": \"050505\", \"listed_count\": 198, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 2428, \"description\": \"Love: You risk getting hurt, but have a chance to be happy forever. \u2665 Business: adiamondisforever@live.com\", \"friends_count\": 87665, \"location\": \"Los Angeles, CA\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/446501288096710656/BtPyVGnf_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/511107301/1402774567\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/826449476/34b40f0557afadfda962bf1462cab9bf.jpeg\", \"screen_name\": \"OBEY\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 73, \"name\": \"OBEY\", \"notifications\": false, \"url\": \"http://t.co/RXZHCxUVIW\", \"created_at\": \"Fri Mar 02 00:36:35 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Eastern Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Wed Jun 11 02:22:13 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1963085054, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000148836739/23Kpvg2x.jpeg\", \"verified\": false, \"profile_text_color\": \"5E412F\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000601294901/409da3e6ed43b09115aa25e6a9c43b4d_normal.jpeg\", \"profile_sidebar_fill_color\": \"78C0A8\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/JuEFfvNLEv\", \"indices\": [0, 22], \"expanded_url\": \"http://www.poppsychic.bigcartel.com\", \"display_url\": \"poppsychic.bigcartel.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 6497, \"profile_sidebar_border_color\": \"F0A830\", \"id_str\": \"1963085054\", \"profile_background_color\": \"FCEBB6\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 5226, \"description\": \"BITCHES BEWARE\", \"friends_count\": 5797, \"location\": \"\", \"profile_link_color\": \"CE7834\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000601294901/409da3e6ed43b09115aa25e6a9c43b4d_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1963085054/1388806605\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000148836739/23Kpvg2x.jpeg\", \"screen_name\": \"poppsychicNYC\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 751, \"name\": \"pop psychic\", \"notifications\": false, \"url\": \"http://t.co/JuEFfvNLEv\", \"created_at\": \"Tue Oct 15 17:36:29 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174340424843264, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/DvRegaro610\\\" rel=\\\"nofollow\\\">\u30aa\u30b7\u30e3\u30ec\u90e8\u5c4b\u30b3\u30fc\u30c7</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174340424843264\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2595858930, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483490720578162690/Y6kS5IHu_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 321, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2595858930\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 783, \"description\": \"\u61a7\u308c\u306e\u4e00\u4eba\u66ae\u3089\u3057\u3002\u304b\u308f\u3044\u3044\u90e8\u5c4b\u30fb\u304a\u3057\u3083\u308c\u306a\u90e8\u5c4b\u30b3\u30fc\u30c7\u3092\u96c6\u3081\u307e\u3057\u305f\u2661\", \"friends_count\": 1982, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483490720578162690/Y6kS5IHu_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2595858930/1404108054\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"oshare_roomcode\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30aa\u30b7\u30e3\u30ec\u306a\u2661\u4e00\u4eba\u66ae\u3089\u3057\u90e8\u5c4b\u30b3\u30fc\u30c7\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 30 05:58:09 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Missed it?: 'Slotomania' Review http://t.co/hSuifH1o79\\n #iphone #iOS #apple\", \"in_reply_to_status_id\": null, \"id\": 489174340215119874, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://winthecustomer.com/\\\" rel=\\\"nofollow\\\">Win the Customer</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 63], \"text\": \"iphone\"}, {\"indices\": [64, 68], \"text\": \"iOS\"}, {\"indices\": [69, 75], \"text\": \"apple\"}], \"urls\": [{\"url\": \"http://t.co/hSuifH1o79\", \"indices\": [32, 54], \"expanded_url\": \"http://bit.ly/1nhnVUf\", \"display_url\": \"bit.ly/1nhnVUf\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174340215119874\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 57538072, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000090747277/f5e091078efe1444488d101f45a26f1a.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/2156692210/logo-250px_normal.png\", \"profile_sidebar_fill_color\": \"F6F6F6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/f2z7UfNN5E\", \"indices\": [0, 22], \"expanded_url\": \"http://pocketfullofapps.com/\", \"display_url\": \"pocketfullofapps.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 7648, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"57538072\", \"profile_background_color\": \"000000\", \"listed_count\": 179, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 55781, \"description\": \"Filling your pocket full of apps! iOS news, reviews, giveaways, and more in your Pocket. @ mention us if you ever need anything! Made by: @aaronwhitfield1.\", \"friends_count\": 135, \"location\": \"In your pocket\", \"profile_link_color\": \"038543\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/2156692210/logo-250px_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/57538072/1381265298\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000090747277/f5e091078efe1444488d101f45a26f1a.jpeg\", \"screen_name\": \"pocketfullofapp\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1597, \"name\": \"PocketFullOfApps.com\", \"notifications\": false, \"url\": \"http://t.co/f2z7UfNN5E\", \"created_at\": \"Fri Jul 17 03:24:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Indiana (East)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174340202532864, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/inthe_skirt\\\" rel=\\\"nofollow\\\">\u30de\u30b9\u30bf\u30fc\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30c4\u30a4\u30c3\u30bf\u30fc</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174340202532864\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2489255264, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/468307431571746816/7ctRrUXP_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3632, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2489255264\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 22, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64033, \"description\": \"\u601d\u308f\u305a\u62b1\u304d\u3057\u3081\u305f\u304f\u306a\u308b\u30bb\u30af\u30b7\u30fc\u4e0b\u7740\u306e\u7f8e\u5973\u3092\u96c6\u3081\u307e\u3057\u305f\uff01\u3084\u3063\u3071\u308a\u7d20\u3063\u88f8\u3088\u308a\u4e0b\u7740\u59ff\u306e\u65b9\u304c\u30a8\u30ed\u304f\u3066\u840c\u3048\u308b\u308f\u301c\u266a\u3063\u3066\u601d\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u6c17\u306b\u5165\u3063\u305f\u4e0b\u7740\u7f8e\u5973\u306fRT/Fav\u3057\u3066\u697d\u3057\u3093\u3067\u304f\u3060\u3055\u3044\u266a\", \"friends_count\": 2957, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/468307431571746816/7ctRrUXP_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2489255264/1400488567\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"sexy_shitagi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30bb\u30af\u30b7\u30fc\u4e0b\u7740\u56f3\u9451\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun May 11 04:16:39 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174339917324289, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/jyryqupiqyv\\\" rel=\\\"nofollow\\\">\u30c0\u30ab\u30e9\u30ca\u30f3\u30b8\u30e3</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174339917324289\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2476504915, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/484875707831422976/h_k1okwg_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 530, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2476504915\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 497, \"description\": \"\u30db\u30ea\u30d7\u30ed\u6240\u5c5e\u3001\u4eca\u6700\u3082\u4eba\u6c17\u3092\u96c6\u3081\u308b\u5c0f\u5cf6\u7460\u7483\u5b50\u3061\u3083\u3093\u3002\u3068\u3063\u3066\u3082\u7b11\u9854\u304c\u304b\u308f\u3044\u304f\u3066\u611b\u304f\u308b\u3057\u3044\u3053\u3058\u308b\u308a\u3061\u3083\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u304f\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\u307f\u3093\u306a\u3067\u5fdc\u63f4\u3057\u3066\u3044\u304d\u307e\u3057\u3087\u3046\uff01\", \"friends_count\": 0, \"location\": \"\u6771\u4eac\u90fd\u6587\u4eac\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/484875707831422976/h_k1okwg_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2476504915/1404438428\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"su_tsu0819\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5c0f\u5cf6\u7460\u7483\u5b50 \u5fdc\u63f4\u968a\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun May 04 06:47:19 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"@hymAnrm puts her iphone pics on her computer first to edit them before putting them back on her phone to post to instagram.\", \"in_reply_to_status_id\": null, \"id\": 489174339892572160, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2398081664, \"indices\": [0, 8], \"id_str\": \"2398081664\", \"screen_name\": \"hymAnrm\", \"name\": \"Rachel Hyman\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": \"hymAnrm\", \"in_reply_to_user_id\": 2398081664, \"retweet_count\": 0, \"id_str\": \"489174339892572160\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 438008681, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482541813509939200/N4eZMgl0_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 235, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"438008681\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 5964, \"description\": \"What is most essential is invisible to the eye, it is only with the heart that one sees rightly.\", \"friends_count\": 237, \"location\": \"#RVA\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482541813509939200/N4eZMgl0_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/438008681/1358198687\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"hart___attack\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1976, \"name\": \"Andrea\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Dec 16 02:47:59 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": \"2398081664\", \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174339527262208, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/CwRegaro610\\\" rel=\\\"nofollow\\\">\u4eca\u65e5\u4f55\u306e\u65e5?

</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174339527262208\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2591284212, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482795539067437056/7k-pLpzX_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 322, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2591284212\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 1705, \"description\": \"\u4eca\u65e5\u306f\u4f55\u306e\u65e5\uff1f\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u3078\u3048\u3001\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 1897, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482795539067437056/7k-pLpzX_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2591284212/1403872832\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"nannohi_today_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u4eca\u65e5\u306f\u4f55\u306e\u65e5\uff1f\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 27 12:33:18 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174339481116672, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/otome_game_soku\\\" rel=\\\"nofollow\\\">\u4e59\u5973\u30b2\u30fc\u30e0</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174339481116672\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2591594594, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485687333526585344/v14lnbDU_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1867, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2591594594\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 6, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 10597, \"description\": \"\u898b\u3089\u308c\u308b\u306e\u3046\u308c\u3057\u3044\u8208\u596e\u3059\u308b\u2661\u898b\u305f\u3089RT\u3057\u3066\u306d\u266a\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u308b\u3068\u559c\u3076\u266a\u305f\u304f\u3055\u3093\u30aa\u30ca\u30cb\u30fc\u3057\u3066\u3063\u3066\u306d\u2661\", \"friends_count\": 906, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485687333526585344/v14lnbDU_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2591594594/1404632021\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"hana_uraaka\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Hana\uff20\u3048\u308d\u3042\u304b\u3060\u3088\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 27 16:01:58 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174338612908032, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/onepiece_i_fan\\\" rel=\\\"nofollow\\\">\u3064\u3044\u3063\u305f\u30fc\u304c\u5927\u597d\u304d\uff01</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174338612908032\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2535034004, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/488539932751691777/y2r4zZfN_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 786, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2535034004\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 11695, \"description\": \"\u30a2\u30a4\u30c9\u30eb\u30fb\u30b3\u30e9\u30fc\u30b8\u30e5\u306e\u7565\u3067\u3059\u3002\u30cd\u30c3\u30c8\u3067\u898b\u3064\u3051\u305f\u30a2\u30a4\u30b3\u30e9\u7b49\u30a8\u30ed\u753b\u50cf\u8cbc\u3063\u3066\u3044\u304d\u307e\u3059\u3002\u3082\u3057\u3088\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3001RT\u304a\u9858\u3044\u3057\u307e\u3059(^-^)v\", \"friends_count\": 396, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/488539932751691777/y2r4zZfN_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2535034004/1405311991\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ai_cora\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a2\u30a4\u30b3\u30e9\u753b\u50cf\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 13:01:46 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174338600333312, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/XRegaro610\\\" rel=\\\"nofollow\\\">\u6709\u5409\u8a9e\u9332</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174338600333312\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2572088730, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478738537907380225/SDKsTAiE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 314, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2572088730\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 863, \"description\": \"\u6bd2\u820c\u306e\u795e\u69d8\u6709\u5409\u5f18\u884c\u306e\u7206\u7b11\u8a9e\u9332\u30fb\u3042\u3060\u540d\u96c6\u3002\u30ad\u30ec\u3063\u30ad\u30ec\u306e\u6bd2\u820c\u3067\u6709\u540d\u4eba\u3092\u7247\u3063\u7aef\u304b\u3089\u3044\u3058\u308a\u5012\u3057\u307e\u3059ww\", \"friends_count\": 1957, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478738537907380225/SDKsTAiE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2572088730/1402975660\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ariyoshi_words\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u6bd2\u820c\u738b\u6709\u5409\u306e\u7206\u7b11\u8a9e\u9332\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jun 17 03:12:51 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174337862135808, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/DsRegaro610\\\" rel=\\\"nofollow\\\"> \u30aa\u30b7\u30e3\u30ec\u306a\u53ce\u7d0d\u6cd5</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174337862135808\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2595759582, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483466232339763200/3bhPp7N__normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 330, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2595759582\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 1786, \"description\": \"\u30aa\u30b7\u30e3\u30ec\u306b\u304a\u90e8\u5c4b\u3092\u3059\u3063\u304d\u308a\u3067\u304d\u308b\u53ce\u7d0d\u8853\u3092\u8f09\u305b\u3066\u3044\u307e\u3059\u3002\u4f7f\u3048\u308b\u306a\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 1971, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483466232339763200/3bhPp7N__normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2595759582/1404102266\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"shunou_oshare\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7c21\u5358\u30aa\u30b7\u30e3\u30ec\u306a\u53ce\u7d0d\u6cd5\u2661\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 30 04:21:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174337853726720, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/pokemon_learn\\\" rel=\\\"nofollow\\\">\u30dd\u30b1\u30e2\u30f3\u304b\u3089\u5b66\u3093\u3060\u3053\u3068</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174337853726720\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2594094344, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485706748871733248/eMccmP7l_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2000, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2594094344\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 8, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 10547, \"description\": \"\u30aa\u30ca\u30cb\u30fc\u3068\u30bb\u30c3\u30af\u30b9\u304c\u5927\u597d\u304d\u306a20\u624d\u5973\u306e\u5b50\u3060\u3088\u2661RT\u3057\u3066\u304f\u308c\u308b\u30a8\u30c3\u30c1\u306a\u4eba\u304c\u5927\u597d\u304d\u2661\u898b\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3063\u3066\u306d\u2661\", \"friends_count\": 1166, \"location\": \"\u6771\u4eac\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485706748871733248/eMccmP7l_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2594094344/1404636525\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"yui_h_ero\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3086\u3043\uff20\u30a8\u30ed\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 29 03:03:38 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174337123913728, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ero_watashi\\\" rel=\\\"nofollow\\\">ero_watashi</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174337123913728\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2477041734, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467214861873602560/4it5iRwu_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1094, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2477041734\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 6, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 65245, \"description\": \"\u3061\u3087\u3063\u3074\u308a\u30a8\u30c3\u30c1\u3067\u30bb\u30af\u30b7\u30fc\u306a\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1003, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467214861873602560/4it5iRwu_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2477041734/1400227688\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"sexy_kami_app\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30bb\u30af\u30b7\u30fc\u795e\u30a2\u30d7\u30ea\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun May 04 15:29:35 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174336826138624, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/sasaki_miku0\\\" rel=\\\"nofollow\\\">\u4f50\u3005\u6728\u3000\u30df\u30af</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174336826138624\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2574036676, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487467920184725504/zNgR3_tJ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 277, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2574036676\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 65, \"description\": \"\u9577\u304f\u5370\u8c61\u306b\u6b8b\u308b\u6b4c\u8a5eBOT\u306e\u300eGReeeeN\u300f\u7de8\u3067\u3059\u3002\u3055\u308f\u3084\u304b\u9752\u6625\u7cfb\u306a\u3001\u3044\u3064\u307e\u3067\u3082\u601d\u3044\u51fa\u306b\u6b8b\u308b\u30d5\u30ec\u30fc\u30ba\u3092\u753b\u50cf\u3068\u4f75\u305b\u3066\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002\u305c\u3072\u305c\u3072\u3001\u30d5\u30a9\u30ed\u30fc&RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059^^\", \"friends_count\": 1835, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487467920184725504/zNgR3_tJ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2574036676/1405056393\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tradhov84\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u9577\u304f\u5370\u8c61\u306b\u6b8b\u308b\u6b4c\u8a5eBOT\u2606GReeeeN\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat May 31 15:53:49 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:05 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @LoQueEllasSaben: Viste a la moda, sin gastar demasiado y desde casa. Dafiti para Android o iPhone gratis aqu\u00ed\u25ba http://t.co/qTUqfP9WCt h\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174336608014336, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android Tablets</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 309206860, \"indices\": [3, 19], \"id_str\": \"309206860\", \"screen_name\": \"LoQueEllasSaben\", \"name\": \"\u2665 Frases para ellas\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/qTUqfP9WCt\", \"indices\": [115, 137], \"expanded_url\": \"http://gee.lu/13cmd\", \"display_url\": \"gee.lu/13cmd\"}], \"media\": [{\"source_status_id_str\": \"485458823667146753\", \"expanded_url\": \"http://twitter.com/SoloTwiterEs/status/485458823667146753/photo/1\", \"display_url\": \"pic.twitter.com/m1tLoYRcD4\", \"url\": \"http://t.co/m1tLoYRcD4\", \"media_url_https\": \"https://pbs.twimg.com/media/BryyOlNCcAMo_C6.jpg\", \"source_status_id\": 485458823667146753, \"id_str\": \"485458823423881219\", \"sizes\": {\"large\": {\"h\": 325, \"resize\": \"fit\", \"w\": 600}, \"small\": {\"h\": 184, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 325, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 485458823423881219, \"media_url\": \"http://pbs.twimg.com/media/BryyOlNCcAMo_C6.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489174336608014336\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"Viste a la moda, sin gastar demasiado y desde casa. Dafiti para Android o iPhone gratis aqu\u00ed\u25ba http://t.co/qTUqfP9WCt http://t.co/m1tLoYRcD4\", \"in_reply_to_status_id\": null, \"id\": 489172470860353536, \"favorite_count\": 109, \"source\": \"<a href=\\\"https://about.twitter.com/products/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/qTUqfP9WCt\", \"indices\": [94, 116], \"expanded_url\": \"http://gee.lu/13cmd\", \"display_url\": \"gee.lu/13cmd\"}], \"media\": [{\"source_status_id_str\": \"485458823667146753\", \"expanded_url\": \"http://twitter.com/SoloTwiterEs/status/485458823667146753/photo/1\", \"display_url\": \"pic.twitter.com/m1tLoYRcD4\", \"url\": \"http://t.co/m1tLoYRcD4\", \"media_url_https\": \"https://pbs.twimg.com/media/BryyOlNCcAMo_C6.jpg\", \"source_status_id\": 485458823667146753, \"id_str\": \"485458823423881219\", \"sizes\": {\"large\": {\"h\": 325, \"resize\": \"fit\", \"w\": 600}, \"small\": {\"h\": 184, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 325, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 485458823423881219, \"media_url\": \"http://pbs.twimg.com/media/BryyOlNCcAMo_C6.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 86, \"id_str\": \"489172470860353536\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 309206860, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000123297316/dd2cab4bcd8d4b9667eacfa5b11c6ba3.jpeg\", \"verified\": false, \"profile_text_color\": \"362720\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486838468254134272/FonPcn0J_normal.jpeg\", \"profile_sidebar_fill_color\": \"E5507E\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/UIvXxPtjFw\", \"indices\": [0, 22], \"expanded_url\": \"http://www.fb.com/SoloLoQueEllasSaben\", \"display_url\": \"fb.com/SoloLoQueEllas\u2026\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 1222516, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"309206860\", \"profile_background_color\": \"DBE9ED\", \"listed_count\": 1332, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 8383, \"description\": \"Contactos para publicidad y campa\u00f1as a publicidad@loqueellassaben.es\", \"friends_count\": 128, \"location\": \"Latinoamerica\", \"profile_link_color\": \"CC3366\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486838468254134272/FonPcn0J_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/309206860/1389732954\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000123297316/dd2cab4bcd8d4b9667eacfa5b11c6ba3.jpeg\", \"screen_name\": \"LoQueEllasSaben\", \"lang\": \"pt\", \"profile_background_tile\": true, \"favourites_count\": 389, \"name\": \"\u2665 Frases para ellas\", \"notifications\": false, \"url\": \"http://t.co/UIvXxPtjFw\", \"created_at\": \"Wed Jun 01 18:21:50 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"La Paz\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:19:40 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2319965752, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme17/bg.gif\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/484433241818951680/WTKqllcr_normal.jpeg\", \"profile_sidebar_fill_color\": \"E6F6F9\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/dkmS4BfH6S\", \"indices\": [0, 22], \"expanded_url\": \"http://instagram.com/emy_u_u\", \"display_url\": \"instagram.com/emy_u_u\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 1493, \"profile_sidebar_border_color\": \"DBE9ED\", \"id_str\": \"2319965752\", \"profile_background_color\": \"DBE9ED\", \"listed_count\": 6, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 8896, \"description\": \"\u266a Music \u266a \u2020God\u2020 \u00abRead\u00bb \u2022.\u2022Wattpad\u2022.\u2022 ~My life is 5 guys\u2665 1D~ #MidnightMemories #Surfboard #ReallyDon'tCare\", \"friends_count\": 163, \"location\": \"\u270c Dominican Republic \u270c\", \"profile_link_color\": \"CC3366\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/484433241818951680/WTKqllcr_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2319965752/1403158718\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme17/bg.gif\", \"screen_name\": \"Emely_Nice15\", \"lang\": \"es\", \"profile_background_tile\": false, \"favourites_count\": 1628, \"name\": \"Simply Me\u2764\", \"notifications\": false, \"url\": \"http://t.co/dkmS4BfH6S\", \"created_at\": \"Sun Feb 02 13:06:40 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @GanaiPhoneBB: PARTICIPA EN LA RIFA DE 2 IPHONE 5, SOLO SIGUE A @MasQuePalabras y HAZ RT a este TWEET. SE TE AVISRARA AL DM http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174336558088193, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 832453050, \"indices\": [3, 16], \"id_str\": \"832453050\", \"screen_name\": \"GanaiPhoneBB\", \"name\": \"Gana iPhone & BB\"}, {\"id\": 188103460, \"indices\": [67, 82], \"id_str\": \"188103460\", \"screen_name\": \"MasQuePalabras\", \"name\": \"Reflexiones\"}], \"hashtags\": [], \"urls\": [], \"media\": [{\"source_status_id_str\": \"338700792070537216\", \"expanded_url\": \"http://twitter.com/Premiosiphone/status/338700792070537216/photo/1\", \"display_url\": \"pic.twitter.com/hErd8mIfTZ\", \"url\": \"http://t.co/hErd8mIfTZ\", \"media_url_https\": \"https://pbs.twimg.com/media/BLNOk20CAAIPNq5.jpg\", \"source_status_id\": 338700792070537216, \"id_str\": \"338700792078925826\", \"sizes\": {\"small\": {\"h\": 224, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 329, \"resize\": \"fit\", \"w\": 500}, \"medium\": {\"h\": 329, \"resize\": \"fit\", \"w\": 500}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 338700792078925826, \"media_url\": \"http://pbs.twimg.com/media/BLNOk20CAAIPNq5.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 59, \"id_str\": \"489174336558088193\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"PARTICIPA EN LA RIFA DE 2 IPHONE 5, SOLO SIGUE A @MasQuePalabras y HAZ RT a este TWEET. SE TE AVISRARA AL DM http://t.co/hErd8mIfTZ\", \"in_reply_to_status_id\": null, \"id\": 489074966663806976, \"favorite_count\": 8, \"source\": \"<a href=\\\"https://about.twitter.com/products/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 188103460, \"indices\": [49, 64], \"id_str\": \"188103460\", \"screen_name\": \"MasQuePalabras\", \"name\": \"Reflexiones\"}], \"hashtags\": [], \"urls\": [], \"media\": [{\"source_status_id_str\": \"338700792070537216\", \"expanded_url\": \"http://twitter.com/Premiosiphone/status/338700792070537216/photo/1\", \"display_url\": \"pic.twitter.com/hErd8mIfTZ\", \"url\": \"http://t.co/hErd8mIfTZ\", \"media_url_https\": \"https://pbs.twimg.com/media/BLNOk20CAAIPNq5.jpg\", \"source_status_id\": 338700792070537216, \"id_str\": \"338700792078925826\", \"sizes\": {\"small\": {\"h\": 224, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 329, \"resize\": \"fit\", \"w\": 500}, \"medium\": {\"h\": 329, \"resize\": \"fit\", \"w\": 500}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [109, 131], \"type\": \"photo\", \"id\": 338700792078925826, \"media_url\": \"http://pbs.twimg.com/media/BLNOk20CAAIPNq5.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 59, \"id_str\": \"489074966663806976\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 832453050, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme14/bg.gif\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/473611091088392192/t4ZzbF24_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 14209, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"832453050\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 15, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 41672, \"description\": \"Con solo seguirme puedes ser el afortunado ganador de un iPhone 5 o un BlackBerry Z10. Participa en nuestras PROMOCIONES\", \"friends_count\": 18, \"location\": \"LatinoAmerica\", \"profile_link_color\": \"00B3B3\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/473611091088392192/t4ZzbF24_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/832453050/1401752686\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme14/bg.gif\", \"screen_name\": \"GanaiPhoneBB\", \"lang\": \"es\", \"profile_background_tile\": true, \"favourites_count\": 238, \"name\": \"Gana iPhone & BB\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Sep 19 03:26:16 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 15:52:13 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 335011761, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3536494224/cfee2bf993c2408192f5add889771f21_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 941, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"335011761\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": -16200, \"statuses_count\": 38187, \"description\": \"El Justiciero Venezolano\", \"friends_count\": 1889, \"location\": \"Venezuela\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3536494224/cfee2bf993c2408192f5add889771f21_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/335011761/1397007693\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"JusticieroVene\", \"lang\": \"es\", \"profile_background_tile\": false, \"favourites_count\": 12, \"name\": \"JusticieroVenezolano\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jul 14 00:56:15 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174336301850624, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/gal_ero\\\" rel=\\\"nofollow\\\">\u53ef\u611b\u3044\u304c\u5927\u597d\u304d\uff01</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174336301850624\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2565045582, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/480255404866158594/dt-kYEN3_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2801, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2565045582\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 17, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 24314, \"description\": \"\u30ae\u30e3\u30eb\u304c\u597d\u304d\u2661\u30a8\u30ed\u304c\u597d\u304d\u2661\u305d\u3093\u306a\u79c1\u306e\u88cf\u57a2\u3067\u3059\u3002\u7d61\u307f\u5927\u6b53\u8fce\u2661\", \"friends_count\": 1514, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/480255404866158594/dt-kYEN3_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2565045582/1403336827\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"gal_ero\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u3044\u30ae\u30e3\u30eb\uff20\u88cf\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 13 10:27:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"@simonrug @Ians_Iphone I've answered that elsewhere. Somebody seems to be misleading you over the value of twitter.\", \"in_reply_to_status_id\": 489173986644090880, \"id\": 489174336260308992, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 270986692, \"indices\": [0, 9], \"id_str\": \"270986692\", \"screen_name\": \"simonrug\", \"name\": \"Simon Thomas\"}, {\"id\": 244542393, \"indices\": [10, 22], \"id_str\": \"244542393\", \"screen_name\": \"Ians_Iphone\", \"name\": \"Ians_Iphone\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": \"simonrug\", \"in_reply_to_user_id\": 270986692, \"retweet_count\": 0, \"id_str\": \"489174336260308992\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1044168385, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/476459552939200512/SU9nS1Yf_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/rpDnAOS120\", \"indices\": [0, 22], \"expanded_url\": \"http://rugbyphilbb.wordpress.com/\", \"display_url\": \"rugbyphilbb.wordpress.com\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/2S1BBbZUcl\", \"indices\": [63, 85], \"expanded_url\": \"http://www.cardiffrfcfans.co.uk\", \"display_url\": \"cardiffrfcfans.co.uk\"}]}}, \"followers_count\": 947, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"1044168385\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"is_translation_enabled\": false, \"utc_offset\": 3600, \"statuses_count\": 24103, \"description\": \"The strength of the game is independence, not central control\\r\\nhttp://t.co/2S1BBbZUcl\", \"friends_count\": 402, \"location\": \"www.cardiffrfcfans.co.uk\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/476459552939200512/SU9nS1Yf_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1044168385/1391118179\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"rugbyPhilBB\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 780, \"name\": \"PhilBB\", \"notifications\": false, \"url\": \"http://t.co/rpDnAOS120\", \"created_at\": \"Sat Dec 29 08:00:23 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": \"Dublin\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": \"270986692\", \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": \"489173986644090880\", \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174336113098753, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/poincpan\\\" rel=\\\"nofollow\\\">nagaitoyomanai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174336113098753\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2569699611, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486748940537065472/YBdXseQ4_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 94, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2569699611\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 398, \"description\": \"\u5bae\u8feb\u535a\u4e4b\u3055\u3093\u306e\u6700\u65b0\u6d3b\u52d5\u60c5\u5831\u3092\u30a2\u30c3\u30d7\u3057\u3066\u3044\u304d\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002\u30d0\u30a4\u30ad\u30f3\u30b0\u3001\u30a2\u30e1\u30c8\u30fc\u30fc\u30af\u306a\u3069\u76db\u308a\u3060\u304f\u3055\u3093\u3067\u304a\u9001\u308a\u3057\u307e\u3046\uff3e\uff3e\", \"friends_count\": 2001, \"location\": \"\u6771\u4eac\u90fd\u6e0b\u8c37\u533a\", \"profile_link_color\": \"B30009\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486748940537065472/YBdXseQ4_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2569699611/1404884928\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"unezgladis\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5bae\u8feb\u535a\u4e4b \u30a2\u30e1\u30c8\u30fc\u30fc\u30af\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed May 28 21:28:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"\u305f\u307e\u305f\u307e\u671d\u30ed\u30fc\u30bd\u30f3\u5bc4\u3063\u305f\u3089Free\u304f\u3058\u3042\u3063\u305f\u304b\u3089\u306a\u3093\u3068\u306a\u304d\u304b\u5f15\u3044\u305f\u3089\u308c\u3044\u3061\u3083\u3093\u304d\u305f\u304b\u3089\u5e78\u305b\u3067iPhone\u5145\u96fb\u3057\u3066\u306a\u304f\u306610%\u3057\u304b\u306a\u3044\u3051\u3069\u307e\u3042\u3044\u3044\u3002\u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\", \"in_reply_to_status_id\": null, \"id\": 489174335865643009, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174335865643009\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 81344173, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/627516748/back2113224780763330554.png\", \"verified\": false, \"profile_text_color\": \"00857C\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478593035710631936/5_TXLrRH_normal.jpeg\", \"profile_sidebar_fill_color\": \"000000\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/Yf27MkNX33\", \"indices\": [0, 22], \"expanded_url\": \"http://www.pixiv.net/member.php?id=732851\", \"display_url\": \"pixiv.net/member.php?id=\u2026\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/ND0TI8GgyM\", \"indices\": [67, 89], \"expanded_url\": \"http://twpf.jp/chihana\", \"display_url\": \"twpf.jp/chihana\"}]}}, \"followers_count\": 124, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"81344173\", \"profile_background_color\": \"FFC2E7\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": -36000, \"statuses_count\": 46532, \"description\": \"\u8150\u9069\u5207(BL)\u306a\u8868\u73fe\u30fb\u8208\u596e\u3067TL\u57cb\u3081\u6ce8\u610f\u6210\u4eba\u6e08\u3002\u7dcf\u5317\u4fe1\u53f7\u6a5f\u304c\u3044\u308c\u3070\u305d\u308c\u3067\u3044\u3044\u3002RKRN\u5947\u6570\u5b66\u5e74\u611b\u3002\uff71\uff72\uff8f\uff7d/\uff83\uff86\uff8c\uff9f\uff98/\u3046\u305f\u3077\u308a \u8a73\u2192http://t.co/ND0TI8GgyM\", \"friends_count\": 147, \"location\": \"\", \"profile_link_color\": \"FF0055\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478593035710631936/5_TXLrRH_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/81344173/1353756585\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/627516748/back2113224780763330554.png\", \"screen_name\": \"chihana\", \"lang\": \"ja\", \"profile_background_tile\": true, \"favourites_count\": 2653, \"name\": \"\u30ad\u30e5\", \"notifications\": false, \"url\": \"http://t.co/Yf27MkNX33\", \"created_at\": \"Sat Oct 10 12:30:23 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Hawaii\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"I need a new background for my iPhone home and lock screens.\", \"in_reply_to_status_id\": null, \"id\": 489174335803129857, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174335803129857\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 29277141, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/443233142149611520/84C9Gt3x.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/480433783246966784/9W_YemsZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 460, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"29277141\", \"profile_background_color\": \"FF8400\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 3600, \"statuses_count\": 33276, \"description\": \"\", \"friends_count\": 442, \"location\": \"\", \"profile_link_color\": \"00858A\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/480433783246966784/9W_YemsZ_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/443233142149611520/84C9Gt3x.jpeg\", \"screen_name\": \"weardeodorant\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 597, \"name\": \"\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Apr 06 19:50:26 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"London\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174335404261376, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/zetolyxevuvu\\\" rel=\\\"nofollow\\\">maruukesuruyo</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174335404261376\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2492016549, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478446798122393600/mJvDGb0J_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3460, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2492016549\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 422, \"description\": \"\u30db\u30ed\u30c3\u3068\u304f\u308b\u3088\u3046\u306a\u30b7\u30e7\u30fc\u30c8\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u304a\u5c4a\u3057\u307e\u3059\u3002\u96fb\u8eca\u306e\u4e2d\u3067\u30a6\u30eb\u30a6\u30eb\u6ce8\u610f\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30fc&RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 2206, \"location\": \"\u6771\u4eac\u90fd\u4e2d\u592e\u533a\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478446798122393600/mJvDGb0J_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2492016549/1402905393\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"short_story0_0\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u611f\u52d5\u30b7\u30e7\u30fc\u30c8\u30b9\u30c8\u30fc\u30ea\u30fc\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Apr 18 11:44:07 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174334976454656, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/basketballsplay\\\" rel=\\\"nofollow\\\">\u30c4\u30a4\u30c3\u30bf\u30fc\u30b9\u30dd\u30fc\u30c4\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174334976454656\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2467514293, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/460719211585622016/ZKqmjesc_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 9708, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2467514293\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 34, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 70307, \"description\": \"\u30a8\u30c3\u30c1\u304c\u5927\u597d\u304d\u306aJK\u3067\u3059\u2661\u305f\u304f\u3055\u3093RT\u3055\u308c\u308b\u3068\u6fc0\u3057\u304f\u8208\u596e\u3057\u307e\u3059(*\u00b4\u03c9\uff40*)\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\u266a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u3088\u2661\", \"friends_count\": 1140, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/460719211585622016/ZKqmjesc_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2467514293/1398682736\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"meg_ero\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3081\u3050\uff20\u30a8\u30ed\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Apr 28 09:52:31 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"I've collected 13,488 gold coins! http://t.co/jP0s28fXX8 #iphone, #iphonegames, #gameinsight\", \"in_reply_to_status_id\": null, \"id\": 489174334502883329, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://itunes.apple.com/us/app/the-tribez/id511317727?

mt=8&uo=4\\\" rel=\\\"nofollow\\\">The Tribez on iOS</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 64], \"text\": \"iphone\"}, {\"indices\": [66, 78], \"text\": \"iphonegames\"}, {\"indices\": [80, 92], \"text\": \"gameinsight\"}], \"urls\": [{\"url\": \"http://t.co/jP0s28fXX8\", \"indices\": [34, 56], \"expanded_url\": \"http://gigam.es/imtw_Tribez\", \"display_url\": \"gigam.es/imtw_Tribez\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174334502883329\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 56657016, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme10/bg.gif\", \"verified\": false, \"profile_text_color\": \"5F058C\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/463700953380577282/ftk8_zs5_normal.png\", \"profile_sidebar_fill_color\": \"9F6FDE\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 65, \"profile_sidebar_border_color\": \"2F1E3D\", \"id_str\": \"56657016\", \"profile_background_color\": \"642D8B\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": 3600, \"statuses_count\": 4279, \"description\": \"Mother of 4, Grandmother to Alyssa and Kaiden. Very happy atm xxx\", \"friends_count\": 430, \"location\": \"King's Lynn, Norfolk\", \"profile_link_color\": \"520578\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/463700953380577282/ftk8_zs5_normal.png\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/56657016/1402560989\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme10/bg.gif\", \"screen_name\": \"bluejade21\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 3, \"name\": \"Kim Cowell\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jul 14 09:59:55 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"London\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174334166953984, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/kashiaya0\\\" rel=\\\"nofollow\\\">\u67cf\u6728\u3000\u7531\u9999</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174334166953984\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2474458352, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485304375208734722/W5NS3NdT_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 388, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2474458352\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 282, \"description\": \"\u5b89\u85e4\u7f8e\u59eb\u3055\u3093\u306b\u304b\u304b\u308f\u308b\u60c5\u5831\u3092\u30a2\u30c3\u30d7\u3057\u3066\u3044\u304d\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002\", \"friends_count\": 1840, \"location\": \"\u6771\u4eac\u90fd\u8abf\u5e03\u5e02\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485304375208734722/W5NS3NdT_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2474458352/1404540580\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"fatujyqewog\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5b89\u85e4\u7f8e\u59eb \u30d5\u30a3\u30ae\u30e5\u30a2\u30b9\u30b1\u30fc\u30bf\u30fc\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 02 19:38:16 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174334166929410, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ero_watashi\\\" rel=\\\"nofollow\\\">ero_watashi</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174334166929410\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2559276240, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/480071353282732032/IySPf_K5_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2674, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2559276240\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 17, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 24420, \"description\": \"\u8ab0\u306b\u3082\u8a00\u3048\u306a\u3044\u79d8\u5bc6\u3092\u8cb4\u65b9\u3060\u3051\u306b\u516c\u958b\u3057\u3066\u307e\u3059\u3002\u3002\u3002(\u3003^_^\u3003\", \"friends_count\": 1489, \"location\": \"\u611b\u306e\u5de3*`.`\u516b^\u03b5^*\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/480071353282732032/IySPf_K5_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2559276240/1403292953\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_watashi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5b9f\u306f\u79c1\u30a8\u30ed\u306a\u3093\u3067\u3059\u3002\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jun 10 15:48:04 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174333445533697, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/crashin_learn\\\" rel=\\\"nofollow\\\">crashin_learn</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174333445533697\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2554459284, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479732049163460608/TV-NMfeO_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3038, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2554459284\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 18, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 25372, \"description\": \"\u30af\u30f3\u30cb\u5927\u597d\u304d\u2661\u30af\u30f3\u30cb\u306e\u753b\u50cf\u96c6\u3081\u3066\u7814\u7a76\u3057\u3066\u307e\u3059\uff57\u826f\u304b\u3063\u305f\u3089\u304a\u304b\u305a\u306b\u3057\u3066\u304f\u3060\u3055\u3044\uff57\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b\u3068\u30aa\u30ca\u30cb\u30fc\u304c\u6357\u3063\u305f\u308a\u3059\u308b\u304b\u3082\u2661RT\u3088\u308d\u3057\u304f\u306d\u266a\", \"friends_count\": 1458, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479732049163460608/TV-NMfeO_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2554459284/1403212199\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"miki_kunni\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u7f8e\u5e0c\uff20\u30af\u30f3\u30cb\u5927\u597d\u304d\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 08 11:06:05 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"A Dish Best Served Naked : http://t.co/8zFE0iI4TN : #teen,#pussy,#movie,#iphone,#sex,#porn,#xxx,#sexy\", \"in_reply_to_status_id\": null, \"id\": 489174333399777280, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tweetadder.com\\\" rel=\\\"nofollow\\\">TweetAdder v4</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 57], \"text\": \"teen\"}, {\"indices\": [58, 64], \"text\": \"pussy\"}, {\"indices\": [65, 71], \"text\": \"movie\"}, {\"indices\": [72, 79], \"text\": \"iphone\"}, {\"indices\": [80, 84], \"text\": \"sex\"}, {\"indices\": [85, 90], \"text\": \"porn\"}, {\"indices\": [91, 95], \"text\": \"xxx\"}, {\"indices\": [96, 101], \"text\": \"sexy\"}], \"urls\": [{\"url\": \"http://t.co/8zFE0iI4TN\", \"indices\": [27, 49], \"expanded_url\": \"http://xgroping.com/a-dish-best-served-naked/\", \"display_url\": \"xgroping.com/a-dish-best-se\u2026\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174333399777280\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2432519630, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme14/bg.gif\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467937303730483201/VX9fll3d_normal.jpeg\", \"profile_sidebar_fill_color\": \"EFEFEF\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/Dyjnk6tyvy\", \"indices\": [0, 22], \"expanded_url\": \"http://Xoonii.com\", \"display_url\": \"Xoonii.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 69, \"profile_sidebar_border_color\": \"EEEEEE\", \"id_str\": \"2432519630\", \"profile_background_color\": \"131516\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 18000, \"statuses_count\": 52717, \"description\": \"#butt,#xxx,#free,#sex,\\n#nsfw,#fuck,#videos,#sexy,#anal,\\n#teen,#pussy,#movie,#iphone,#sex,#porn\", \"friends_count\": 0, \"location\": \"Los Angeles,CA,US\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467937303730483201/VX9fll3d_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme14/bg.gif\", \"screen_name\": \"BlondeNude\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 0, \"name\": \"Blonde Nude\", \"notifications\": false, \"url\": \"http://t.co/Dyjnk6tyvy\", \"created_at\": \"Mon Apr 07 19:52:49 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Islamabad\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174333139329024, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tinyurl.com/pvjm8ho\\\" rel=\\\"nofollow\\\">\u885d\u6483\u306a\u4e8b\u5b9f\u3000\u3000\u3000\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489174333139329024\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 3, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1184141054, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/436163824127721472/2YeKBYT4_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 255, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"1184141054\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 513, \"description\": \"\u8da3\u5473\u5c02\u7528\u203c \u30b8\u30e3\u30cb\u30fc\u30ba\u3002LDH\u3002\u30c7\u30a3\u30ba\u30cb\u30fc\u3002\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u3002ONE PIECE\u3002\u597d\u304d\u3067\u3059\u203c \u3075\u3049\u308d\u30fc\u307f\u30fc\u3002\\n\\n\u5d50 \u6f64\u304f\u3093\u306b\u306e\u62c5=\u304a\u30fc\u308b\u62c5\u2606\", \"friends_count\": 556, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/436163824127721472/2YeKBYT4_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1184141054/1385677525\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"0226Yuta\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 5, \"name\": \"\u3086\u30fc\u305f\u2606\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Feb 16 00:02:43 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Eu coletei 49,517 moedas de ouro! http://t.co/d5uJJaR7Bg #iphone, #iphonegames, #gameinsightBR\", \"in_reply_to_status_id\": null, \"id\": 489174332892266496, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/tribez_itw\\\" rel=\\\"nofollow\\\">The Tribez for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 64], \"text\": \"iphone\"}, {\"indices\": [66, 78], \"text\": \"iphonegames\"}, {\"indices\": [80, 94], \"text\": \"gameinsightBR\"}], \"urls\": [{\"url\": \"http://t.co/d5uJJaR7Bg\", \"indices\": [34, 56], \"expanded_url\": \"http://gigam.es/imtw_Triboz\", \"display_url\": \"gigam.es/imtw_Triboz\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174332892266496\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 176128375, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme11/bg.gif\", \"verified\": false, \"profile_text_color\": \"362720\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/1099378546/OgAAABUVnf5seJuoXcuzZX8Cx9f3ZCI2HWevd2vtGVzjv8FZBCFmt7QJAf74TU-AoKucVfvZctX6vFenvqq4SxLfaWQAm1T1UAZkDk7eaR34p_rM04gyC-bPguI8_1__normal.jpg\", \"profile_sidebar_fill_color\": \"E5507E\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 33, \"profile_sidebar_border_color\": \"CC3366\", \"id_str\": \"176128375\", \"profile_background_color\": \"FF6699\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": -10800, \"statuses_count\": 16617, \"description\": \"\", \"friends_count\": 123, \"location\": \"\", \"profile_link_color\": \"B40B43\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/1099378546/OgAAABUVnf5seJuoXcuzZX8Cx9f3ZCI2HWevd2vtGVzjv8FZBCFmt7QJAf74TU-AoKucVfvZctX6vFenvqq4SxLfaWQAm1T1UAZkDk7eaR34p_rM04gyC-bPguI8_1__normal.jpg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme11/bg.gif\", \"screen_name\": \"Paula_fg86\", \"lang\": \"pt\", \"profile_background_tile\": true, \"favourites_count\": 1, \"name\": \"Paula Gon\u00e7alves\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Aug 08 17:07:19 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Brasilia\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"pt\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"pt\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174332736679937, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/gal_mizugi\\\" rel=\\\"nofollow\\\">gal_mizugi</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174332736679937\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2558013049, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479781151070879744/DsQahw03_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2931, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2558013049\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 24991, \"description\": \"\u4e16\u754c\u7684\u6709\u540d\u306a\u30cc\u30fc\u30c7\u30a3\u30b9\u30c8\u30fb\u30d3\u30fc\u30c1\u306e\u753b\u50cf\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\uff01\u7537\u306a\u3089\u4e00\u5ea6\u306f\u61a7\u308c\u308b\u30cc\u30fc\u30c7\u30a3\u30b9\u30c8\u30fb\u30d3\u30fc\u30c1\u3002\u884c\u3063\u3066\u307f\u305f\u3044\u4eba\u306fRT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30fc\u3082\u5927\u6b53\u8fce\uff01\", \"friends_count\": 1378, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479781151070879744/DsQahw03_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2558013049/1403223829\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"nudist_beach_\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u753b\u50cf\u3011\u30cc\u30fc\u30c7\u30a3\u30b9\u30c8\u30d3\u30fc\u30c1\u3010\u30a8\u30ed\u3011\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jun 10 02:28:29 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:04 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174331956539392, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/ero_love_ona\\\" rel=\\\"nofollow\\\">\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u30c4\u30a4\u30c3\u30bf\u30fc\uff01</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174331956539392\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": false, \"default_profile_image\": false, \"id\": 2371683703, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme11/bg.gif\", \"verified\": false, \"profile_text_color\": \"362720\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/458958646475378688/NEbFaZI2_normal.jpeg\", \"profile_sidebar_fill_color\": \"E5507E\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 13346, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"2371683703\", \"profile_background_color\": \"F69EAF\", \"listed_count\": 39, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 72111, \"description\": \"\u30aa\u30ca\u30cb\u30fc\u3068\u30bb\u30c3\u30af\u30b9\u304c\u5927\u597d\u304d\u306a10\u4ee3\u5973\u5b50\u3060\u3088\u2661RT\u3057\u3066\u304f\u308c\u308b\u30a8\u30c3\u30c1\u306a\u4eba\u304c\u5927\u597d\u7269\u2661\u3075\u3041\u307c\u559c\u3073\u307e\u3059\u2661\u898b\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3063\u3066\u306d\u2661\", \"friends_count\": 2259, \"location\": \"\", \"profile_link_color\": \"B40B43\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/458958646475378688/NEbFaZI2_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme11/bg.gif\", \"screen_name\": \"ero_love_ona\", \"lang\": \"ja\", \"profile_background_tile\": true, \"favourites_count\": 0, \"name\": \"\u30a8\u30c3\u30c1\u5927\u597d\u304d\uff20\u306a\u304a\uff20\u30a8\u30ed\u57a2\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Mar 04 09:45:40 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @watashi_kitsui: \u3010\u3084\u3063\u3066\u306f\u3044\u3051\u306a\u3044\u4e09\u539f\u5247\u3011\\n\\n1. \u5e78\u305b\u306a\u3068\u304d\u306b\u7d04\u675f\u3059\u308b\u306a\\n\\n2. \u6012\u3063\u3066\u308b\u3068\u304d\u306b\u8fd4\u4fe1\u3059\u308b\u306a\\n\\n3. \u60b2\u3057\u3044\u3068\u304d\u306b\u6c7a\u5fc3\u3059\u308b\u306a\\n\\n\u3058\u3083\u306a\u3044\u3068\u307e\u305f\u3000\u8ab0\u304b\u3092\u50b7\u3064\u3051\u3066\u3057\u307e\u3046\", \"in_reply_to_status_id\": null, \"id\": 489174331818143744, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/Lovepsychology1\\\" rel=\\\"nofollow\\\">\u30a4\u30f3\u30c6\u30b0\u30e9</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2597924221, \"indices\": [3, 18], \"id_str\": \"2597924221\", \"screen_name\": \"watashi_kitsui\", \"name\": \"\u3053\u308c\u3001\u672c\u97f3\u3002\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 193, \"id_str\": \"489174331818143744\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3010\u3084\u3063\u3066\u306f\u3044\u3051\u306a\u3044\u4e09\u539f\u5247\u3011\\n\\n1. \u5e78\u305b\u306a\u3068\u304d\u306b\u7d04\u675f\u3059\u308b\u306a\\n\\n2. \u6012\u3063\u3066\u308b\u3068\u304d\u306b\u8fd4\u4fe1\u3059\u308b\u306a\\n\\n3. \u60b2\u3057\u3044\u3068\u304d\u306b\u6c7a\u5fc3\u3059\u308b\u306a\\n\\n\u3058\u3083\u306a\u3044\u3068\u307e\u305f\u3000\u8ab0\u304b\u3092\u50b7\u3064\u3051\u3066\u3057\u307e\u3046\", \"in_reply_to_status_id\": null, \"id\": 488244438859137024, \"favorite_count\": 94, \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 193, \"id_str\": \"488244438859137024\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2597924221, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483948479685738496/3CltfrNk_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3387, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2597924221\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 526, \"description\": \"\u307f\u3093\u306a\u306e\u672c\u97f3\u3002\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483948479685738496/3CltfrNk_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2597924221/1404217430\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"watashi_kitsui\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3053\u308c\u3001\u672c\u97f3\u3002\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jul 01 12:18:26 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Sun Jul 13 08:52:00 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2238663199, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/440771648258453506/llY9cWJk_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 2499, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2238663199\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 7, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 23056, \"description\": \"\u8ab0\u3082\u304c\u6b32\u3057\u3044\u2661\u30c7\u30a3\u30ba\u30cb\u30fc\u306e\u58c1\u7d19\u3092\u8a2d\u5b9a\u3057\u3088\u3046\u266a\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/440771648258453506/llY9cWJk_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2238663199/1393923181\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"oshare_iphone\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u53b3\u9078\u3011\u30c7\u30a3\u30ba\u30cb\u30fc\u2606iphone\u58c1\u7d19\u96c6\u25a1\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Dec 10 05:50:15 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174331256098816, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/gal_ero\\\" rel=\\\"nofollow\\\">\u53ef\u611b\u3044\u304c\u5927\u597d\u304d\uff01</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174331256098816\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2472376711, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/466114821184684032/qafmAfMy_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 841, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2472376711\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 68389, \"description\": \"\u30d9\u30b9\u30c8\u30a2\u30d7\u30ea\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u306f\u7d20\u6575\u306a\u30a2\u30d7\u30ea\u3092\u3054\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u3002\", \"friends_count\": 988, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/466114821184684032/qafmAfMy_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2472376711/1399965417\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"app_collection\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30d9\u30b9\u30c8\u30a2\u30d7\u30ea\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu May 01 11:39:58 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174331226734592, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/gMcdDJ\\\" rel=\\\"nofollow\\\">\u6700\u65b0\u30cb\u30e5\u30fc\u30b9.jp\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489174331226734592\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 3, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2154620882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/429750302158233600/QWrhE1Pr_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 74, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2154620882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 705, \"description\": \"\u306e\u3093\u3061\u3083\u3093\u5927\u597d\u304d\uff5e\u266a\", \"friends_count\": 261, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/429750302158233600/QWrhE1Pr_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2154620882/1391295429\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"snow_kasumi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 104, \"name\": \"kill me\u2605\u21d2\u306e\u3093\u3061\u3083\u3093\u2606\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Oct 25 10:32:58 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Domuzz ablam iPhone 5s almis aglicam simdi aq ya\", \"in_reply_to_status_id\": null, \"id\": 489174331222921216, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174331222921216\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1551050024, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000175982587/YP1qvwwX.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485181146897326080/TxJT3sv8_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1087, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"1551050024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 2254, \"description\": \"Maybe One Day\", \"friends_count\": 1095, \"location\": \"\", \"profile_link_color\": \"00B300\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485181146897326080/TxJT3sv8_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1551050024/1403819420\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000175982587/YP1qvwwX.jpeg\", \"screen_name\": \"Yasemin_099\", \"lang\": \"tr\", \"profile_background_tile\": true, \"favourites_count\": 997, \"name\": \"\u00dc\u015eENGE\u00c7 BAYAN\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jun 27 16:53:54 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"tr\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"tr\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174331100905472, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/fizasiqupate\\\" rel=\\\"nofollow\\\">vbnjhgdfgh</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174331100905472\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2487900592, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/474804715373334528/IbMN3FN-_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 268, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2487900592\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 579, \"description\": \"\u4e0b\u30cd\u30bf\u3092\u540d\u8a00\u3063\u307d\u304f\u3001\u3069\u3053\u3068\u306a\u304f\u6df1\u307f\u3092\u611f\u3058\u3055\u305b\u308b\u611f\u3058\u306a\u8a00\u8449\u3092\u96c6\u3081\u305f\u30ea\u30ea\u30fc\u30d5\u30e9\u30f3\u30ad\u30fc\u306eBOT\u3067\u3059\u3002\u672c\u6c17\u3067\u3057\u3093\u307f\u308a\u4e0b\u30cd\u30bf\u3092\u8a9e\u308a\u307e\u3057\u3087\u3046\u3002\u7d76\u5bfe\u30a6\u30b1\u308b\u3068\u601d\u3044\u307e\u3059\u3002\\r\\n\u30d5\u30a9\u30ed\u30fc&RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\", \"friends_count\": 1810, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/474804715373334528/IbMN3FN-_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2487900592/1402037106\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"lilylilyfranky\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u4e0b\u30cd\u30bf\u3092\u5049\u5927\u306b\u8a9e\u308b\u3002\u30ea\u30ea\u30fc\u30d5\u30e9\u30f3\u30ad\u30fc\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Apr 16 07:26:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174330442383361, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/kyonyu_heaven\\\" rel=\\\"nofollow\\\">kyonyu_heaven</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174330442383361\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2588402767, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481936360807223296/5q6bcPd-_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1183, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2588402767\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 9, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 20139, \"description\": \"\u53b3\u9078\u3055\u308c\u305f\u5de8\u4e73\u306e\u5929\u56fd\u3078\u3088\u3046\u3053\u305d\u3002\u81f3\u9ad8\u306e\u30a8\u30ed\u30b9\u3092\u304a\u5c4a\u3051\u3057\u3066\u307e\u3059\u2661\u6c17\u306b\u5165\u3063\u305f\u3089RT\uff06\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u306d\u266a\", \"friends_count\": 246, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481936360807223296/5q6bcPd-_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2588402767/1403737868\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"kyonyu_heaven\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u53b3\u9078\u3011\u5de8\u4e73\u5929\u56fd\u3010\u81f3\u9ad8\u3011\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Jun 25 23:04:33 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Play a real fruity on your iPhone, #DoubleAgent from #Reflex Gaming... http://t.co/OpZjRUdg4G http://t.co/FzTFw9pudw\", \"in_reply_to_status_id\": null, \"id\": 489174329893339137, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://itunes.apple.com/us/app/reflex-fruit-machines/id680528964?

mt=8&uo=4\\\" rel=\\\"nofollow\\\">Reflex Fruit Machines on iOS</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [35, 47], \"text\": \"DoubleAgent\"}, {\"indices\": [53, 60], \"text\": \"Reflex\"}], \"urls\": [{\"url\": \"http://t.co/OpZjRUdg4G\", \"indices\": [71, 93], \"expanded_url\": \"http://goo.gl/TU8gBa\", \"display_url\": \"goo.gl/TU8gBa\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/HarmanRemi/status/489174329893339137/photo/1\", \"display_url\": \"pic.twitter.com/FzTFw9pudw\", \"url\": \"http://t.co/FzTFw9pudw\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnldgwIEAE0DfB.jpg\", \"id_str\": \"489174329717166081\", \"sizes\": {\"small\": {\"h\": 480, \"resize\": \"fit\", \"w\": 320}, \"large\": {\"h\": 480, \"resize\": \"fit\", \"w\": 320}, \"medium\": {\"h\": 480, \"resize\": \"fit\", \"w\": 320}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [94, 116], \"type\": \"photo\", \"id\": 489174329717166081, \"media_url\": \"http://pbs.twimg.com/media/BsnldgwIEAE0DfB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174329893339137\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2513717618, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471035672992948224/1CwV5IJC_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 8, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2513717618\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 16, \"description\": \"Love 2\", \"friends_count\": 23, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471035672992948224/1CwV5IJC_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"HarmanRemi\", \"lang\": \"en-GB\", \"profile_background_tile\": false, \"favourites_count\": 1, \"name\": \"remi harman\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed May 21 21:27:53 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @DudyshkinBoss: \u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489174329830023170, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/\\\" rel=\\\"nofollow\\\">\u3070ds\u3075\u3049s\u3075\u3049s\u3069</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2534761051, \"indices\": [3, 17], \"id_str\": \"2534761051\", \"screen_name\": \"DudyshkinBoss\", \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\"}], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489174329830023170\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3059\u3063\u3074\u3093\u304a\u3057\u3083\u3079\u308aCAS\u2661\\n\u30e2\u30a4\uff01iPhone\u304b\u3089\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u914d\u4fe1\u4e2d -\", \"in_reply_to_status_id\": null, \"id\": 489172239141437440, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/dwestee00\\\" rel=\\\"nofollow\\\">dousimasuka</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 11, \"id_str\": \"489172239141437440\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2534761051, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 107, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2534761051\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 143, \"description\": \"\u4eca\u6700\u3082\u30ce\u30ea\u306b\u306e\u3063\u3066\u3044\u308b\u795e\u7530\u6c99\u4e5f\u52a0\u3055\u307e\u3092\u5fdc\u63f4\u3059\u308b\u305f\u3081\u306e\u30b5\u30a4\u30c8\u3067\u3059\u3002\", \"friends_count\": 1931, \"location\": \"\u6771\u4eac\u90fd\u76ee\u9ed2\u533a\", \"profile_link_color\": \"B30033\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486064805472518144/bJaFRevZ_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2534761051/1404721922\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"DudyshkinBoss\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u795e\u7530\u6c99\u4e5f\u52a0 \u30a2\u30ca\u3068\u96ea\u306e\u5973\u738b\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri May 30 10:11:54 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:18:44 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2519539374, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487812015373557760/K81tYj0-_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 183, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2519539374\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 152, \"description\": \"\u3042\u306a\u305f\u306b\u304a\u5f97\u306a\u30cf\u30fc\u30b2\u30f3\u30c0\u30c3\u30c4\u306e\u6700\u65b0\u60c5\u5831\u3092\u307e\u3068\u3081\u3066\u30a2\u30c3\u30d7\uff01\u3069\u3093\u3069\u3093\u4f7f\u3063\u3066\u307f\u3066\u306d\u3002\", \"friends_count\": 2001, \"location\": \"TOKYO\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487812015373557760/K81tYj0-_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2519539374/1405138542\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"wulyzejidada\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u304a\u5f97\u306a\u30cf\u30fc\u30b2\u30f3\u30c0\u30c3\u30c4\u60c5\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat May 24 05:19:33 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174329658073088, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/kyonyu_heaven\\\" rel=\\\"nofollow\\\">kyonyu_heaven</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174329658073088\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2541607597, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/478577738232496129/dMVnmSaM_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3165, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2541607597\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 14, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 25955, \"description\": \"\u30aa\u30ca\u597d\u304d\u306e\u30a8\u30c3\u30c1\u306a\u5973\u306e\u5b50\u3060\u3088(*/\u03c9\uff3c*) \u30a8\u30ed\u30a8\u30ed\u306a\u30c4\u30a4\u30fc\u30c8\u3057\u304b\u3057\u306a\u3044\u3093\u3067\u697d\u3057\u3093\u3067\u3063\u3066\u304f\u3060\u3055\u3044(\u3003\uff89\u03c9\uff89)\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\u3067\u3059(\u3003\u8278\u3003)\", \"friends_count\": 1270, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/478577738232496129/dMVnmSaM_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2541607597/1402936901\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"yusa_ero\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u2606\u3085\u3055\uff20\u30a8\u30ed\u57a2\u2606\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jun 02 14:22:49 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174329330905088, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9\u2606\u3000\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489174329330905088\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 3, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2553936632, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483620668102045696/hF28KqqP_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 131, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2553936632\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 54, \"description\": \"(\uff61-_-\uff61)\", \"friends_count\": 143, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483620668102045696/hF28KqqP_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2553936632/1404139142\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tsubasa__u\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 20, \"name\": \"\u3069\u3079\u3064\u3070\u3055\", \"notifications\": false, \"url\": null, \"created_at\": \"Sun Jun 08 05:11:06 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174328911474688, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/inthe_skirt\\\" rel=\\\"nofollow\\\">\u30de\u30b9\u30bf\u30fc\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30c4\u30a4\u30c3\u30bf\u30fc</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174328911474688\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2588402540, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481940172225789952/72Z9r282_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1404, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2588402540\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 14, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 20400, \"description\": \"\u30d1\u30f3\u30c1\u30e9\u2026\u898b\u305f\u3044\u3063\uff01\u8997\u304d\u305f\u3044\uff01\uff01\u3063\u3066\u30e4\u30c4\u306f\u3061\u3087\u3063\u3068\u898b\u3066\u3063\u3066\uff57\u53b3\u9078\u3057\u305f\u30d1\u30f3\u30c1\u30e9\u753b\u50cf\u96c6\u3081\u3066\u308b\u3002\u6c17\u306b\u5165\u3063\u305f\u753b\u50cf\u306fRT\u3057\u3066\u304f\u308c\u308b\u3068\u3046\u308c\u3057\u3044\u2606#\u30d1\u30f3\u30c1\u30e9\", \"friends_count\": 315, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481940172225789952/72Z9r282_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2588402540/1403738626\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"skirt_heaven\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u53b3\u9078\u3011\u30d1\u30f3\u30c1\u30e9\u5929\u56fd\u3010\u30a8\u30ed\u3011\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Jun 25 23:17:00 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Iphone repairs and unlocks-providing sure thing respect otherwise fret line: Vaev\", \"in_reply_to_status_id\": null, \"id\": 489174328726917121, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitterfeed.com\\\" rel=\\\"nofollow\\\">twitterfeed</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174328726917121\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 1240913870, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3505596299/924ebdb53cb8ccb8b599b878e6fc96f6_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 15, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"1240913870\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 30342, \"description\": \"\", \"friends_count\": 1, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3505596299/924ebdb53cb8ccb8b599b878e6fc96f6_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"HamphreyHailey\", \"lang\": \"ru\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"HamphreyHailey\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Mar 04 09:01:21 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Request: Tweak for Video Streaming on Smart TV without using Apple TV by live streaming concept alr\u2026 http://t.co/jdrgzzRy1y\", \"in_reply_to_status_id\": null, \"id\": 489174328684978176, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://rss2twi.com\\\" rel=\\\"nofollow\\\">rss2twi.com</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/jdrgzzRy1y\", \"indices\": [101, 123], \"expanded_url\": \"http://rss2twi.com/link?

post_id=1742912\", \"display_url\": \"rss2twi.com/link?post_id=1\u2026\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174328684978176\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2390757745, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/444773262820511746/2UfeHLOM_normal.png\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 403, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2390757745\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 8, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 25476, \"description\": \"iPhone, iOSthemes, jailbreak of the topic in Reddit\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/444773262820511746/2UfeHLOM_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"Reddit_iPhone\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 28109, \"name\": \"Reddit iPhone\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Mar 15 09:52:00 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Endorse kakah\\\"@HebiAsli: Hay @luthfinzlfkr @nixiepiaaf @namiutm Yuk follow @alysyahrief & ikutan kuis #KuisAlysyahrief Berhadiah iPhone 5. \\\"\", \"in_reply_to_status_id\": null, \"id\": 489174328248791040, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2459427170, \"indices\": [14, 23], \"id_str\": \"2459427170\", \"screen_name\": \"HebiAsli\", \"name\": \"#PrayForGAZA\"}, {\"id\": 192258614, \"indices\": [29, 42], \"id_str\": \"192258614\", \"screen_name\": \"luthfinzlfkr\", \"name\": \"Luthfi Nz\"}, {\"id\": 1354193768, \"indices\": [43, 54], \"id_str\": \"1354193768\", \"screen_name\": \"nixiepiaaf\", \"name\": \"nixiepia\"}, {\"id\": 1945588898, \"indices\": [55, 63], \"id_str\": \"1945588898\", \"screen_name\": \"namiutm\", \"name\": \"Nami\"}, {\"id\": 2174374680, \"indices\": [75, 87], \"id_str\": \"2174374680\", \"screen_name\": \"alysyahrief\", \"name\": \"Aliando Syahrief\"}], \"hashtags\": [{\"indices\": [106, 122], \"text\": \"KuisAlysyahrief\"}], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174328248791040\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 192258614, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/708349648/528dd3e9222c4b97585f1f6378b18979.jpeg\", \"verified\": false, \"profile_text_color\": \"000000\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/477113172118081536/L4wWEi4U_normal.jpeg\", \"profile_sidebar_fill_color\": \"81EB78\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 352, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"192258614\", \"profile_background_color\": \"11D43E\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 16678, \"description\": \"2 people 1 story 1 love, MetasaIkhsan!\", \"friends_count\": 280, \"location\": \"\", \"profile_link_color\": \"F20808\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/477113172118081536/L4wWEi4U_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/192258614/1392562808\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/708349648/528dd3e9222c4b97585f1f6378b18979.jpeg\", \"screen_name\": \"luthfinzlfkr\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 17, \"name\": \"Luthfi Nz\", \"notifications\": false, \"url\": null, \"created_at\": \"Sat Sep 18 16:40:14 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"in\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"in\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ero_app_sokuho: \u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174328185868288, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/niji_ero_club\\\" rel=\\\"nofollow\\\">niji_ero_club</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2478456882, \"indices\": [3, 18], \"id_str\": \"2478456882\", \"screen_name\": \"ero_app_sokuho\", \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [74, 96], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"source_status_id_str\": \"489171331204665344\", \"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"source_status_id\": 489171331204665344, \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489174328185868288\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u3053\u308c\u306f\u30e4\u30d0\u30a4\uff01\\n\u7f8e\u5973\u3068\u51fa\u4f1a\u3048\u3066\u3044\u3084\u3089\u3057\u3044\u3053\u3068\u307e\u3067\u3067\u304d\u3061\u3083\u3063\u305f\u30a2\u30d7\u30ea\uff57\uff57\\n\\niPhone\u30fbAndroid\\n\u3000\u2192http://t.co/De3FY5jpFJ\\n\\n\u30a8\u30ed\u7387\u304c\u30cf\u30f3\u30d1\u306a\u3044\uff01\u767b\u9332\u30d5\u30ea\u30fc\u3067\u7121\u6599\u3060\u304b\u3089DL\u3057\u3066\u304a\u3051\uff57 http://t.co/AsIfGu7tiA\", \"in_reply_to_status_id\": null, \"id\": 489171331204665344, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/app_deai\\\" rel=\\\"nofollow\\\">app_deai</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/De3FY5jpFJ\", \"indices\": [54, 76], \"expanded_url\": \"http://app-dl.net/twi/8\", \"display_url\": \"app-dl.net/twi/8\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ero_app_sokuho/status/489171331204665344/photo/1\", \"display_url\": \"pic.twitter.com/AsIfGu7tiA\", \"url\": \"http://t.co/AsIfGu7tiA\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\", \"id_str\": \"489171331020103680\", \"sizes\": {\"small\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"large\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"medium\": {\"h\": 419, \"resize\": \"fit\", \"w\": 306}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [107, 129], \"type\": \"photo\", \"id\": 489171331020103680, \"media_url\": \"http://pbs.twimg.com/media/Bsniu9vCIAAqUxB.jpg\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 51, \"id_str\": \"489171331204665344\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2478456882, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1061, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2478456882\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 64073, \"description\": \"\u30a8\u30ed\u597d\u304d\u5fc5\u898b\uff01\u30a8\u30ed\u304f\u3066\u697d\u3057\u3044\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3088\uff01\", \"friends_count\": 1006, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/467223410343309313/1kZk7wUW_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2478456882/1400229710\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"ero_app_sokuho\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u30a2\u30d7\u30ea\u901f\u5831\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon May 05 14:48:34 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:15:08 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2471007692, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/463582449872543744/Q8Ky2pYE_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 4476, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2471007692\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 25, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 69655, \"description\": \"\u30a2\u30cb\u30e1\u30a8\u30ed\u753b\u50cf\u3084\u53ef\u611b\u3044\u5973\u306e\u5b50\u306e\u753b\u50cf\u3092\u8cbc\u308a\u307e\u3059\uff01\u4ed6\u306b\u3082\u30a8\u30ed\u753b\u50cf\u3092\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u304f\u308a\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30fc\u3001RT\u6b53\u8fce\uff01\u753b\u50cf\u3092RT\u3057\u3066\u304f\u308c\u308b\u4eba\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304d\u307e\u3059\uff01\", \"friends_count\": 3122, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/463582449872543744/Q8Ky2pYE_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2471007692/1399361891\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"niji_ero_club\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u4e8c\u6b21\u5143\u30a8\u30ed\u753b\u50cf\u3092\u8cbc\u308b\u4f1a\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Apr 30 13:59:21 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"A new achievement: `Landscaper`. Can you get it too?

http://t.co/agVWzErgex #iphone,#iphonegames,#gameinsight\", \"in_reply_to_status_id\": null, \"id\": 489174327481614337, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://gigam.es/TribezAndCastlez_tw\\\" rel=\\\"nofollow\\\">The Tribez & Castlez</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [76, 83], \"text\": \"iphone\"}, {\"indices\": [84, 96], \"text\": \"iphonegames\"}, {\"indices\": [97, 109], \"text\": \"gameinsight\"}], \"urls\": [{\"url\": \"http://t.co/agVWzErgex\", \"indices\": [53, 75], \"expanded_url\": \"http://gigam.es/Castlez_tw\", \"display_url\": \"gigam.es/Castlez_tw\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174327481614337\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 480649256, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme10/bg.gif\", \"verified\": false, \"profile_text_color\": \"3D1957\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/472877899524345856/EQOUeOhG_normal.jpeg\", \"profile_sidebar_fill_color\": \"7AC3EE\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 72, \"profile_sidebar_border_color\": \"65B0DA\", \"id_str\": \"480649256\", \"profile_background_color\": \"8C1CDB\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 285, \"description\": \"Wife and mummy xx endo suffer #ilovemyson #endosisters #lovemyhubby #ilovemydaughter.\", \"friends_count\": 214, \"location\": \"northants\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/472877899524345856/EQOUeOhG_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/480649256/1348694223\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme10/bg.gif\", \"screen_name\": \"DonnaDickens2\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 41, \"name\": \"Donna Dickens\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Feb 01 18:48:46 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174327305060353, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/gMcdDJ\\\" rel=\\\"nofollow\\\">\u6700\u65b0\u30cb\u30e5\u30fc\u30b9.jp\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489174327305060353\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 3, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2451525600, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/460429447187816449/8l0Aot80_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2451525600\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 70, \"description\": \"\", \"friends_count\": 7, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/460429447187816449/8l0Aot80_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2451525600/1397835042\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"colaaaaaKiKi\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u548c\u5f25\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Apr 18 15:27:11 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Leaked iPhone 6 #sapphire screen tough, but not unbreakable \u25ba http://t.co/57ztC9cjV3\\nvia @CNET\", \"in_reply_to_status_id\": null, \"id\": 489174326646956032, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bufferapp.com\\\" rel=\\\"nofollow\\\">Buffer</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 30261067, \"indices\": [89, 94], \"id_str\": \"30261067\", \"screen_name\": \"CNET\", \"name\": \"CNET\"}], \"hashtags\": [{\"indices\": [16, 25], \"text\": \"sapphire\"}], \"urls\": [{\"url\": \"http://t.co/57ztC9cjV3\", \"indices\": [62, 84], \"expanded_url\": \"http://cnet.co/1mXEFF0\", \"display_url\": \"cnet.co/1mXEFF0\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174326646956032\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 41652749, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/105048412/Background_300dpi_1800pxW_Rv3.jpg\", \"verified\": false, \"profile_text_color\": \"616061\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/377862314/PA241410_normal.JPG\", \"profile_sidebar_fill_color\": \"000000\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/d6knAK1tZw\", \"indices\": [0, 22], \"expanded_url\": \"http://gplus.to/DJFrankie\", \"display_url\": \"gplus.to/DJFrankie\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 5881, \"profile_sidebar_border_color\": \"181A1E\", \"id_str\": \"41652749\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 529, \"is_translation_enabled\": false, \"utc_offset\": -25200, \"statuses_count\": 69760, \"description\": \"Social Media | Travel | Food | Science | Technology | Business | Art | Architecture | Photography\", \"friends_count\": 6458, \"location\": \"Los Angeles, CA\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/377862314/PA241410_normal.JPG\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/105048412/Background_300dpi_1800pxW_Rv3.jpg\", \"screen_name\": \"DJFrankieee\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 2319, \"name\": \"Francis Unson\", \"notifications\": false, \"url\": \"http://t.co/d6knAK1tZw\", \"created_at\": \"Thu May 21 19:07:15 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"I'm now an A-List celebrity in Kim Kardashian: Hollywood. Come join me and become famous too by playing on iPhone! http://t.co/DiXOvBW6wQ\", \"in_reply_to_status_id\": null, \"id\": 489174325895766016, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://www.apple.com\\\" rel=\\\"nofollow\\\">iOS</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/DiXOvBW6wQ\", \"indices\": [115, 137], \"expanded_url\": \"http://itunes.apple.com/app/id860822992\", \"display_url\": \"itunes.apple.com/app/id860822992\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174325895766016\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 291446335, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/478948192893956096/ZOQyZfWT.jpeg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483863905991528448/HfOZ2v-w_normal.jpeg\", \"profile_sidebar_fill_color\": \"F6F6F6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"https://t.co/8E8uzjH0sJ\", \"indices\": [0, 23], \"expanded_url\": \"https://twitter.com/michael5sos/status/172603916259819520\", \"display_url\": \"twitter.com/michael5sos/st\u2026\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 1701, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"291446335\", \"profile_background_color\": \"ACDED6\", \"listed_count\": 21, \"is_translation_enabled\": false, \"utc_offset\": -10800, \"statuses_count\": 4225, \"description\": \"what is bio // \u2661griersxcaniff\u2661\", \"friends_count\": 1253, \"location\": \"canada\", \"profile_link_color\": \"038543\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483863905991528448/HfOZ2v-w_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/291446335/1404195904\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/478948192893956096/ZOQyZfWT.jpeg\", \"screen_name\": \"mendesxxirwin\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 9376, \"name\": \"christine\", \"notifications\": false, \"url\": \"https://t.co/8E8uzjH0sJ\", \"created_at\": \"Mon May 02 01:26:18 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Atlantic Time (Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174325396664320, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://bit.ly/gMcdDJ\\\" rel=\\\"nofollow\\\">\u6700\u65b0\u30cb\u30e5\u30fc\u30b9.jp\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489174325396664320\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 3, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2438204449, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/483588443067273216/G9jsDJ-d_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 142, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2438204449\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 405, \"description\": \"\u8d8a\u4e2d\u261e\u6b66\u554611h\", \"friends_count\": 149, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/483588443067273216/G9jsDJ-d_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2438204449/1404527855\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"sksp2283\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 1109, \"name\": \"\u54b2\u5e0c\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Apr 11 08:54:46 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Hate when I'm about to text somebody back then somebody else with an iPhone text me at the same time and I hit their message instead\", \"in_reply_to_status_id\": null, \"id\": 489174325153370112, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174325153370112\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 62900514, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000847196240/cbc99e07688d52953f0da4101dd6f199_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 654, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"62900514\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 28998, \"description\": \"\", \"friends_count\": 425, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000847196240/cbc99e07688d52953f0da4101dd6f199_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"Shahonlowry\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 2915, \"name\": \"MC Hon\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Aug 04 19:13:05 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Quito\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174324486471681, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/CdRegaro610\\\" rel=\\\"nofollow\\\">\u672c\u7530\u540d\u8a00\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174324486471681\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2588798892, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482016806702288897/cJmgQnww_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 313, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2588798892\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 496, \"description\": \"\u30b5\u30c3\u30ab\u30fc\u65e5\u672c\u4ee3\u8868\u306e\u672c\u7530\u572d\u4ecb\u5148\u9031\u306e\u540d\u8a00\u3001\u683c\u8a00\u96c6\u3067\u3059\u3002\u4e16\u754c\u3067\u6d3b\u8e8d\u3059\u308b\u30c8\u30c3\u30d7\u9078\u624b\u304c\u3001\u30b5\u30c3\u30ab\u30fc\u3001\u4eba\u751f\u306b\u3064\u3044\u3066\u71b1\u304f\u3064\u3076\u3084\u304d\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30fc\u3001\u30ea\u30c4\u30a4\u30fc\u30c8\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1964, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482016806702288897/cJmgQnww_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2588798892/1403757635\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"gensen_honda\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u53b3\u9078\u3011\u672c\u7530\u572d\u4ecb\u540d\u8a00\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Thu Jun 26 04:15:13 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:02 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"The Kingdom's citizens are happy to have Scarecrow! Try to build it too! http://t.co/agVWzErgex #iphone,#iphonegames,#gameinsight\", \"in_reply_to_status_id\": null, \"id\": 489174324025511936, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://gigam.es/TribezAndCastlez_tw\\\" rel=\\\"nofollow\\\">The Tribez & Castlez</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [96, 103], \"text\": \"iphone\"}, {\"indices\": [104, 116], \"text\": \"iphonegames\"}, {\"indices\": [117, 129], \"text\": \"gameinsight\"}], \"urls\": [{\"url\": \"http://t.co/agVWzErgex\", \"indices\": [73, 95], \"expanded_url\": \"http://gigam.es/Castlez_tw\", \"display_url\": \"gigam.es/Castlez_tw\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174324025511936\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 480649256, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme10/bg.gif\", \"verified\": false, \"profile_text_color\": \"3D1957\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/472877899524345856/EQOUeOhG_normal.jpeg\", \"profile_sidebar_fill_color\": \"7AC3EE\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 72, \"profile_sidebar_border_color\": \"65B0DA\", \"id_str\": \"480649256\", \"profile_background_color\": \"8C1CDB\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 285, \"description\": \"Wife and mummy xx endo suffer #ilovemyson #endosisters #lovemyhubby #ilovemydaughter.\", \"friends_count\": 214, \"location\": \"northants\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/472877899524345856/EQOUeOhG_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/480649256/1348694223\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme10/bg.gif\", \"screen_name\": \"DonnaDickens2\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 41, \"name\": \"Donna Dickens\", \"notifications\": false, \"url\": null, \"created_at\": \"Wed Feb 01 18:48:46 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:01 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"I'm now an A-List celebrity in Kim Kardashian: Hollywood. Come join me and become famous too by playing on iPhone! http://t.co/EteX7p0NDW\", \"in_reply_to_status_id\": null, \"id\": 489174322854907904, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://www.apple.com\\\" rel=\\\"nofollow\\\">iOS</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/EteX7p0NDW\", \"indices\": [115, 137], \"expanded_url\": \"http://itunes.apple.com/app/id860822992\", \"display_url\": \"itunes.apple.com/app/id860822992\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174322854907904\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 236210608, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/381571887/rust-and-paint.jpg\", \"verified\": false, \"profile_text_color\": \"205C76\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/460946046706012160/i0G8CUEF_normal.jpeg\", \"profile_sidebar_fill_color\": \"F8D058\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 157, \"profile_sidebar_border_color\": \"F8D058\", \"id_str\": \"236210608\", \"profile_background_color\": \"205C76\", \"listed_count\": 1, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 1979, \"description\": \"ECU student, psychology/ philosophy undergrad, music enthusiast, animal activist, imaginary adventurer, amateur philosopher\", \"friends_count\": 207, \"location\": \"East Coast\", \"profile_link_color\": \"53BBE8\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/460946046706012160/i0G8CUEF_normal.jpeg\", \"following\": false, \"geo_enabled\": true, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/236210608/1357523035\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/381571887/rust-and-paint.jpg\", \"screen_name\": \"JessEdwards1\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 379, \"name\": \"Jessi Edwards\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jan 10 02:11:16 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:01 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"#desi,#porn,#sex,#iphone,#android, Asian Hot Babe Got Fucked In Her Fresh Looking Wet Puss http://t.co/YbsVE12LVW\", \"in_reply_to_status_id\": null, \"id\": 489174321752203264, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tweetadder.com\\\" rel=\\\"nofollow\\\">TweetAdder v4</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"desi\"}, {\"indices\": [6, 11], \"text\": \"porn\"}, {\"indices\": [12, 16], \"text\": \"sex\"}, {\"indices\": [17, 24], \"text\": \"iphone\"}, {\"indices\": [25, 33], \"text\": \"android\"}], \"urls\": [{\"url\": \"http://t.co/YbsVE12LVW\", \"indices\": [91, 113], \"expanded_url\": \"http://xoonii.com/asian-hot-babe-got-fucked-in-her-fresh-looking-wet-pussy/\", \"display_url\": \"xoonii.com/asian-hot-babe\u2026\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174321752203264\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2431968716, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme18/bg.gif\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/457191548279476224/f3wq1wT1_normal.jpeg\", \"profile_sidebar_fill_color\": \"F6F6F6\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/izQHnpLS67\", \"indices\": [0, 22], \"expanded_url\": \"http://xoonii.com\", \"display_url\": \"xoonii.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 380, \"profile_sidebar_border_color\": \"EEEEEE\", \"id_str\": \"2431968716\", \"profile_background_color\": \"ACDED6\", \"listed_count\": 9, \"is_translation_enabled\": false, \"utc_offset\": 18000, \"statuses_count\": 68743, \"description\": \"#teen,#pussy,#movie,#iphone,#sex,#porn\\n#pics,#anal,#teen,#hot,\\n#porn,#sex,#hot,#teen\\n#nipples,#boobs,#lesbian,\", \"friends_count\": 0, \"location\": \"Grand Rapids,MI,US\", \"profile_link_color\": \"038543\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/457191548279476224/f3wq1wT1_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2431968716/1397837974\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme18/bg.gif\", \"screen_name\": \"AsianPornX\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Asian Porn X\", \"notifications\": false, \"url\": \"http://t.co/izQHnpLS67\", \"created_at\": \"Mon Apr 07 12:29:47 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Islamabad\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:01 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @tokutoku_appli: \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 ht\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174321546268672, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tinyurl.com/pvjm8ho\\\" rel=\\\"nofollow\\\">\u885d\u6483\u306a\u4e8b\u5b9f\u3000\u3000\u3000\u3000</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2479820437, \"indices\": [3, 18], \"id_str\": \"2479820437\", \"screen_name\": \"tokutoku_appli\", \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [59, 81], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [107, 129], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"source_status_id_str\": \"489173858079891456\", \"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"source_status_id\": 489173858079891456, \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489174321546268672\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u30ac\u30c1\u30e3\u3067\u306a\u3093\u3068\uff01\\n\u300e\u52a0\u85e4\u6e05\u6b63\u300f\u3042\u305f\u3063\u305f\u30fc\u2606\\n\u3000\\niPhone\\n\u21d2http://t.co/0tL4z5oXrq\\n(\u53f3\u4e0aSafari\u3067\u958b\u304f)\\n\u3000\\nAndroid\\n\u21d2http://t.co/DSiZzBV3eO\\n\u3000\\n\u904b\u547d\u3084\u2661 http://t.co/jazh3g3nlu\", \"in_reply_to_status_id\": null, \"id\": 489173858079891456, \"favorite_count\": 3, \"source\": \"<a href=\\\"http://yahoo.co.jp\\\" rel=\\\"nofollow\\\">2e42ac19-56e6-4401-94cf-75a1c970</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/0tL4z5oXrq\", \"indices\": [39, 61], \"expanded_url\": \"http://urx.nu/aaSu\", \"display_url\": \"urx.nu/aaSu\"}, {\"url\": \"http://t.co/DSiZzBV3eO\", \"indices\": [87, 109], \"expanded_url\": \"http://urx.nu/aaSy\", \"display_url\": \"urx.nu/aaSy\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/tokutoku_appli/status/489173858079891456/photo/1\", \"display_url\": \"pic.twitter.com/jazh3g3nlu\", \"url\": \"http://t.co/jazh3g3nlu\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\", \"id_str\": \"489173857664655360\", \"sizes\": {\"large\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"small\": {\"h\": 559, \"resize\": \"fit\", \"w\": 340}, \"medium\": {\"h\": 741, \"resize\": \"fit\", \"w\": 450}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [117, 139], \"type\": \"photo\", \"id\": 489173857664655360, \"media_url\": \"http://pbs.twimg.com/media/BsnlCCOCYAAcyyF.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 283, \"id_str\": \"489173858079891456\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2479820437, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 189, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2479820437\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 3, \"is_translation_enabled\": false, \"utc_offset\": 32400, \"statuses_count\": 1, \"description\": \"\u5f79\u7acb\u3064\u30a2\u30d7\u30ea\u2606\u6687\u3064\u3076\u3057\u306b\u6700\u9ad8\u306e\u30a2\u30d7\u30ea\u2606\u795e\u30b2\u30fc\u306a\u3069\u3092\u7d39\u4ecb\u3059\u308b\u3088\u3002\u3002\u3002\u7a7a\u3044\u305f\u6642\u9593\u306f\u30a2\u30d7\u30ea\u3067\u3072\u3064\u307e\u2026\u6687\u3064\u3076\u3057\u3060(\uff61\uff65 \u03c9)\u309e\", \"friends_count\": 0, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482778786845315072/bKYQVWy7_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"tokutoku_appli\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u5f97\u3005\u7121\u6599\u30a2\u30d7\u30ea\u266a\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue May 06 13:15:15 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": \"Irkutsk\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:25:10 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 555842431, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/482421953546825728/vgr8TemO_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 41, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"555842431\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 54, \"description\": \"\u77e5\u591a \u5de5\u696d2\u5e74 \u30d0\u30b9\u30b1\u90e8 \u30ed\u30de\u30dd\u30eb\u884c\u304d\u305f\u3044\u30fc\", \"friends_count\": 45, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/482421953546825728/vgr8TemO_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/555842431/1403625789\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"crossbone59\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 17, \"name\": \"\u3068\u3046\u3054\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Apr 17 09:59:18 +0000 2012\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:01 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Australia Courses 75. Grammar 1: Sentence Structure - St. Hilda's School http://t.co/Ol1CjXWBNU #iTunesU #iTunes #iPhone #Apple #Mac\", \"in_reply_to_status_id\": null, \"id\": 489174321340751872, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://blog.77jp.net\\\" rel=\\\"nofollow\\\">Top 10 iTunes U</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [96, 104], \"text\": \"iTunesU\"}, {\"indices\": [105, 112], \"text\": \"iTunes\"}, {\"indices\": [113, 120], \"text\": \"iPhone\"}, {\"indices\": [121, 127], \"text\": \"Apple\"}, {\"indices\": [128, 132], \"text\": \"Mac\"}], \"urls\": [{\"url\": \"http://t.co/Ol1CjXWBNU\", \"indices\": [73, 95], \"expanded_url\": \"http://tinyurl.com/pvgf5qc\", \"display_url\": \"tinyurl.com/pvgf5qc\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174321340751872\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2457821562, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme3/bg.gif\", \"verified\": false, \"profile_text_color\": \"634047\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/458585855347548160/ObJZcdjc_normal.png\", \"profile_sidebar_fill_color\": \"E3E2DE\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}, \"description\": {\"urls\": [{\"url\": \"http://t.co/BIIZY2zulT\", \"indices\": [0, 22], \"expanded_url\": \"http://j.mp/1mMfen3\", \"display_url\": \"j.mp/1mMfen3\"}, {\"url\": \"http://t.co/UBaFeqTc4O\", \"indices\": [133, 155], \"expanded_url\": \"http://j.mp/YolpPN\", \"display_url\": \"j.mp/YolpPN\"}]}}, \"followers_count\": 133, \"profile_sidebar_border_color\": \"D3D2CF\", \"id_str\": \"2457821562\", \"profile_background_color\": \"EDECE9\", \"listed_count\": 4, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 99671, \"description\": \"http://t.co/BIIZY2zulT iTunes Store Top 10 iTunes U. United States, China, Korea, United Kingdom, France, Australia, Germany, Japan, http://t.co/UBaFeqTc4O\", \"friends_count\": 17, \"location\": \"\", \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/458585855347548160/ObJZcdjc_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme3/bg.gif\", \"screen_name\": \"iturank\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Top 10 iTunes U\", \"notifications\": false, \"url\": \"http://t.co/UBaFeqTc4O\", \"created_at\": \"Tue Apr 22 08:34:58 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:01 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"free porn: Sweet Asian Girl Receives Vicious Doggy #sex #movie #hot #iPhone http://t.co/RlVQdkzIAW\", \"in_reply_to_status_id\": null, \"id\": 489174320242253825, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tweetadder.com\\\" rel=\\\"nofollow\\\">TweetAdder v4</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [51, 55], \"text\": \"sex\"}, {\"indices\": [56, 62], \"text\": \"movie\"}, {\"indices\": [63, 67], \"text\": \"hot\"}, {\"indices\": [68, 75], \"text\": \"iPhone\"}], \"urls\": [{\"url\": \"http://t.co/RlVQdkzIAW\", \"indices\": [76, 98], \"expanded_url\": \"http://bit.ly/1fQJugJ\", \"display_url\": \"bit.ly/1fQJugJ\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174320242253825\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2585629135, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481400425384402944/GFKrLlAu_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 318, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2585629135\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 14718, \"description\": \"\", \"friends_count\": 63, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481400425384402944/GFKrLlAu_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2585629135/1403609789\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"BusGropes\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Bus Gropes\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jun 24 11:35:12 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:01 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174320162160640, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/FqRegaro610\\\" rel=\\\"nofollow\\\">\u30a8\u30ed\u5409\u306e\u6559\u3048</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174320162160640\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [114, 136], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174172442980352\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2578133024, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 794, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2578133024\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 2, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 656, \"description\": \"\u601d\u308f\u305a\u4eba\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3001\u660e\u65e5\u304b\u3089\u4f7f\u3048\u308b\u30aa\u30e2\u30b7\u30ed\u96d1\u5b66\u3070\u304b\u308a\u96c6\u3081\u307e\u3057\u305f\u3002\u3078\u3048\uff5e\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\uff01\", \"friends_count\": 1422, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/479870870924455937/VBkAEk9k_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2578133024/1403245357\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"trivia_trivia5\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\", \"notifications\": false, \"url\": null, \"created_at\": \"Fri Jun 20 06:06:37 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:26:25 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2609454152, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/486111353073967105/I235yoqH_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 331, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2609454152\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"is_translation_enabled\": false, \"utc_offset\": null, \"statuses_count\": 307, \"description\": \"\u3061\u3087\u3063\u3068\u3048\u3063\u3061\u306a\u96d1\u5b66\u30fb\u5909\u614b\u306a\u3053\u3068\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\", \"friends_count\": 1965, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/486111353073967105/I235yoqH_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2609454152/1404733383\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"eroyoshi_oshie\", \"lang\": \"ja\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"\u30a8\u30ed\u5409\u306e\u6559\u3048\", \"notifications\": false, \"url\": null, \"created_at\": \"Mon Jul 07 11:32:48 +0000 2014\", \"contributors_enabled\": false, \"time_zone\": null, \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"ja\", \"created_at\": \"Tue Jul 15 22:27:01 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"ja\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"#porn,#sex,#pussy,#naked,#iphone,#teen,#xxx,#hot Brazen Hussy Rebeca Is Screwed Bad In Her http://t.co/QJkue1MFhm\", \"in_reply_to_status_id\": null, \"id\": 489174319897911297, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://tweetadder.com\\\" rel=\\\"nofollow\\\">TweetAdder v4</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"porn\"}, {\"indices\": [6, 10], \"text\": \"sex\"}, {\"indices\": [11, 17], \"text\": \"pussy\"}, {\"indices\": [18, 24], \"text\": \"naked\"}, {\"indices\": [25, 32], \"text\": \"iphone\"}, {\"indices\": [33, 38], \"text\": \"teen\"}, {\"indices\": [39, 43], \"text\": \"xxx\"}, {\"indices\": [44, 48], \"text\": \"hot\"}], \"urls\": [{\"url\": \"http://t.co/QJkue1MFhm\", \"indices\": [91, 113], \"expanded_url\": \"http://xlotion.com/brazen-hussy-rebeca-is-screwed-bad-in-her-ass-hole-while-bianca-is-fondling-her-pussy/\", \"display_url\": \"xlotion.com/brazen-hussy-r\u2026\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174319897911297\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 2270588815, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/457189788987031552/sFAkwF0g_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 3372, \"profile_sidebar_border_color\": \"C0DEED\", \"id_str\": \"2270588815\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 8, \"is_translation_enabled\": false, \"utc_offset\": 19800, \"statuses_count\": 74502, \"description\": \"Explorer. Passionate student. Unable to type with boxing gloves on. Prone to fits of apathy. Troublemaker.\", \"friends_count\": 56, \"location\": \"US\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/457189788987031552/sFAkwF0g_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2270588815/1397837548\", \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\", \"screen_name\": \"KukuWilliam\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"name\": \"Boob Rub\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Dec 31 16:44:17 +0000 2013\", \"contributors_enabled\": false, \"time_zone\": \"Chennai\", \"protected\": false, \"default_profile\": true, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:00 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Desde que veo anime en el iPhone no puedo spamear al respecto XD\", \"in_reply_to_status_id\": null, \"id\": 489174319583748096, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": []}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174319583748096\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 123685351, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/843089452/24b5f4af74783b9e5f9e7ace582aae94.gif\", \"verified\": false, \"profile_text_color\": \"0F0B12\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/415343470258049024/zAfaXqLd_normal.jpeg\", \"profile_sidebar_fill_color\": \"DE7CED\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"https://t.co/eSJ5CghUx3\", \"indices\": [0, 23], \"expanded_url\": \"https://www.facebook.com/SunaoShiratori\", \"display_url\": \"facebook.com/SunaoShiratori\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 221, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"123685351\", \"profile_background_color\": \"D40CD4\", \"listed_count\": 5, \"is_translation_enabled\": false, \"utc_offset\": -21600, \"statuses_count\": 22658, \"description\": \"Leader at @VersaillesPQ_GT ST. I'm not good at talking about me, I'm a girl, physician (MD), otaku, cosplayer, fujoshi, writer.\", \"friends_count\": 127, \"location\": \"Guatemala\", \"profile_link_color\": \"701A67\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/415343470258049024/zAfaXqLd_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/123685351/1348900379\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/843089452/24b5f4af74783b9e5f9e7ace582aae94.gif\", \"screen_name\": \"SunaoShiratori\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 1327, \"name\": \"Sunao (\u767d\u9ce5 \u7d20\u76f4)\", \"notifications\": false, \"url\": \"https://t.co/eSJ5CghUx3\", \"created_at\": \"Tue Mar 16 22:37:38 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Central America\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"lang\": \"es\", \"created_at\": \"Tue Jul 15 22:27:00 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"es\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @ForbesTech: The best iPhone camera apps you'll find this year: http://t.co/p7IY5vsChs http://t.co/gmTxk9REoV\", \"in_reply_to_status_id\": null, \"id\": 489174319449534464, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://about.twitter.com/products/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 14885549, \"indices\": [3, 14], \"id_str\": \"14885549\", \"screen_name\": \"ForbesTech\", \"name\": \"Forbes Tech News\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/p7IY5vsChs\", \"indices\": [67, 89], \"expanded_url\": \"http://onforb.es/1nt7P9v\", \"display_url\": \"onforb.es/1nt7P9v\"}], \"media\": [{\"source_status_id_str\": \"489171309021388800\", \"expanded_url\": \"http://twitter.com/ForbesTech/status/489171309021388800/photo/1\", \"display_url\": \"pic.twitter.com/gmTxk9REoV\", \"url\": \"http://t.co/gmTxk9REoV\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsnitp4IgAEuEHz.png\", \"source_status_id\": 489171309021388800, \"id_str\": \"489171308509691905\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [90, 112], \"type\": \"photo\", \"id\": 489171308509691905, \"media_url\": \"http://pbs.twimg.com/media/Bsnitp4IgAEuEHz.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 19, \"id_str\": \"489174319449534464\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"The best iPhone camera apps you'll find this year: http://t.co/p7IY5vsChs http://t.co/gmTxk9REoV\", \"in_reply_to_status_id\": null, \"id\": 489171309021388800, \"favorite_count\": 16, \"source\": \"<a href=\\\"http://www.socialflow.com\\\" rel=\\\"nofollow\\\">SocialFlow</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/p7IY5vsChs\", \"indices\": [51, 73], \"expanded_url\": \"http://onforb.es/1nt7P9v\", \"display_url\": \"onforb.es/1nt7P9v\"}], \"media\": [{\"expanded_url\": \"http://twitter.com/ForbesTech/status/489171309021388800/photo/1\", \"display_url\": \"pic.twitter.com/gmTxk9REoV\", \"url\": \"http://t.co/gmTxk9REoV\", \"media_url_https\": \"https://pbs.twimg.com/media/Bsnitp4IgAEuEHz.png\", \"id_str\": \"489171308509691905\", \"sizes\": {\"small\": {\"h\": 191, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 576, \"resize\": \"fit\", \"w\": 1024}, \"medium\": {\"h\": 338, \"resize\": \"fit\", \"w\": 600}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [74, 96], \"type\": \"photo\", \"id\": 489171308509691905, \"media_url\": \"http://pbs.twimg.com/media/Bsnitp4IgAEuEHz.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 19, \"id_str\": \"489171309021388800\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 14885549, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/92775085/twitter-background.jpg\", \"verified\": true, \"profile_text_color\": \"000000\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/828527305/technology_normal.jpg\", \"profile_sidebar_fill_color\": \"F7F7F7\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/BtZjDpK3en\", \"indices\": [0, 22], \"expanded_url\": \"http://www.forbes.com/technology/\", \"display_url\": \"forbes.com/technology/\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 1254094, \"profile_sidebar_border_color\": \"CCCCCC\", \"id_str\": \"14885549\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 21055, \"is_translation_enabled\": false, \"utc_offset\": -18000, \"statuses_count\": 46279, \"description\": \"Tech news and insights from Forbes.\", \"friends_count\": 16428, \"location\": \"On and off the grid.\", \"profile_link_color\": \"336699\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/828527305/technology_normal.jpg\", \"following\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/92775085/twitter-background.jpg\", \"screen_name\": \"ForbesTech\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"name\": \"Forbes Tech News\", \"notifications\": false, \"url\": \"http://t.co/BtZjDpK3en\", \"created_at\": \"Fri May 23 19:32:37 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Quito\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:15:03 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 359885420, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/851149332/6d307b6e9a14ef5bd366bc2e2bae1874.png\", \"verified\": false, \"profile_text_color\": \"404040\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/1616942178/Twitter_avatar_QM_normal.png\", \"profile_sidebar_fill_color\": \"FFFFFF\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/eu1AwNyY1o\", \"indices\": [0, 22], \"expanded_url\": \"http://www.qmee.com\", \"display_url\": \"qmee.com\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 1812, \"profile_sidebar_border_color\": \"000000\", \"id_str\": \"359885420\", \"profile_background_color\": \"022330\", \"listed_count\": 10, \"is_translation_enabled\": false, \"utc_offset\": 3600, \"statuses_count\": 3193, \"description\": \"Qmee rewarded search. We help you earn cash rewards on sites you use everyday. Cash in or pay to a charity. Don\u2019t change what you do, change what you get.\", \"friends_count\": 805, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/1616942178/Twitter_avatar_QM_normal.png\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/359885420/1404399899\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/851149332/6d307b6e9a14ef5bd366bc2e2bae1874.png\", \"screen_name\": \"qmee\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 87, \"name\": \"Qmee\", \"notifications\": false, \"url\": \"http://t.co/eu1AwNyY1o\", \"created_at\": \"Mon Aug 22 10:08:22 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"London\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:00 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Check this out. Best of the Worst - Ugly iPhone Cases http://t.co/gdvkOAYEak\", \"in_reply_to_status_id\": null, \"id\": 489174319293923328, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/Olivie_Curtis\\\" rel=\\\"nofollow\\\">Olivie_Curtis</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/gdvkOAYEak\", \"indices\": [54, 76], \"expanded_url\": \"http://luufy.com/site/post/734?k=1\", \"display_url\": \"luufy.com/site/post/734?\u2026\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174319293923328\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": false, \"default_profile_image\": false, \"id\": 150814406, \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/107513823/beyonce_knowles.jpg\", \"verified\": false, \"profile_text_color\": \"333333\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481703908402659328/-r1jD2m4_normal.jpeg\", \"profile_sidebar_fill_color\": \"DDEEF6\", \"entities\": {\"description\": {\"urls\": []}}, \"followers_count\": 1456, \"profile_sidebar_border_color\": \"FFFFFF\", \"id_str\": \"150814406\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 6, \"is_translation_enabled\": false, \"utc_offset\": -14400, \"statuses_count\": 1100, \"description\": \"An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way.\", \"friends_count\": 1639, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481703908402659328/-r1jD2m4_normal.jpeg\", \"following\": false, \"geo_enabled\": false, \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/150814406/1403682148\", \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/107513823/beyonce_knowles.jpg\", \"screen_name\": \"Olivie_Curtis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 0, \"name\": \"Olivie Curtis\", \"notifications\": false, \"url\": null, \"created_at\": \"Tue Jun 01 22:19:40 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Eastern Time (US & Canada)\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"en\", \"created_at\": \"Tue Jul 15 22:27:00 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"en\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"Veja Isso: Apple e IBM se unem em plano de 'big data' para iPhone e iPad: A Apple e a IBM revelaram, nesta ter... http://t.co/j5NCFqnCf6\", \"in_reply_to_status_id\": null, \"id\": 489174319272960000, \"favorite_count\": 0, \"source\": \"<a href=\\\"http://twitterfeed.com\\\" rel=\\\"nofollow\\\">twitterfeed</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/j5NCFqnCf6\", \"indices\": [114, 136], \"expanded_url\": \"http://bit.ly/1wsgePV\", \"display_url\": \"bit.ly/1wsgePV\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 0, \"id_str\": \"489174319272960000\", \"favorited\": false, \"user\": {\"follow_request_sent\": false, \"profile_use_background_image\": true, \"default_profile_image\": false, \"id\": 78183476, \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme2/bg.gif\", \"verified\": false, \"profile_text_color\": \"663B12\", \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/1948356702/fotoezequiel_normal.jpg\", \"profile_sidebar_fill_color\": \"DAECF4\", \"entities\": {\"url\": {\"urls\": [{\"url\": \"http://t.co/0Shbul2Y9g\", \"indices\": [0, 22], \"expanded_url\": \"http://www.ganhardinheirolivre.com/blog\", \"display_url\": \"ganhardinheirolivre.com/blog\"}]}, \"description\": {\"urls\": []}}, \"followers_count\": 927, \"profile_sidebar_border_color\": \"C6E2EE\", \"id_str\": \"78183476\", \"profile_background_color\": \"C6E2EE\", \"listed_count\": 11, \"is_translation_enabled\": false, \"utc_offset\": -10800, \"statuses_count\": 1167, \"description\": \"O sucesso \u00e9 consequencia natural da busca constante para superar os limites.\", \"friends_count\": 2001, \"location\": \"S\u00e3o Jos\u00e9 dos Campos\", \"profile_link_color\": \"1F98C7\", \"profile_image_url\": \"http://pbs.twimg.com/profile_images/1948356702/fotoezequiel_normal.jpg\", \"following\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme2/bg.gif\", \"screen_name\": \"Ezequiel_Yezeck\", \"lang\": \"pt\", \"profile_background_tile\": false, \"favourites_count\": 38, \"name\": \"Ezequiel Garcia \", \"notifications\": false, \"url\": \"http://t.co/0Shbul2Y9g\", \"created_at\": \"Tue Sep 29 01:43:15 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Brasilia\", \"protected\": false, \"default_profile\": false, \"is_translator\": false}, \"geo\": null, \"in_reply_to_user_id_str\": null, \"possibly_sensitive\": false, \"lang\": \"pt\", \"created_at\": \"Tue Jul 15 22:27:00 +0000 2014\", \"in_reply_to_status_id_str\": null, \"place\": null, \"metadata\": {\"iso_language_code\": \"pt\", \"result_type\": \"recent\"}}, {\"contributors\": null, \"truncated\": false, \"text\": \"RT @trivia_trivia5: CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?

\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http:\u2026\", \"in_reply_to_status_id\": null, \"id\": 489174319100997632, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/GfRegaro610\\\" rel=\\\"nofollow\\\"> \u9b45\u60d1\u306e48\u624b</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [{\"id\": 2578133024, \"indices\": [3, 18], \"id_str\": \"2578133024\", \"screen_name\": \"trivia_trivia5\", \"name\": \"\u3010\u3078\u3048\uff5e\u3011\u3068\u58f0\u304c\u51fa\u3066\u3057\u307e\u3046\u96d1\u5b66\u96c6\"}], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [63, 85], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [96, 118], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\": [{\"source_status_id_str\": \"489174172442980352\", \"expanded_url\": \"http://twitter.com/trivia_trivia5/status/489174172442980352/photo/1\", \"display_url\": \"pic.twitter.com/WdBU5Wwguj\", \"url\": \"http://t.co/WdBU5Wwguj\", \"media_url_https\": \"https://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\", \"source_status_id\": 489174172442980352, \"id_str\": \"489174172174536706\", \"sizes\": {\"small\": {\"h\": 226, \"resize\": \"fit\", \"w\": 340}, \"large\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"medium\": {\"h\": 281, \"resize\": \"fit\", \"w\": 422}, \"thumb\": {\"h\": 150, \"resize\": \"crop\", \"w\": 150}}, \"indices\": [139, 140], \"type\": \"photo\", \"id\": 489174172174536706, \"media_url\": \"http://pbs.twimg.com/media/BsnlUV3CUAI9vIJ.png\"}]}, \"in_reply_to_screen_name\": null, \"in_reply_to_user_id\": null, \"retweet_count\": 202, \"id_str\": \"489174319100997632\", \"favorited\": false, \"retweeted_status\": {\"contributors\": null, \"truncated\": false, \"text\": \"CM\u3067\u8d85\u8a71\u984c\uff01\uff01\\n\u6f2b\u753b\u304c\u8aad\u307f\u653e\u984c\u306e\u30a2\u30d7\u30ea\u304c\\n\u30de\u30b8\u3067\u795e\u3059\u304e\u308b?\\n\\nAndroid\u2192 http://t.co/1z66mannAW\\n\\niPhone\u2192 http://t.co/E8vKH3Zsqx\\n\\n\u3082\u3046\u6f2b\u753b\u8cb7\u3046\u5fc5\u8981\u306a\u3044\u306dww http://t.co/WdBU5Wwguj\", \"in_reply_to_status_id\": null, \"id\": 489174172442980352, \"favorite_count\": 0, \"source\": \"<a href=\\\"https://twitter.com/AtRegaro610\\\" rel=\\\"nofollow\\\">\u3078\u3048\uff5e\u306a\u96d1\u5b66\u96c6</a>\", \"retweeted\": false, \"coordinates\": null, \"entities\": {\"symbols\": [], \"user_mentions\": [], \"hashtags\": [], \"urls\": [{\"url\": \"http://t.co/1z66mannAW\", \"indices\": [43, 65], \"expanded_url\": \"http://jump.cx/WeJb6\", \"display_url\": \"jump.cx/WeJb6\"}, {\"url\": \"http://t.co/E8vKH3Zsqx\", \"indices\": [76, 98], \"expanded_url\": \"http://jump.cx/ir3S4\", \"display_url\": \"jump.cx/ir3S4\"}], \"media\":





posted on 2016-02-23 10:51  gcczhongduan  阅读(1511)  评论(0编辑  收藏  举报