Skip to content
Browse files

merge master

  • Loading branch information...
2 parents 91d425d + b49b103 commit 57f1a3cae1cf262afdc6f044110ae173b313836d @bear committed Mar 16, 2016
Showing with 598 additions and 92 deletions.
  1. +3 −0 .gitignore
  2. +1 −1 .travis.yml
  3. +6 −6 README.rst
  4. +15 −6 doc/conf.py
  5. +49 −0 doc/getting_started.rst
  6. +14 −51 doc/index.rst
  7. +51 −0 doc/installation.rst
  8. +110 −0 doc/migration_v30.rst
  9. +16 −0 doc/models.rst
  10. +10 −0 doc/modules.rst
  11. BIN doc/python-twitter-app-creation-part1.png
  12. BIN doc/python-twitter-app-creation-part2.png
  13. BIN doc/python-twitter-app-creation-part3.png
  14. +18 −0 doc/searching.rst
  15. +73 −0 doc/twitter.rst
  16. +4 −0 doc/with_django.rst
  17. +103 −28 examples/shorten_url.py
  18. +73 −0 examples/streaming/track_users.py
  19. +4 −0 requirements.testing.txt
  20. BIN testdata/168NQ.jpg
  21. +1 −0 testdata/get_blocks_0.json
  22. +1 −0 testdata/get_blocks_1.json
  23. +1 −0 testdata/get_blocks_ids_0.json
  24. +1 −0 testdata/get_blocks_ids_1.json
  25. +1 −0 testdata/get_direct_messages.json
  26. +1 −0 testdata/get_favorites.json
  27. +1 −0 testdata/get_follower_ids.json
  28. +1 −0 testdata/get_follower_ids_0.json
  29. +1 −0 testdata/get_follower_ids_1.json
  30. +1 −0 testdata/get_follower_ids_paged.json
  31. +1 −0 testdata/get_follower_ids_stringify.json
  32. +1 −0 testdata/get_followers_0.json
  33. +1 −0 testdata/get_followers_1.json
  34. +1 −0 testdata/get_friend_ids_0.json
  35. +1 −0 testdata/get_friend_ids_1.json
  36. +1 −0 testdata/get_friends.json
  37. +1 −0 testdata/get_friends_0.json
  38. +1 −0 testdata/get_friends_1.json
  39. +1 −0 testdata/get_friends_2.json
  40. +1 −0 testdata/get_friends_3.json
  41. +1 −0 testdata/get_friends_4.json
  42. +1 −0 testdata/get_friends_ids.json
  43. +1 −0 testdata/get_friends_paged.json
  44. +1 −0 testdata/get_friends_paged_additional_params.json
  45. +1 −0 testdata/get_friends_paged_uid.json
  46. +1 −0 testdata/get_friendships_lookup_muting.json
  47. +1 −0 testdata/get_friendships_lookup_muting_blocking.json
  48. +1 −0 testdata/get_friendships_lookup_none.json
  49. +1 −0 testdata/get_get_memberships.json
  50. +1 −0 testdata/get_get_memberships_himawari8bot.json
  51. +1 −0 testdata/get_get_subscriptions.json
  52. +1 −0 testdata/get_get_subscriptions_uid.json
  53. +1 −0 testdata/get_help_configuration.json
  54. +1 −0 testdata/get_home_timeline.json
  55. +1 −0 testdata/get_list_members.json
  56. +1 −0 testdata/get_list_members_0.json
  57. +1 −0 testdata/get_list_members_1.json
  58. +1 −0 testdata/get_list_members_extra_params.json
  59. +1 −0 testdata/get_list_timeline.json
  60. +1 −0 testdata/get_list_timeline_count.json
  61. +1 −0 testdata/get_list_timeline_count_rts_ent.json
  62. +1 −0 testdata/get_list_timeline_id.json
  63. +1 −0 testdata/get_list_timeline_max_since.json
  64. +1 −0 testdata/get_lists.json
  65. +1 −0 testdata/get_lists_list.json
  66. +1 −0 testdata/get_lists_list_screen_name.json
  67. +1 −0 testdata/get_lists_list_user_id.json
  68. +1 −0 testdata/get_memberships.json
Sorry, we could not display the entire diff because it was too big.
View
3 .gitignore
@@ -42,3 +42,6 @@ htmlcov
env
violations.flake8.txt
+
+# Built docs
+doc/_build/**
View
2 .travis.yml
@@ -9,7 +9,7 @@ before_install:
install:
- travis_retry pip install .
- - pip install -r requirements.txt
+ - pip install -r requirements.testing.txt
script:
- make test
View
12 README.rst
@@ -5,7 +5,7 @@ A Python wrapper around the Twitter API.
By the `Python-Twitter Developers <[email protected]>`_
.. image:: https://img.shields.io/pypi/v/python-twitter.svg
- :target: https://pypi.python.org/pypi/parsedatetime/
+ :target: https://pypi.python.org/pypi/python-twitter/
:alt: Downloads
.. image:: https://travis-ci.org/bear/python-twitter.svg?branch=master
@@ -84,7 +84,7 @@ The library provides a Python wrapper around the Twitter API and the Twitter dat
Using with Django
----
-Additional template tags that expand tweet urls and urlize tweet text. See the django template tags available for use with python-twitter: https://github.com/radlws/python-twitter-django-tags
+Additional template tags that expand tweet urls and urlize tweet text. See the django template tags available for use with python-twitter: https://github.com/radzhome/python-twitter-django-tags
-----
Model
@@ -124,25 +124,25 @@ To create an instance of the ``twitter.Api`` with login credentials (Twitter now
To see if your credentials are successful::
- >>> print api.VerifyCredentials()
+ >>> print(api.VerifyCredentials())
{"id": 16133, "location": "Philadelphia", "name": "bear"}
**NOTE**: much more than the small sample given here will print
To fetch a single user's public status messages, where ``user`` is a Twitter *short name*::
>>> statuses = api.GetUserTimeline(screen_name=user)
- >>> print [s.text for s in statuses]
+ >>> print([s.text for s in statuses])
To fetch a list a user's friends (requires authentication)::
>>> users = api.GetFriends()
- >>> print [u.name for u in users]
+ >>> print([u.name for u in users])
To post a Twitter status message (requires authentication)::
>>> status = api.PostUpdate('I love python-twitter!')
- >>> print status.text
+ >>> print(status.text)
I love python-twitter!
There are many more API methods, to read the full API documentation::
View
21 doc/conf.py
@@ -11,7 +11,11 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
-import sys, os
+import sys
+import os
+import shlex
+
+sys.path.append(os.path.abspath('../'))
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
@@ -25,7 +29,12 @@
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = []
+extensions = [
+ 'sphinx.ext.autodoc',
+ 'sphinx.ext.coverage',
+ 'sphinx.ext.viewcode',
+ 'sphinx.ext.napoleon'
+]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@@ -41,16 +50,16 @@
# General information about the project.
project = u'python-twitter'
-copyright = u'2013, [email protected]'
+copyright = u'2016, [email protected]'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
-version = '1.0'
+version = '3.0rc1'
# The full version, including alpha/beta/rc tags.
-release = '1.0'
+release = '3.0rc1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -94,7 +103,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
-html_theme = 'default'
+html_theme = 'sphinx_rtd_theme'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
View
49 doc/getting_started.rst
@@ -0,0 +1,49 @@
+Getting Started
+===============
+
+Getting your application tokens
++++++++++++++++++++++++++++++++
+
+.. danger::
+
+This section is subject to changes made by Twitter and may not always be completely up-to-date. If you see something change on their end, please create a `new issue on Github <https://github.com/bear/python-twitter/issues/new>`_ or submit a pull request to update it.
+
+
+In order to use the python-twitter API client, you first need to acquire a set of application tokens. These will be your ``consumer_key`` and ``consumer_secret``, which get passed to ``twitter.Api()`` when starting your application.
+
+Create your app
+________________
+
+The first step in doing so is to create a `Twitter App <https://apps.twitter.com/>`_. Click the "Create New App" button and fill out the fields on the next page.
+
+
+.. image:: python-twitter-app-creation-part1.png
+
+If there are any problems with the information on that page, Twitter will complain and you can fix it. (Make sure to get the name correct - it is unclear if you can change this later.) On the next screen, you'll see the application that you created and some information about it:
+
+Your app
+_________
+
+Once your app is created, you'll be directed to a new page showing you some information about it.
+
+.. image:: python-twitter-app-creation-part2.png
+
+Your Keys
+_________
+
+Click on the "Keys and Access Tokens" tab on the top there, just under the green notification in the image above.
+
+
+.. image:: python-twitter-app-creation-part3.png
+
+At this point, you can test out your application using the keys under "Your Application Tokens". The ``twitter.Api()`` object can be created as follows::
+
+ import twitter
+ api = twitter.Api(consumer_key=[consumer key],
+ consumer_secret=[consumer secret],
+ access_token_key=[access token]
+ access_token_secret=[access token secret])
+
+If you are creating an application for end users/consumers, then you will want them to authorize you application, but that is outside the scope of this document.
+
+And that should be it! If you need a little more help, check out the `examples on Github <https://github.com/bear/python-twitter/tree/master/examples>`_. If you have an open source application using python-twitter, send us a link and we'll add a link to it here.
View
65 doc/index.rst
@@ -1,67 +1,31 @@
.. python-twitter documentation master file, created by
-sphinx-quickstart on Fri Aug 30 14:37:05 2013.
-You can adapt this file completely to your liking, but it should at least
-contain the root `toctree` directive.
Welcome to python-twitter's documentation!
==========================================
**A Python wrapper around the Twitter API.**
Author: The Python-Twitter Developers <[email protected]>
-Introduction
-------------
-This library provides a pure Python interface for the `Twitter API <https://dev.twitter.com/>`_. It works with Python version 2.6+. Python 3 support is under development.
-
-`Twitter <http://twitter.com>`_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API <http://dev.twitter.com/doc>`_ and this library is intended to make it even easier for Python programmers to use.
-
-
-Building
---------
-From source:
-
-Install the dependencies:
-
-- `Requests <http://docs.python-requests.org/en/latest/>`_
-- `Requests OAuthlib <https://requests-oauthlib.readthedocs.org/en/latest/>`_
-
-Alternatively use `pip`::
-
- $ pip install -r requirements.txt
-
-Download the latest `python-twitter` library from: http://code.google.com/p/python-twitter/
-
-Extract the source distribution and run::
-
- $ python setup.py build
- $ python setup.py install
-
-Testing
--------
-With setuptools installed::
+Contents:
- $ python setup.py test
-
-
-Without setuptools installed::
-
- $ python twitter_test.py
-
-
-Getting the code
-----------------
-The code is hosted at `Github <https://github.com/bear/python-twitter>`_.
-
-Check out the latest development version anonymously with::
+.. toctree::
+ :maxdepth: 1
-$ git clone git://github.com/bear/python-twitter.git
-$ cd python-twitter
+ installation.rst
+ getting_started.rst
+ migration_v30.rst
+ models.rst
+ searching.rst
+ with_django.rst
+ twitter.rst
-.. toctree::
-:maxdepth: 2
+Introduction
+------------
+This library provides a pure Python interface for the `Twitter API <https://dev.twitter.com/>`_. It works with Python 2.7+ and Python 3.
+`Twitter <http://twitter.com>`_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API <http://dev.twitter.com/doc>`_ and this library is intended to make it even easier for Python programmers to use.
Indices and tables
@@ -70,4 +34,3 @@ Indices and tables
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
-
View
51 doc/installation.rst
@@ -0,0 +1,51 @@
+Installation & Testing
+------------
+
+Installation
+============
+
+**From PyPI** ::
+
+ $ pip install python-twitter
+
+
+**From source**
+
+Install the dependencies:
+
+- `Requests <http://docs.python-requests.org/en/latest/>`_
+- `Requests OAuthlib <https://requests-oauthlib.readthedocs.org/en/latest/>`_
+
+Alternatively use `pip`::
+
+ $ pip install -r requirements.txt
+
+Download the latest `python-twitter` library from: https://github.com/bear/python-twitter/
+
+Extract the source distribution and run::
+
+ $ python setup.py build
+ $ python setup.py install
+
+
+Testing
+=======
+
+Run::
+
+ $ python test.py
+
+If you would like to see coverage information and have `Nose <https://nose.readthedocs.org>`_ installed::
+
+ $ nosetests --with-coverage
+
+
+Getting the code
+================
+
+The code is hosted at `Github <https://github.com/bear/python-twitter>`_.
+
+Check out the latest development version anonymously with::
+
+$ git clone git://github.com/bear/python-twitter.git
+$ cd python-twitter
View
110 doc/migration_v30.rst
@@ -0,0 +1,110 @@
+Migration from v2 to v3
+-----------------------
+
+Changes to Existing Methods
+===========================
+
+:py:func:`twitter.api.Api.GetBlocks`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Method no longer accepts parameters ``user_id`` or ``screen_name`` as these are not honored by Twitter. The data returned will be for the authenticated user only.
+* Parameter ``cursor`` is no longer accepted -- this method will return **all** users being blocked by the currently authenticated user. If you need paging, please use :py:func:`twitter.api.Api.GetBlocksPaged` instead.
+
+:py:func:`twitter.api.Api.GetFollowers`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Method no longer honors a ``count`` or ``cursor`` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every ``twitter.User`` who is following the specified or authenticated user. A warning will be raised if ``count`` or ``cursor`` is passed with the expectation that breaking behavior will be introduced in a later version.
+* Method now takes an optional parameter of ``total_count``, which limits the number of users to return. If this is not set, the data returned will be all users following the specified user.
+* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit.
+
+:py:func:`twitter.api.Api.GetFollowersPaged`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API.
+* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior.
+
+:py:func:`twitter.api.Api.GetFriends`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Method no longer honors a ``count`` or ``cursor`` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every ``twitter.User`` who is followed by the specified or authenticated user. A warning will be raised if ``count`` or ``cursor`` is passed with the expectation that breaking behavior will be introduced in a later version.
+* Method now takes an optional parameter of ``total_count``, which limits the number of users to return. If this is not set, the data returned will be all users followed by the specified user.
+* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit.
+
+:py:func:`twitter.api.Api.GetFriendsPaged`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API.
+* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit.
+
+:py:func:`twitter.api.Api.GetListMembers`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* No longer accepts ``cursor`` parameter. If you require granular control over the paging of the twitter.list.List members, please user twitter.api.Api.GetListMembersPaged instead.
+
+:py:func:`twitter.api.Api.GetSearch`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Adds ``raw_query`` method. See :ref:`raw_queries` for more information.
+
+:py:func:`twitter.api.Api.GetUserStream`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously.
+
+
+:py:func:`twitter.api.Api.LookupFriendship`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+* Method will now accept a list for either ``user_id`` or ``screen_name``. The list can contain either ints, strings, or :py:mod:`twitter.user.User` objects for either ``user_id`` or ``screen_name``.
+* Return value is a list of :py:mod:`twitter.user.UserStatus` objects.
+
+:py:func:`twitter.api.Api.PostUpdate`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Now accepts three new parameters: ``media``, ``media_additional_owners``, and ``media_category``. ``media`` can be a URL, a local file, or a file-like object (something with a ``read()`` method), or a list of any combination of the above.
+* ``media_additional_owners`` should be a list of user ids representing Twitter users that should be able to use the uploaded media in their tweets. If you pass a list of media, then **additional owners will apply to each object.** If you need more granular control, please use the UploadMedia* methods.
+* ``media_category``: Only for use with the AdsAPI. See https://dev.twitter.com/ads/creative/promoted-video-overview if this applies to your application.
+
+
+Deprecation
+===========
+
+:py:func:`twitter.api.Api.PostMedia`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* This endpoint is deprecated by Twitter. Python-twitter will throw a warning about using the method and advise you to use PostUpdate() instead. There is no schedule for when this will be removed from Twitter.
+
+:py:func:`twitter.api.Api.PostMultipleMedia`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* This method should be replaced by passing a list of media objects (either URLs, local files, or file-like objects) to PostUpdate. You are limited to a maximum of 4 media files per tweet.
+
+
+New Methods
+===========
+
+:py:func:`twitter.api.Api.GetBlocksIDs`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Returns **all** the users currently blocked by the authenticated user as user IDs. The user IDs will be integers.
+
+:py:func:`twitter.api.Api.GetBlocksIDsPaged`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Returns one page, specified by the cursor parameter, of the users currently blocked by the authenticated user as user IDs.
+
+:py:func:`twitter.api.Api.GetBlocksPaged`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Allows you to page through the currently authenticated user's blocked users. Method returns three values: the next cursor, the previous cursor, and a list of ``twitter.User`` instances representing the blocked users.
+
+:py:func:`twitter.api.Api.GetListMembersPaged`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Allows you to page through a the members of a given twitter.list.List.
+* ``cursor`` parameter operates as with other methods, denoting the page of members that you wish to retrieve.
+* Returns ``next_cursor``, ``previous_cursor``, and a list containing the users that are members of the given twitter.list.List.
+
+
+:py:func:`twitter.api.Api.GetListsPaged`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Much like :py:func:`twitter.api.Api.GetFriendsPaged` and similar methods, this allows you to retrieve an arbitrary page of :py:mod:`twitter.list.List` for either the currently authenticated user or a user specified by ``user_id`` or ``screen_name``.
+* ``cursor`` should be ``-1`` for the first page.
+* Returns the ``next_cursor``, ``previous_cursor``, and a list of :py:mod:`twitter.list.List` instances.
+
+:py:func:`twitter.api.Api.UploadMediaChunked`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* API method allows chunked upload to upload.twitter.com. Similar to Api.PostMedia(), this method can take either a local filename (str), a URL (str), or a file-like object. The image or video type will be determined by ``mimetypes`` (see :py:func:`twitter.twitter_utils.parse_media_file` for details).
+* Optionally, you can specify a chunk_size for uploads when instantiating the Api object. This should be given in bytes. The default is 1MB (that is, 1048576 bytes). Any chunk_size given below 16KB will result in a warning: Twitter will return an error if you try to upload more than 999 chunks of data; for example, if you are uploading a 15MB video, then a chunk_size lower than 15729 bytes will result in 1000 APPEND commands being sent to the API, so you'll get an error. 16KB seems like a reasonable lower bound, but if your use case is well-defined, then python-twitter will not enforce this behavior.
+* Another thing to take into consideration: if you're working in a RAM-constrained environment, a very large chunk_size will increase your RAM usage when uploading media through this endpoint.
+* The return value will be the ``media_id`` of the uploaded file.
+
+:py:func:`twitter.api.Api.UploadMediaSimple`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+* Provides the ability to upload a single media file to Twitter without using the ChunkedUpload endpoint. This method should be used on smaller files and reduces the roundtrips from Twitter from three (for UploadMediaChunked) to one.
+* Return value is the ``media_id`` of the uploaded file.
View
16 doc/models.rst
@@ -0,0 +1,16 @@
+Models
+======
+
+Python-twitter provides the following models of the objects returned by the Twitter API:
+
+* :py:mod:`twitter.category.Category`
+* :py:mod:`twitter.direct_message.DirectMessage`
+* :py:mod:`twitter.hashtag.Hashtag`
+* :py:mod:`twitter.list.List`
+* :py:mod:`twitter.media.Media`
+* :py:mod:`twitter.status.Status`
+* :py:mod:`twitter.trend.Trend`
+* :py:mod:`twitter.url.Url`
+* :py:mod:`twitter.user.User`
+* :py:mod:`twitter.user.UserStatus`
+
View
10 doc/modules.rst
@@ -0,0 +1,10 @@
+.. _modules:
+
+Modules
+*******
+
+.. toctree::
+ :maxdepth: 4
+
+ twitter
+
View
BIN doc/python-twitter-app-creation-part1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
BIN doc/python-twitter-app-creation-part2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
BIN doc/python-twitter-app-creation-part3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
18 doc/searching.rst
@@ -0,0 +1,18 @@
+.. _searching:
+
+Searching
++++++++++
+
+
+.. _raw_queries:
+
+Raw Queries
+===========
+
+To the Api.GetSearch() method, you can pass the parameter ``raw_query``, which should be the query string you wish to use for the search **omitting the leading "?"**. This will override every other parameter. Twitter's search parameters are quite complex, so if you have a need for a very particular search, you can find Twitter's documentation at https://dev.twitter.com/rest/public/search.
+
+For example, if you want to search for only tweets containing the word "twitter", then you could do the following: ::
+
+ results = api.GetSearch(raw_query="q=twitter%20&result_type=recent&since=2014-07-19&count=100")
+
+If you want to build a search query and you're not quite sure how it should look all put together, you can use Twitter's Advanced Search tool: https://twitter.com/search-advanced, and then use the part of search URL after the "?" to use for the Api, removing the ``&src=typd`` portion.
View
73 doc/twitter.rst
@@ -0,0 +1,73 @@
+Modules Documentation
+=====================
+
+
+API
+----------------
+
+.. automodule:: twitter.api
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+Models
+---------------------
+
+.. automodule:: twitter.category
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.direct_message
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.hashtag
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.list
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.media
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.ratelimit
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.status
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.trend
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.url
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+.. automodule:: twitter.user
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+
+Utilities
+---------------------
+
+.. automodule:: twitter.twitter_utils
+ :members:
+ :undoc-members:
+ :show-inheritance:
View
4 doc/with_django.rst
@@ -0,0 +1,4 @@
+Using with Django
+=================
+
+Additional template tags that expand tweet urls and urlize tweet text. See the django template tags available for use with python-twitter: https://github.com/radzhome/python-twitter-django-tags
View
131 examples/shorten_url.py
@@ -1,46 +1,77 @@
#!/usr/bin/env python
-#
-# Copyright 2007-2013 The Python-Twitter Developers
-#
+
+# Copyright 2007-2016 The Python-Twitter Developers
+
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
-#
+
# http://www.apache.org/licenses/LICENSE-2.0
-#
+
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-"""A class that defines the default URL Shortener.
-
-TinyURL is provided as the default and as an example.
-"""
-
-import urllib
-
-
+# ----------------------------------------------------------------------
# Change History
#
# 2010-05-16
-# TinyURL example and the idea for this comes from a bug filed by
-# acolorado with patch provided by ghills. Class implementation
-# was done by bear.
+# TinyURL example and the idea for this comes from a bug filed by
+# acolorado with patch provided by ghills. Class implementation
+# was done by @bear.
#
-# Issue 19 http://code.google.com/p/python-twitter/issues/detail?id=19
+# Issue #19: http://code.google.com/p/python-twitter/issues/detail?id=19
#
+# 2016-02-18
+# Updated example with code to demonstrate passing a status message through
+# a shortener and then off to PostUpdate. Implemenation by @jeremylow from
+# bug filed by @immanuelfactor
+#
+# Issue #298: https://github.com/bear/python-twitter/issues/298
+
+# ----------------------------------------------------------------------
+# This file demonstrates how to shorten all URLs contained within a Tweet
+# by passing the tweet text to a shortener. In this case, we're using TinyURL
+# since it does not require any real authentication for our purposes. If you
+# are using a different service to shorten URLs, then you will need to modify
+# the ShortenURL class to suit your needs.
+
+# Note that this example shortens all URLs contained within the Tweet text.
+
+# To use this example, replace the W/X/Y/Zs with your keys obtained from
+# Twitter, or uncomment the lines for getting an environment variable. If you
+# are using a virtualenv on Linux, you can set environment variables in the
+# ~/VIRTUALENVDIR/bin/activate script.
+
+# If you need assistance with obtaining keys from Twitter, see the instructions
+# in doc/getting_started.rst.
+
+
+import re
+try:
+ from urllib.request import urlopen
+except:
+ from urllib2 import urlopen
+
+from twitter import Api
+from twitter.twitter_utils import URL_REGEXP
class ShortenURL(object):
- """Helper class to make URL Shortener calls if/when required"""
+ """ A class that defines the default URL Shortener.
+
+ TinyURL is provided as the default and as an example helper class to make
+ URL Shortener calls if/when required. """
def __init__(self,
userid=None,
password=None):
- """Instantiate a new ShortenURL object
-
+ """Instantiate a new ShortenURL object. TinyURL, which is used for this
+ example, does not require a userid or password, so you can try this
+ out without specifying either.
+
Args:
userid: userid for any required authorization call [optional]
password: password for any required authorization call [optional]
@@ -49,24 +80,68 @@ def __init__(self,
self.password = password
def Shorten(self,
- longURL):
- """Call TinyURL API and returned shortened URL result
-
+ long_url):
+ """ Call TinyURL API and returned shortened URL result.
+
Args:
- longURL: URL string to shorten
-
+ long_url: URL string to shorten
+
Returns:
The shortened URL as a string
Note:
- longURL is required and no checks are made to ensure completeness
+ long_url is required and no checks are made to ensure completeness
"""
result = None
- f = urllib.urlopen("http://tinyurl.com/api-create.php?url=%s" % longURL)
+ f = urlopen("http://tinyurl.com/api-create.php?url={0}".format(
+ long_url))
try:
result = f.read()
finally:
f.close()
- return result
+ # The following check is required for py2/py3 compatibility, since
+ # urlopen on py3 returns a bytes-object, and urlopen on py2 returns a
+ # string.
+ if isinstance(result, bytes):
+ return result.decode('utf8')
+ else:
+ return result
+
+
+def _get_api():
+ # Either specify a set of keys here or use os.getenv('CONSUMER_KEY') style
+ # assignment:
+
+ CONSUMER_KEY = 'WWWWWWWW'
+ # CONSUMER_KEY = os.getenv("CONSUMER_KEY", None)
+ CONSUMER_SECRET = 'XXXXXXXX'
+ # CONSUMER_SECRET = os.getenv("CONSUMER_SECRET", None)
+ ACCESS_TOKEN = 'YYYYYYYY'
+ # ACCESS_TOKEN = os.getenv("ACCESS_TOKEN", None)
+ ACCESS_TOKEN_SECRET = 'ZZZZZZZZ'
+ # ACCESS_TOKEN_SECRET = os.getenv("ACCESS_TOKEN_SECRET", None)
+
+ return Api(CONSUMER_KEY,
+ CONSUMER_SECRET,
+ ACCESS_TOKEN,
+ ACCESS_TOKEN_SECRET)
+
+
+def PostStatusWithShortenedURL(status):
+ shortener = ShortenURL()
+ api = _get_api()
+
+ # Find all URLs contained within the status message. Value of ``urls`` will
+ # be a list.
+ urls = re.findall(URL_REGEXP, status)
+
+ for url in urls:
+ status = status.replace(url, shortener.Shorten(url), 1)
+
+ api.PostUpdate(status)
+
+
+if __name__ == '__main__':
+ PostStatusWithShortenedURL("this is a test: http://www.example.com/tests")
View
73 examples/streaming/track_users.py
@@ -0,0 +1,73 @@
+#!/usr/bin/env python
+
+# Copyright 2007-2016 The Python-Twitter Developers
+
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+
+# http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# ----------------------------------------------------------------------
+
+# This file demonstrates how to track mentions of a specific set of users and
+# archive those mentions to a local file. The output file will contain one
+# JSON string per line per Tweet.
+
+# To use this example, replace the W/X/Y/Zs with your keys obtained from
+# Twitter, or uncomment the lines for getting an environment variable. If you
+# are using a virtualenv on Linux, you can set environment variables in the
+# ~/VIRTUALENVDIR/bin/activate script.
+
+# If you need assistance with obtaining keys from Twitter, see the instructions
+# in doc/getting_started.rst.
+
+import os
+import json
+
+from twitter import Api
+
+# Either specify a set of keys here or use os.getenv('CONSUMER_KEY') style
+# assignment:
+
+CONSUMER_KEY = 'WWWWWWWW'
+# CONSUMER_KEY = os.getenv("CONSUMER_KEY", None)
+CONSUMER_SECRET = 'XXXXXXXX'
+# CONSUMER_SECRET = os.getenv("CONSUMER_SECRET", None)
+ACCESS_TOKEN = 'YYYYYYYY'
+# ACCESS_TOKEN = os.getenv("ACCESS_TOKEN", None)
+ACCESS_TOKEN_SECRET = 'ZZZZZZZZ'
+# ACCESS_TOKEN_SECRET = os.getenv("ACCESS_TOKEN_SECRET", None)
+
+# Users to watch for should be a list. This will be joined by Twitter and the
+# data returned will be for any tweet mentioning:
+# @twitter *OR* @twitterapi *OR* @support.
+USERS = ['@twitter',
+ '@twitterapi',
+ '@support']
+
+# Since we're going to be using a streaming endpoint, there is no need to worry
+# about rate limits.
+api = Api(CONSUMER_KEY,
+ CONSUMER_SECRET,
+ ACCESS_TOKEN,
+ ACCESS_TOKEN_SECRET)
+
+
+def main():
+ with open('output.txt', 'a') as f:
+ # api.GetStreamFilter will return a generator that yields one status
+ # message (i.e., Tweet) at a time as a JSON dictionary.
+ for line in api.GetStreamFilter(track=USERS):
+ f.write(json.dumps(line))
+ f.write('\n')
+
+
+if __name__ == '__main__':
+ main()
View
4 requirements.testing.txt
@@ -0,0 +1,4 @@
+future
+requests
+requests_oauthlib
+responses
View
BIN testdata/168NQ.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
1 testdata/get_blocks_0.json
@@ -0,0 +1 @@
+{"users":[{"id":68956490,"id_str":"68956490","name":"Robot J. McCarthy","screen_name":"RedScareBot","location":"Wisconsin","description":"Joseph McCarthy claimed there were large numbers of Communists and Soviet spies and sympathizers inside the United States federal government and elsewhere.","url":"http:\/\/t.co\/PiQZ8cvNsS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PiQZ8cvNsS","expanded_url":"http:\/\/bit.ly\/RdUCUi","display_url":"bit.ly\/RdUCUi","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15257,"friends_count":134,"listed_count":1321,"created_at":"Wed Aug 26 11:37:30 +0000 2009","favourites_count":3018,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2497529,"lang":"en","status":{"created_at":"Sat Nov 14 07:48:12 +0000 2015","id":665436049645166592,"id_str":"665436049645166592","text":"Socialism lite RT @culbgren Don't Claim bto Love the U.S.A. While Trying To Make It A Socialist Nation! https:\/\/t.co\/t8b9AesC1d","source":"\u003ca href=\"http:\/\/twitter.com\/RedScareBot\" rel=\"nofollow\"\u003eRedScareBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":665434140997771264,"in_reply_to_status_id_str":"665434140997771264","in_reply_to_user_id":2891911385,"in_reply_to_user_id_str":"2891911385","in_reply_to_screen_name":"culbgren","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":25,"favorite_count":39,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"culbgren","name":"Donna\u2734","id":2891911385,"id_str":"2891911385","indices":[18,27]}],"urls":[],"media":[{"id":665434138170773504,"id_str":"665434138170773504","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","url":"https:\/\/t.co\/t8b9AesC1d","display_url":"pic.twitter.com\/t8b9AesC1d","expanded_url":"http:\/\/twitter.com\/culbgren\/status\/665434140997771264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"medium":{"w":557,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":432,"resize":"fit"}},"source_status_id":665434140997771264,"source_status_id_str":"665434140997771264","source_user_id":2891911385,"source_user_id_str":"2891911385"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68956490\/1397719213","profile_link_color":"7C009E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A199A3","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":true,"blocked_by":false}],"next_cursor":1524574483549312671,"next_cursor_str":"1524574483549312671","previous_cursor":0,"previous_cursor_str":"0"}
View
1 testdata/get_blocks_1.json
@@ -0,0 +1 @@
+{"users":[{"id":68956490,"id_str":"68956490","name":"Robot J. McCarthy","screen_name":"RedScareBot","location":"Wisconsin","description":"Joseph McCarthy claimed there were large numbers of Communists and Soviet spies and sympathizers inside the United States federal government and elsewhere.","url":"http:\/\/t.co\/PiQZ8cvNsS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PiQZ8cvNsS","expanded_url":"http:\/\/bit.ly\/RdUCUi","display_url":"bit.ly\/RdUCUi","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15257,"friends_count":134,"listed_count":1321,"created_at":"Wed Aug 26 11:37:30 +0000 2009","favourites_count":3018,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2497529,"lang":"en","status":{"created_at":"Sat Nov 14 07:48:12 +0000 2015","id":665436049645166592,"id_str":"665436049645166592","text":"Socialism lite RT @culbgren Don't Claim bto Love the U.S.A. While Trying To Make It A Socialist Nation! https:\/\/t.co\/t8b9AesC1d","source":"\u003ca href=\"http:\/\/twitter.com\/RedScareBot\" rel=\"nofollow\"\u003eRedScareBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":665434140997771264,"in_reply_to_status_id_str":"665434140997771264","in_reply_to_user_id":2891911385,"in_reply_to_user_id_str":"2891911385","in_reply_to_screen_name":"culbgren","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":25,"favorite_count":39,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"culbgren","name":"Donna\u2734","id":2891911385,"id_str":"2891911385","indices":[18,27]}],"urls":[],"media":[{"id":665434138170773504,"id_str":"665434138170773504","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","url":"https:\/\/t.co\/t8b9AesC1d","display_url":"pic.twitter.com\/t8b9AesC1d","expanded_url":"http:\/\/twitter.com\/culbgren\/status\/665434140997771264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"medium":{"w":557,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":432,"resize":"fit"}},"source_status_id":665434140997771264,"source_status_id_str":"665434140997771264","source_user_id":2891911385,"source_user_id_str":"2891911385"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68956490\/1397719213","profile_link_color":"7C009E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A199A3","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":true,"blocked_by":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}
View
1 testdata/get_blocks_ids_0.json
@@ -0,0 +1 @@
+{"next_cursor": 1524566179872860311, "next_cursor_str": "1524566179872860311", "previous_cursor": 0, "ids": [68956490], "previous_cursor_str": "0"}
View
1 testdata/get_blocks_ids_1.json
@@ -0,0 +1 @@
+{"next_cursor": 0, "next_cursor_str": "0", "previous_cursor": 0, "ids": [68956490], "previous_cursor_str": "0"}
View
1 testdata/get_direct_messages.json
@@ -0,0 +1 @@
+[{"id":678629245946433539,"id_str":"678629245946433539","text":"https:\/\/t.co\/PnDU7HQGwq","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 17:33:15 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PnDU7HQGwq","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488","display_url":"twitter.com\/pattymo\/status\u2026","indices":[0,23]}]}},{"id":678604651239895043,"id_str":"678604651239895043","text":"https:\/\/t.co\/sQlHgqXOxW","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:55:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sQlHgqXOxW","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667870485842149378","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678604278852804611,"id_str":"678604278852804611","text":"cool? https:\/\/t.co\/csy2NSbU86","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:54:02 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/csy2NSbU86","expanded_url":"https:\/\/twitter.com\/__jcbl__\/status\/667865252764246016","display_url":"twitter.com\/__jcbl__\/statu\u2026","indices":[6,29]}]}},{"id":678603770633125891,"id_str":"678603770633125891","text":"https:\/\/t.co\/csy2NSbU86","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:52:01 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/csy2NSbU86","expanded_url":"https:\/\/twitter.com\/__jcbl__\/status\/667865252764246016","display_url":"twitter.com\/__jcbl__\/statu\u2026","indices":[0,23]}]}},{"id":678603352637227011,"id_str":"678603352637227011","text":"https:\/\/t.co\/A0NJfpDbAF","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:50:21 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A0NJfpDbAF","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667865779015196672","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678601197788401668,"id_str":"678601197788401668","text":"https:\/\/t.co\/rY4FkCqIz9","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:41:48 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rY4FkCqIz9","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667866455959056384","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678601038023147523,"id_str":"678601038023147523","text":"That's cool friend","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:41:09 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678600722565345283,"id_str":"678600722565345283","text":"hey?","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:39:54 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678592039651438596,"id_str":"678592039651438596","text":"https:\/\/t.co\/Z4RgDEuw7V","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:05:24 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Z4RgDEuw7V","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667912731081768960","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678582529125838851,"id_str":"678582529125838851","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:37 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582526349283331,"id_str":"678582526349283331","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:36 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582524163940355,"id_str":"678582524163940355","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:35 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582521446166531,"id_str":"678582521446166531","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:35 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582519223025667,"id_str":"678582519223025667","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:34 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582516106706947,"id_str":"678582516106706947","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:33 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582513426558979,"id_str":"678582513426558979","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:33 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582510511525896,"id_str":"678582510511525896","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:32 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582507726635011,"id_str":"678582507726635011","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582505231007750,"id_str":"678582505231007750","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582502756376579,"id_str":"678582502756376579","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:30 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}}]
View
1 testdata/get_favorites.json
@@ -0,0 +1 @@
+[{"created_at":"Wed Dec 16 17:34:59 +0000 2015","id":677180133447372800,"id_str":"677180133447372800","text":"Extremely proud of all the bot-makers this year. Seeing so many diff bots get love &amp; recognition is getting me a little teared-up, tbh. \ud83d\ude0c\ud83d\udc4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619383,"id_str":"619383","name":"Humbug me why I","screen_name":"negatendo","location":"Denver CO USA Earth Cyberspace","description":"artist (strictly internet). ridiculous internet account. full-time internet. free ideas internet. #botALLY https:\/\/t.co\/P0PVMrvqUn","url":"https:\/\/t.co\/6bPCtM8sau","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6bPCtM8sau","expanded_url":"http:\/\/negatendo.net\/","display_url":"negatendo.net","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/P0PVMrvqUn","expanded_url":"http:\/\/www.amazon.com\/registry\/wishlist\/5NKIOO98X4J5\/","display_url":"amazon.com\/registry\/wishl\u2026","indices":[107,130]}]}},"protected":false,"followers_count":2416,"friends_count":2080,"listed_count":104,"created_at":"Tue Jan 09 19:26:46 +0000 2007","favourites_count":63457,"utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":35938,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000105212902\/2a4019c9c7bca6253bd2564f74483c35.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000105212902\/2a4019c9c7bca6253bd2564f74483c35.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660834065419907072\/rV085r8i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660834065419907072\/rV085r8i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619383\/1398338002","profile_link_color":"D955E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":24,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":true,"retweeted":false,"lang":"en"}]
View
1 testdata/get_follower_ids.json
@@ -0,0 +1 @@
+{"ids":[372018022],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}
View
1 testdata/get_follower_ids_0.json
@@ -0,0 +1 @@
+{"next_cursor_str": "1482201362283529597", "next_cursor": 1482201362283529597, "previous_cursor": 0, "previous_cursor_str": "0", "ids": [4727569094, 2159989885, 4440403513, 4588196896, 4726058862, 3586984694, 4724624774, 4597361717, 172443768, 4723772232, 972722053, 2711772630, 4472842402, 809963898, 459557733, 536513337, 4721100218, 1003854361, 4726605819, 20086326, 4718785213, 4647172521, 1280009484, 44151502, 4059246148, 3566376976, 327606485, 1561816711, 4558693163, 2910127390, 4713152474, 3392295089, 228816435, 867113114, 169155140, 2851645779, 37599351, 4705950344, 2383209865, 2909319245, 2943876654, 3563619556, 2519892949, 2783290115, 3305004538, 3254355889, 4042012949, 6903522, 730455462, 379174316, 1140758419, 1418842483, 2924562127, 4685458346, 3252887849, 54814687, 500593738, 3350035048, 13744762, 2677379911, 165090454, 6736502, 4351480095, 3291006204, 3861464295, 924726152, 3305910986, 3335689277, 3432512224, 2744732064, 3369181541, 3225038901, 291156648, 2611482761, 4492833793, 63256598, 3463286669, 54662153, 3617600054, 4223951597, 33909603, 4060613314, 33293016, 1513098175, 3390091932, 3392175885, 2723551188, 534503457, 4628650816, 146266477, 805250713, 876097170, 548601124, 3496725492, 1227109332, 4650831494, 3260450900, 4638606512, 2263854492, 4618877479, 4515437554, 4580405368, 1013993911, 4608895094, 3131353377, 4134420904, 3154667345, 17202870, 4551135916, 1208988649, 3083337205, 4416740921, 384640916, 1644367051, 4361721801, 4289129779, 3291211192, 4111189155, 4095486974, 3432611499, 385614197, 4576335492, 1575064478, 3087454077, 4481229796, 2484730051, 397455579, 4443407839, 3351271613, 3764534293, 3107595305, 2837232924, 4558453938, 374695645, 4482472275, 4556159652, 765566593, 4478225662, 2777597238, 4482378194, 1574305136, 3298141567, 3288437098, 387302374, 4428090687, 4329496245, 25941620, 38871301, 773894990, 3703004656, 3171871964, 4258325478, 3314167718, 59141885, 4384140736, 2279784726, 4405811902, 1944926101, 565743231, 1896036876, 2881381038, 4298344762, 4132592593, 610058444, 3402203169, 4430168739, 4206412580, 3715201703, 4429365257, 4067032871, 4453995859, 4286580586, 4503681732, 1436041, 2945751177, 4409386396, 20596878, 18821744, 4100452463, 2390549779, 4104856221, 4432718594, 1643476940, 17127545, 2395968038, 13357152, 1616041538, 3936903853, 3362672781, 3234227772, 4238198233, 37170886, 3310781670, 2470833258, 4376890762, 24641260, 4445062219, 4443257354, 4437900013, 3238070184, 4437812906, 4154941402, 3369087143, 2943778680, 551545790, 1665904176, 4199565015, 3293182576, 271195889, 73066735, 3288492700, 4343070873, 2959224279, 462129948, 4325388317, 2653241334, 14594968, 3041707044, 1225814342, 14536247, 1551214278, 2765922944, 4196868014, 3392128331, 230505712, 3245241844, 3246290510, 2464896570, 1588283210, 3369023253, 4310030537, 3369096833, 3369018423, 3369095249, 3314371723, 3301731150, 94011952, 4301214683, 3242517059, 3436318253, 4204336403, 1229301625, 3369045819, 56381545, 3372161386, 2444611340, 3167775416, 3813670342, 3369016863, 3369082163, 3369113362, 4262914535, 4323271819, 4265960428, 4277951967, 3234997046, 4064878827, 4257937756, 270388907, 3369162784, 618193383, 3372071451, 4075729966, 4249798059, 344710912, 21170191, 1358213732, 4295447478, 433402770, 910767529, 3369008271, 3288749939, 3700789463, 5735722, 504984038, 4042828692, 994872008, 2793324527, 2965516881, 3943298172, 4301516532, 1861651002, 3245816828, 4298135551, 144327700, 4230489327, 4255188853, 2434700825, 4261340774, 872152550, 2824376163, 1012043990, 14439553, 1447018867, 4149228059, 101563838, 2344074758, 4167609783, 429181978, 723239514, 4210997740, 471728300, 4256907314, 723259994, 1631058284, 4241702173, 4053712753, 49036322, 4242022692, 4002711853, 4239672132, 15376548, 36661567, 45119696, 3219689552, 122722951, 1968880338, 14986598, 133163228, 4209237794, 26288896, 3297595985, 4171889661, 3688577959, 441443024, 4165302856, 3079557028, 2814179773, 3193892419, 3897312373, 4194504312, 4072977613, 2873622863, 2896048525, 2868426065, 2925527959, 25414649, 4178125153, 3210747297, 1592364410, 2920104383, 53742527, 16050335, 16711686, 826139334, 4099610194, 272170764, 2660923440, 21497686, 3318260434, 3438042953, 3996919827, 4119427517, 3287831166, 4098782536, 3566510360, 3596193313, 3572237002, 108277704, 184035104, 909889638, 4108697969, 3565431863, 4105547145, 29006114, 572918492, 3314249902, 21934122, 3128047447, 4101702562, 3436857292, 2465853247, 3930538695, 3262000880, 4085064315, 1130398088, 4077702320, 3205516811, 4094234294, 2428746600, 3606281596, 3445573213, 14260934, 715210842, 2854329679, 20547438, 2324931355, 3561566841, 4055603173, 3280180292, 17959415, 1137841, 3028669812, 218819255, 2535680672, 4047417136, 30171517, 294163041, 158817600, 2812038732, 434493063, 24630127, 1277467326, 4052753577, 4032318612, 3372156172, 2360952272, 31088347, 2751474409, 3372064479, 3028987862, 3372052941, 2876077741, 1426489596, 140848680, 3676402404, 449088065, 3372112343, 4033856823, 3855838251, 262289638, 517508970, 3970614084, 3991146975, 1620307951, 860162726, 480203570, 3976303633, 377421904, 3698146754, 3641637135, 711152959, 3986655664, 963060793, 3951074242, 16869298, 3859045699, 2787902762, 4000203135, 3874758792, 3192206835, 3742132393, 6867422, 380752039, 3987199649, 3124168192, 3934487834, 2878853621, 539389847, 3396877633, 3944723374, 3398917175, 3309014172, 3048570253, 93508627, 3890105532, 924569904, 2781414036, 3278963672, 2697484447, 2466617142, 116537943, 1305583158, 3445927762, 3953168957, 3118176874, 3394087006, 3633347063, 3260172752, 40937252, 560622571, 3884146342, 3897137537, 1700987816, 3325037137, 2321310390, 14595446, 3938137581, 2780267415, 3921864677, 2524165066, 3921655367, 2310349423, 177256329, 2651192450, 95569167, 3830504413, 2866488104, 3540449115, 1274674382, 69568497, 237071281, 3645729272, 3048045832, 711092328, 86728819, 3816688513, 898337090, 30958732, 817052436, 362829789, 3882720183, 2613691501, 3328152633, 24649110, 3450039327, 3881376448, 236678142, 42723893, 1972345922, 3367772559, 3394538069, 21391319, 2243199369, 314910919, 3864843508, 2662671325, 122856431, 3791016433, 3461500095, 2873652344, 3866597782, 729055795, 2980436249, 3585710534, 27546330, 2455058425, 637256263, 3843606622, 8257582, 15453752, 3732361153, 2687560542, 3796531515, 3742856964, 2320415300, 1025258792, 3750714320, 3310692242, 3235866265, 2222207587, 259203750, 348732128, 257790897, 17215973, 3656945963, 3119648844, 3533415917, 3166038078, 3830425707, 3063515724, 824097301, 304714961, 19461735, 3709450815, 983761116, 55050779, 282749943, 3125045056, 3815917726, 1464002383, 2835250822, 15247851, 3707836163, 398247232, 2488518120, 3721564272, 3743441352, 84526047, 3742918274, 510426506, 375881922, 3307585687, 341561121, 3064005897, 3722819119, 588229921, 15657734, 256604706, 1061271746, 1585399752, 227941935, 33174306, 3319710096, 931013179, 29972165, 12970432, 409264135, 95821691, 20392133, 29140169, 21755368, 1911369170, 297882633, 3025694975, 3671953580, 1271160937, 1140606943, 473209711, 2976293643, 197908028, 23597904, 17368291, 3791030422, 3127932331, 55683, 991784670, 3314034839, 2217597356, 3667991232, 521665119, 61312155, 2366598559, 19158794, 2790808422, 550218277, 3437500641, 890573372, 369664862, 194350424, 3366793205, 3004174175, 35226352, 2343811524, 274376314, 2462584339, 2556439687, 129982363, 1025575574, 2990366516, 549789279, 3245682853, 1067433296, 3776394015, 568266336, 2660896448, 2445322386, 3776084482, 257105958, 26400556, 623208462, 2374687748, 2951326008, 2836831551, 3565196532, 19533970, 937453657, 515796374, 32339577, 1069924674, 26243581, 21256388, 18359687, 51958104, 365424178, 1519453129, 2993641806, 110849533, 15410181, 24939205, 391698296, 3293817393, 474197738, 23989245, 3217502745, 2501696396, 35754897, 253526305, 191606864, 3008103926, 104940767, 203006404, 171093486, 42909816, 40147256, 3438494050, 131850717, 373629495, 18957528, 22478857, 441869139, 327494258, 3077068253, 42566089, 14909129, 16117544, 3769089201, 126227790, 260409334, 358127357, 18409980, 873102607, 204722944, 117665953, 255867958, 3378918880, 2584841, 285435896, 1390708652, 1958639456, 46969371, 24973042, 19150410, 2691032274, 2371922039, 90884238, 119741900, 2730359500, 110095813, 71229154, 20247713, 332962470, 2450622499, 3766223981, 338315107, 279389317, 3299221046, 15387032, 632433915, 32321142, 2332448720, 228111079, 3162067817, 2710356834, 1359934544, 18157949, 2902807042, 591955292, 2566507268, 3312843998, 3301215209, 440447856, 100021001, 2950135645, 624751365, 2924824557, 524317843, 326886738, 339305583, 58139636, 325382356, 77675608, 1604400888, 14337677, 33762408, 3226765068, 453433267, 478052966, 2376105709, 761821470, 2682724056, 3308110327, 124322117, 323861766, 42825991, 3418685967, 38044745, 1884638293, 835126549, 2435921790, 3674884573, 2906512079, 20380832, 16393195, 304566678, 733185818, 3287926819, 3112569449, 41446147, 57821198, 3133437064, 771135176, 3763645767, 2197216129, 780629930, 28422283, 57391309, 22285002, 90467435, 16009228, 87003849, 2490802358, 2831619731, 1725681336, 15072897, 3672518918, 103355247, 15846480, 3004462409, 425247471, 1033542842, 3761939301, 165452796, 2315874928, 1595385926, 84649687, 3424669325, 346413206, 213863733, 3671107700, 22493135, 42445830, 352416575, 322935580, 299583722, 2246685840, 559419711, 357166905, 576729133, 3297935932, 780256, 2673962376, 398029052, 66460256, 524971540, 2475614696, 361923349, 45178917, 1618289293, 1529281777, 712252046, 14745265, 968346379, 288314281, 57278524, 143121774, 1350192332, 2545160278, 378357691, 229191999, 12325402, 315739478, 300311737, 790993424, 1653027398, 2162573900, 25396935, 92827461, 336831618, 19519403, 27809379, 813767929, 243299651, 3758706017, 21126689, 110860080, 293055819, 47972392, 81796862, 15876654, 71480385, 454083904, 84825505, 3327174042, 36141303, 195478230, 142216838, 1561810207, 3437702092, 3755741115, 18589798, 26414682, 3755349015, 47680923, 292551106, 2337491022, 15075215, 3152481, 19784522, 1967676458, 16064715, 3623119213, 3746582117, 3742885576, 3720703834, 3471887176, 3676985837, 16008657, 2849184133, 312806264, 3318322004, 3660317175, 3164522870, 2861121485, 3322346690, 390634518, 22166168, 880869722, 3089421956, 3305860415, 3588190457, 204391039, 3239517631, 3319933355, 3599797998, 2998904224, 3561202392, 48197550, 276117815, 3676773257, 545286328, 3679097175, 3646159463, 898350834, 2720717808, 3134132414, 130911267, 3534423801, 2722611607, 2885105333, 1890653114, 281096380, 47904733, 3651948615, 3647552597, 2998874523, 211810106, 847982263, 323210799, 178064435, 1631607308, 3374277485, 3532146672, 3491163143, 3625519757, 2983873470, 3488315780, 2668359638, 3526092440, 2536373654, 3119682967, 3496635434, 21124657, 3307525812, 3608599515, 705804404, 433076609, 2856319923, 2864709981, 3227185845, 90352974, 1242147744, 991976840, 1596760496, 3598393755, 2826874020, 2173503494, 3241226132, 32272914, 607618475, 2330723844, 394080114, 3072816451, 385711077, 3550051277, 781088821, 2904507394, 1491824214, 3379323719, 3442798332, 98456973, 125222510, 1014843008, 2781240970, 18780020, 2525002464, 557847258, 3215225885, 3328527374, 3154422811, 3444680595, 3304074656, 3533189175, 3434033233, 3185412498, 16503630, 363748330, 1278333757, 3424754757, 1519836126, 2998357891, 2940876531, 3374017072, 2490418518, 2491727960, 1058934854, 1040925240, 946605234, 3411393732, 2984838395, 3405973940, 798018403, 81394857, 2716035852, 17083882, 3421279773, 3387702346, 637385533, 108449705, 3397256713, 2941268731, 3436343369, 2453990824, 932649750, 3320142422, 2849330606, 3188361169, 799186008, 3270578292, 127767115, 1974333300, 2257691340, 2282907989, 468954602, 3448469717, 3373031239, 2201083252, 44221382, 2811672966, 839819048, 518027609, 193035695, 3044766969, 3303433591, 318847914, 2899931039, 430777761, 250761666, 2762347356, 3342197517, 3394811177, 3439539351, 714808999, 1323009847, 518574987, 3289945685, 3333900732, 3309199777, 1941886201, 337229364, 1909448954, 746437578, 3226803774, 3327840265, 63274860, 3307066231, 2902401889, 753465020, 3322016803, 39839978, 2559281742, 3385067943, 28427727, 3410894199, 1328291191, 911760128, 18060782, 3150764702, 3277957106, 3289964234, 3322229030, 3315969398, 1377870192, 1200309318, 364580402, 69423648, 14848127, 3368750837, 343820722, 28848544, 269498956, 3064868338, 381262722, 3316331179, 26111690, 1957664515, 3182784189, 1716930092, 216564864, 2468109192, 417957444, 885336188, 3308911941, 3298769402, 258270134, 3430549941, 274086239, 120062208, 3038427494, 3296081103, 137996439, 17237614, 3319477788, 3303924961, 3430731333, 3426654850, 3319342304, 2744920447, 115521188, 14847496, 22720309, 553016365, 2801090275, 244715270, 2800397977, 89843464, 3314471551, 156968876, 3358491778, 409343201, 174037078, 353549762, 3318821160, 2239637844, 7273952, 440519278, 497492256, 3279129193, 58017020, 24588399, 20085452, 3423477340, 2550343301, 52423876, 340499950, 655343, 3305997908, 1389147930, 3305938715, 2888713287, 2306149431, 3031506514, 3318200898, 3395009895, 727530661, 3225594631, 3428995648, 475445113, 351337636, 2752220550, 303554014, 381027793, 3304819610, 3427847644, 3286210416, 118235929, 155997496, 14079324, 3314473610, 15103056, 2324681347, 3312747140, 3115714225, 2897238137, 91530572, 2268490213, 29872754, 143450188, 277202417, 142030358, 1653641683, 2492143571, 3421399661, 3339022257, 395270674, 606142563, 3300636247, 3315786823, 3031769337, 10702362, 3171862198, 3424410670, 362426662, 2824785955, 24297310, 3416372932, 3195428898, 188668186, 23460980, 3244875996, 3082784877, 18187030, 434318356, 3075626109, 2890346000, 23540681, 1901085492, 274612235, 863378442, 282080592, 354852855, 517783594, 168165670, 1593796604, 2591632782, 2874298913, 2957952996, 2835811651, 161521494, 558132339, 14793299, 85209075, 3397245477, 2974380082, 19916529, 304393517, 3146768724, 134313598, 1912157732, 21439101, 3314001782, 24757163, 240402090, 3381144622, 2752716881, 1606602836, 535472056, 401291759, 3291553094, 122194244, 2257173902, 2053491, 9642462, 2335984431, 1053840037, 314730239, 2908748863, 3308525460, 3312475110, 1921725680, 179075503, 3128325357, 2846754875, 99886979, 875918448, 103203138, 3131242228, 123004655, 49480727, 383982906, 24656052, 1409080304, 2429705149, 222523970, 1404913814, 3217244710, 3405837489, 3286572806, 1205985991, 303530347, 1469990245, 575432389, 1130760643, 3310658641, 301988206, 28293478, 136455083, 2810138270, 2386424731, 3410580346, 131230732, 3310218576, 835995246, 291765653, 944951768, 3069309878, 3309664286, 3407507807, 20641176, 485775165, 726399254, 287455470, 236383731, 2331411, 2909508270, 15434198, 3158294575, 17948233, 28490110, 158475249, 122702609, 91858645, 1924459776, 88643929, 1006236331, 3304628310, 187754202, 24597313, 38838094, 223725843, 176384740, 296516579, 3029943839, 301982599, 18885700, 3273529406, 20112537, 16016841, 1528493707, 3028165463, 34308371, 414348168, 2805546579, 916809126, 3307562983, 3028431054, 2434452659, 91435560, 142911384, 3183774135, 3371630909, 1107777762, 1166401940, 2642920375, 3316223807, 2777344487, 168961317, 1480806012, 2203879116, 3306073742, 1895951490, 712506968, 3305863213, 437259295, 739619514, 3382504204, 2624871656, 3302852336, 3401593403, 2853639989, 2261946450, 2287131684, 146320306, 260532533, 982269738, 8201342, 3332464419, 131734558, 586921790, 118248371, 3400856710, 43787362, 15889436, 36927998, 1050250202, 3102244779, 713288288, 3304468434, 16896081, 3250259971, 3272302232, 108380750, 1528941704, 3169209138, 2687038597, 3277203235, 3399200523, 3378108695, 3372463121, 593786656, 3302903923, 3376616188, 481441609, 1599186643, 36249266, 3299349631, 437782878, 52841178, 3214186095, 2516925589, 2323019857, 459809707, 3316892277, 2951642036, 53817735, 52630243, 18991370, 18793562, 187074956, 3169369153, 24746443, 360938389, 49929913, 2580366297, 94992855, 2943496106, 23278740, 3301459650, 355558718, 149982849, 3395789079, 220506985, 3150301794, 2318650639, 3284620076, 2196260961, 3301020727, 3341706088, 2595159421, 3272826486, 2499423463, 1896246912, 2599649755, 2968084455, 2714749314, 3298132110, 2847804197, 3299304427, 3042622645, 3057238438, 3193136082, 3391957281, 45439747, 3299596861, 3289994574, 3299460614, 97270935, 17479969, 3248598584, 3119483921, 2970486593, 2650683564, 2726027623, 182440689, 3252510788, 140009944, 3296467034, 536687726, 171992847, 23966894, 1702550918, 2432705551, 455242356, 25568219, 3293559848, 2539085162, 145660063, 3248082276, 521202310, 283843182, 15804528, 8873982, 2846101398, 3093804164, 2744624881, 3283976587, 896548951, 3291270571, 763141069, 3332089318, 3145313984, 53859897, 2960151686, 14547465, 414312415, 60031250, 3289924633, 308389347, 3165770244, 3386808027, 3286722924, 552405856, 2235042289, 2320676557, 234510851, 34948762, 15035834, 39261096, 1317845004, 3345796229, 1213826822, 3273572366, 3387478035, 494509586, 15429290, 779012161, 355830877, 1325545832, 1147763726, 2918440720, 14951174, 3376767365, 2831852183, 3180968594, 2857215332, 3194503789, 3386875186, 169921725, 771182024, 947769733, 3832281, 135677157, 2942214320, 3058816856, 2273887568, 3286837051, 2284631432, 3386060333, 35411817, 3385973020, 364832569, 3262673221, 8541492, 1705820114, 3384466587, 976948010, 883558274, 81396070, 3285786937, 3384172924, 235138711, 267897978, 39100491, 14991273, 550190796, 2445932708, 2166605965, 80779450, 570435144, 63600717, 299163027, 16740279, 735054794, 174771864, 3283922682, 3284374022, 298150538, 787348237, 169445321, 2220487586, 70091642, 3283208342, 2704770012, 103889989, 19019514, 3382465048, 3382295969, 49932377, 174285878, 1063974115, 320344665, 1596175406, 284972093, 2917539951, 106707371, 577954867, 2785165032, 3282676134, 3380925261, 272898991, 3327898666, 1035577195, 3351768233, 46759489, 78862565, 2997744145, 3024682087, 15080878, 594109772, 1301589103, 363972548, 1682447942, 38661513, 19427812, 49071958, 82952713, 433688733, 2362038176, 3261509664, 2951101922, 1947674420, 93698869, 2531028432, 22672104, 799747874, 2243567878, 3280379318, 755829794, 260214110, 759973200, 1427088757, 3256942056, 2842032693, 2975607816, 3279970303, 44708064, 259556727, 132570905, 464958008, 2757057685, 3355756889, 3351592047, 3372060351, 3279199100, 2814338885, 3373948978, 3271339932, 1365532753, 3191047857, 625961613, 3278698016, 2478136272, 511500579, 86626311, 3277945849, 2616401366, 2830467981, 106000038, 3174496635, 339515882, 327955629, 3277239498, 3190223965, 2362227014, 2824524332, 140133636, 627633389, 325000251, 2986708839, 1963586598, 3369741292, 1089285774, 2960602427, 1447666710, 1109943692, 21355612, 2459581782, 3369528298, 460939629, 1072157983, 3272679000, 3275077291, 185016428, 48714879, 305348232, 3369954346, 245261124, 2320137277, 1339375526, 3368397735, 507872067, 3131720320, 3365925905, 236962918, 2828473539, 16063885, 3208749275, 3349758255, 35921353, 3273992754, 615009737, 2554476102, 1308729907, 381015561, 2952558439, 432856745, 139709754, 42393552, 2858438880, 3310188274, 848359831, 366551314, 2410774122, 2567931625, 628558605, 2844699165, 3161428219, 39859095, 2474451, 3306093495, 353912153, 2316357264, 160273646, 1587091896, 3240430806, 3091375114, 557284498, 2728694337, 2899118630, 27753893, 575338442, 88584204, 2824323817, 968695542, 16279554, 592286290, 19618210, 266545811, 252897050, 3346064571, 2595323947, 7765612, 109572102, 19804842, 80247890, 34447217, 532689500, 2299710372, 21465925, 45716828, 58340039, 574610510, 41109360, 718593078, 12257632, 2471905921, 1097573617, 2600034403, 3341031143, 2196931189, 3270818598, 13047322, 2934129837, 3130776262, 2642961590, 150965694, 1500725676, 874223732, 14593763, 217949209, 16867831, 15357971, 95774357, 2798598233, 3188324402, 1247462594, 64452774, 2419730239, 1576113614, 1227823958, 850117501, 1132143535, 3357153478, 213632440, 1016285491, 485886996, 116239843, 272023536, 2617237688, 29550233, 2998632837, 21647380, 2875804937, 160410459, 612046207, 2719082323, 4315751, 428684731, 1370338400, 3303305134, 59707017, 32488092, 125249275, 493754264, 16116214, 2614380511, 3241172671, 86045776, 3180064812, 981866658, 121896641, 3224535142, 16320554, 2598001729, 1897677870, 59375148, 15210207, 1076713596, 22420629, 87335301, 3021559986, 54795231, 3351429592, 1088161568, 598728655, 95506085, 3260181164, 377858959, 27921953, 15053256, 2305501767, 81167159, 12337932, 2184521743, 286391720, 47742147, 21342836, 3085292805, 18583228, 3267417439, 37702406, 395681883, 214360044, 1642524690, 393603430, 822644540, 3043472039, 262481941, 24550930, 35583898, 1948727131, 2513720226, 199862369, 2938889878, 2413594758, 3265811214, 16556630, 204312379, 61451718, 3266660534, 3350435921, 44129616, 16025792, 980354275, 14534467, 3350855067, 16698673, 2497762182, 19331096, 2893230967, 485617655, 3353764295, 54066935, 499261606, 63852181, 3355957835, 18000132, 121625523, 166857011, 36017747, 2250064770, 3351701422, 14069586, 61854086, 3062702771, 436242574, 3096565135, 306483266, 242918894, 15636142, 16484129, 2953721110, 28036725, 75918073, 18705112, 20183469, 2538405619, 490794284, 2437346502, 398703920, 3261365112, 577477163, 2190644732, 164434716, 2415085993, 30330146, 2728990002, 554381559, 308163567, 3352579023, 2210688265, 3307411900, 2312073872, 66799789, 16023185, 2364688028, 83465839, 577975262, 2836035235, 3028906441, 1371703465, 1105438082, 3255067783, 2255452332, 3307324221, 502008184, 3256985378, 2857528105, 984172484, 407161621, 2384314538, 857142840, 3255653563, 16564925, 1709876940, 2930856338, 1231578642, 1005461768, 227507908, 215310458, 92374836, 362880718, 10908352, 3257786339, 223608627, 2513312516, 24881995, 3239074594, 160444680, 2568853129, 17119070, 127900149, 372957107, 15689404, 2815046317, 2924022467, 1431444060, 313427754, 27820338, 2494260060, 19706227, 18264627, 20126862, 227622672, 68923574, 2338959518, 30524285, 3300771508, 14691215, 18367937, 38419396, 272218597, 3337432331, 81146591, 2748649880, 2889527401, 3246335646, 3260517488, 86391039, 238374731, 2994713500, 2881829733, 2859229134, 354694878, 197015024, 3034532050, 3238216489, 860099634, 375270752, 3127759705, 3011001845, 3349159528, 22360127, 2764354965, 860939377, 3345746367, 2680160995, 2809627904, 3347284929, 1095102535, 353846241, 238628020, 268930683, 707098314, 18271834, 3346576763, 113415817, 62681698, 1597220887, 3255450739, 1851849318, 514985532, 67580602, 3246059330, 3253372555, 327017284, 2852936548, 32686814, 3243562110, 2539511884, 2427246170, 2933213332, 1022110370, 2904717305, 326150402, 3345032997, 37482414, 1459090969, 3322617651, 3245375338, 3339211527, 3185597596, 3254152926, 217307457, 3240437032, 44655493, 15241682, 1656574369, 202734022, 335092316, 575828962, 2756364385, 18643839, 2359679432, 2853475981, 3253285748, 28757835, 3013627236, 3253112430, 2945404092, 18799221, 3215719555, 1024447620, 109703314, 72839849, 2988830614, 3107576540, 14437490, 3243769148, 54319648, 22534061, 3239663143, 2840161578, 3252350210, 3237723946, 2963359867, 3252192158, 2725580095, 959865852, 2868264331, 107681061, 2796904921, 3199745092, 317353416, 3339455417, 823083, 432890325, 1476424110, 164133028, 3104556721, 3250987609, 1437171158, 3190790843, 2822033194, 3008882862, 18357890, 2409592351, 3250324549, 3001572283, 553364235, 3237112696, 8424962, 3334025308, 85118174, 2261891654, 3111666304, 3325860057, 2283223800, 17755033, 105712056, 3214481295, 22516489, 2418114211, 3319161028, 2151145357, 157415973, 358773756, 1538249185, 21777512, 2362036330, 3247381416, 3145621950, 88116883, 20534920, 21879667, 34200848, 2152315988, 3233966865, 466233156, 3234535122, 3247677145, 905628074, 3247545170, 3330696251, 3247417052, 3246689502, 3081788372, 2319934141, 2513341416, 2526655772, 2929128469, 1967510760, 587688630, 19563661, 90818494, 3033105576, 3185481199, 353767859, 2946684410, 21264477, 3327753267, 2269433623, 2502073531, 40892332, 23412075, 15588148, 2685439243, 38566617, 3327326013, 358588432, 15730546, 2874675970, 3033659120, 2964589058, 3245692182, 67929970, 3236549348, 363908101, 2978586790, 2735775078, 361715888, 3245477473, 18759030, 3134819644, 3238799333, 312957029, 3065538900, 3245141227, 95268340, 30688200, 481807083, 1527419708, 58583995, 19695390, 40555720, 62438818, 3322995268, 3061871083, 2996226884, 3239254658, 1447131048, 301966760, 1086273794, 115830646, 17846938, 18898059, 2264785920, 2313359125, 1547537527, 2766850329, 35050392, 2816188274, 402003559, 95998135, 1007568013, 911729426, 635800596, 347255327, 1605694058, 3225655442, 74214728, 3241664568, 3149332332, 3313112985, 2956721094, 3241761282, 3016206471, 105964973, 3227238596, 1633409803, 3184725139, 1464657728, 2730240600, 46646975, 22413496, 15903764, 2502679495, 14912780, 607005973, 1027656631, 312949611, 238400395, 3103382031, 17810599, 338984937, 259622537, 2434135663, 45689135, 2886305915, 738246144, 3225007573, 2577154098, 3302786535, 3298384065, 1617787723, 523437541, 3293760635, 3179499186, 3312312057, 2887105303, 1653806952, 2882434989, 2267422392, 351239198, 3233732947, 3172191942, 86485331, 2986555135, 344908429, 3308027349, 3236793662, 26210327, 563988748, 525593300, 3308580640, 3308563875, 3301927264, 2457829333, 3180878670, 3305543375, 1149152958, 72995844, 2901950317, 37836873, 3296542259, 32323209, 467928447, 36388601, 2507722194, 399390602, 137660115, 2761966264, 19093377, 14985977, 459300842, 3156779970, 3306670997, 21224647, 3213978617, 464855779, 3301814921, 321426872, 236151290, 3228275492, 3305190945, 3102138022, 3140353059, 1529927882, 174242468, 3231040476, 2976107329, 3230766625, 1183149060, 426734017, 2178293671, 59075847, 171724235, 335378209, 159575486, 357165315, 35333150, 2851579324, 2468106433, 2944439114, 3173641725, 3244601302, 3082579757, 3301740899, 3192975594, 283118538, 434049581, 128241097, 313006876, 3243987532, 16097968, 83280323, 1584209064, 32796852, 365995678, 3299567818, 1919437490, 2396350700, 3299186571, 157053960, 396804174, 18181934, 977482010, 40133061, 3194177710, 322416416, 236927135, 3292910998, 587810318, 22390108, 1545482136, 262313593, 3165362050, 2562854758, 3220701078, 3295258121, 1644495702, 3164716322, 962820894, 3290434822, 3100362021, 3131478562, 3190084854, 2325661891, 21277182, 1945424582, 3223151448, 2953455831, 1701578628, 3187461022, 2789557270, 2304406394, 1601106511, 255833240, 2850633596, 2458208618, 2569806414, 3011648898, 144722120, 111814903, 250870107, 3222096972, 897288235, 906653515, 115236840, 2898478889, 1896792314, 624380946, 3292166157, 3075573215, 3189578461, 281349483, 435681607, 41130914, 292647591, 64151219, 37902443, 169165706, 589415057, 489789276, 3190165838, 338970982, 3105861986, 432883132, 466485562, 2864214491, 15475093, 1510982040, 982199750, 145936694, 14112560, 55822405, 250615802, 3221424348, 597476208, 2273944754, 3173005842, 22968486, 13831932, 3124706771, 262430206, 93953874, 8814772, 7121172, 62570297, 170309471, 3131522382, 121192244, 185774847, 555509314, 558340038, 811838826, 512630983, 2691452192, 6509962, 250301429, 2597913918, 403749093, 109326320, 261733111, 16404954, 430671509, 105026655, 21613873, 3215184153, 3097521417, 2909675190, 2916304178, 2428381464, 3196678604, 1970205505, 2725425502, 74207319, 104666974, 589644210, 1300810422, 3256502795, 3196038126, 442903146, 2586563082, 2586738745, 1855637845, 352821813, 61477734, 3095135091, 2883612317, 2764437502, 2324210480, 1149200671, 365556336, 22066285, 2284453291, 42120085, 14599464, 160472662, 2770640132, 3068576178, 1336915111, 65101536, 2178309389, 2848258175, 19546533, 2542121732, 2786035352, 178600543, 172786912, 3128264047, 2883834152, 19319041, 3246622978, 419883987, 567238746, 2905325318, 566413110, 2836769552, 102961087, 19957803, 3188584015, 3067124294, 407408314, 106757359, 2949602146, 3190912752, 3190209810, 480616240, 1044020509, 3020188513, 1236499550, 1314484064, 2993454701, 3236006866, 2712110611, 3075715063, 2601482131, 2545115569, 11353012, 1414745010, 153440886, 2613923132, 22883486, 3144530475, 227533034, 15825051, 2990366584, 38686935, 2371604544, 3186905755, 14994538, 3188337984, 3215404887, 474614008, 2209986403, 1697695572, 2230674883, 41525047, 3188045419, 1417843328, 80704927, 2829919833, 1375678100, 56141616, 2943265556, 50922107, 65083125, 2212879538, 1669431445, 3123347304, 16652840, 3024743784, 3008032768, 3140568331, 25078382, 3233850171, 93908411, 594238836, 2981295157, 2434989762, 492018105, 3097205309, 96997907, 304415259, 3184293462, 3236446413, 3198647505, 1170636272, 2178209244, 18757698, 1624317169, 99401071, 1599023744, 3184813890, 1363667336, 17829450, 480772976, 14278166, 522674330, 138944368, 501177938, 292632884, 3133131439, 2705683456, 23548153, 387437294, 3183575684, 3067249087, 25678101, 2788529930, 3054125730, 79024237, 2877780882, 3157452171, 28850179, 3041485667, 117205846, 3183300739, 3144061905, 1335835988, 598428888, 23852365, 2686756278, 3182392368, 2259380738, 2916145740, 79812508, 3024371774, 3038645847, 131055288, 2506181892, 1536927582, 2547597109, 3165851298, 3221197768, 2575665288, 22126132, 2956848004, 19927012, 2253567374, 3206610670, 1333967101, 1550706396, 2317389050, 2568005624, 1949899056, 80604718, 1541999472, 3222850419, 3217556374, 2766864274, 1887144066, 1296752732, 1301668658, 1261518816, 74396421, 17221069, 177691724, 3071950258, 717863434, 3222822291, 491092473, 2840042433, 946759669, 3079207491, 49323198, 2544240657, 313019411, 40032501, 2646824598, 117384592, 709681428, 1541363042, 2550461, 3131650432, 143470981, 1133432454, 3076240625, 2581882811, 215508074, 2276660323, 500627340, 766585207, 132122597, 50101938, 227522647, 3091910360, 611367409, 3178737074, 84463170, 408980974, 18069493, 3165477711, 2364630716, 3214005593, 341878033, 139318070, 226580814, 3202223609, 51234276, 3214680484, 2839556749, 178647381, 1207844718, 94097711, 2406669248, 457782574, 3031707882, 3215405032, 14956673, 3146995371, 3153341662, 2661473540, 1409082878, 3017826134, 1616328637, 747221318, 387289803, 136015731, 222640532, 3214564197, 797494844, 2495315190, 3003937365, 539183579, 3167446037, 428019663, 3172602823, 857101418, 2374097150, 206473078, 2950404028, 231324724, 1343085360, 66495983, 2167961131, 409955666, 725050728, 15491617, 2999206501, 425231971, 3047956549, 43330582, 353815489, 2526292262, 2876051989, 3171102157, 72260306, 2429120304, 3016148261, 2272601586, 121272353, 1403331493, 230058524, 3177113779, 2223678331, 1006824656, 1307811860, 1475043919, 1668813720, 36193296, 2840675128, 477366528, 362075138, 3176818386, 2749016171, 3206709616, 375016975, 3200002061, 69543723, 112296216, 2380336015, 34976135, 16550479, 186380643, 84790065, 3159404964, 2356099343, 3174072806, 146549981, 2486635696, 3042334859, 21263663, 2620171801, 518155565, 110124029, 30478680, 956473652, 3037272323, 431208467, 121236961, 2359690340, 3206726619, 583032066, 39182801, 2244229741, 1594160412, 1654288080, 3137883791, 19039364, 1523498875, 568335266, 2867838403, 154737265, 2890600383, 3140246180, 3169411357, 2360785622, 2997355818, 3132009213, 256101145, 2742734944, 16588146, 2950595911, 3055733449, 2430898916, 2503972172, 2479789123, 416350692, 1123568917, 2959530058, 2740443233, 2163543109, 65676207, 35438418, 2647320482, 27047046, 455443919, 72702982, 3132119451, 2993812955, 223139140, 113612361, 3014549505, 3166558935, 2831642817, 1687006165, 546522336, 1209878948, 2599106970, 3051252028, 2892498677, 56827390, 2820618296, 2716196783, 1684695840, 3167385148, 3152874905, 25870447, 113545967, 94193981, 21479387, 3097996089, 484363981, 3167868614, 2716275637, 2700223022, 2642111522, 1421278159, 1273036970, 3146480946, 2905783174, 3048889093, 1355370450, 2182410768, 3000425125, 3128243567, 2961836124, 1062109706, 2442565262, 493208195, 1554490128, 2367772716, 2564493385, 2269914306, 222147945, 2255590554, 2935686976, 3007630549, 33117104, 20746042, 1328232668, 1868380964, 3162705050, 2612833488, 2429216377, 84502202, 2246935516, 3163359614, 2755661198, 359453148, 1866243193, 42892455, 2779204951, 14280445, 188111438, 20030284, 1465232090, 33936754, 428785682, 16358915, 189073580, 213084190, 7384432, 248333324, 2852275849, 958301280, 228999222, 858845101, 123772867, 2888748213, 2935384154, 177748749, 336136926, 1037506758, 1479051396, 75370828, 42872176, 138160300, 15471323, 749528521, 3103451277, 12197032, 1548, 2454714289, 15210566, 2328969528, 2256545870, 3167851237, 2382510938, 3052331608, 3091492841, 228699219, 1018438202, 162489917, 2686057201, 1012460306, 1544296339, 2842811598, 1714352198, 2788656494, 10720262, 195694617, 267613720, 243357143, 21107808, 1669289102, 1149276822, 599783125, 195450477, 98795912, 1142941, 428597389, 214113720, 575322296, 1122037838, 16932848, 654033, 1324125072, 3008597084, 77007853, 3094365867, 138985711, 2956446878, 2762664990, 21662285, 18271227, 337343337, 3158983618, 3163284924, 490112926, 1264512061, 164480014, 2684660945, 271652717, 2739099484, 2307815046, 98643448, 3111912045, 1473794754, 117634732, 115490460, 2922642131, 14947998, 3121276863, 1613145114, 25857532, 1286270364, 2454651108, 2991312649, 15337822, 113137845, 3139666643, 21282007, 302510445, 60398610, 3172514794, 234745046, 16602174, 3158726798, 59453, 3138243762, 2741011245, 88078431, 919860212, 1345426651, 3065913111, 2967033270, 16118599, 3130784013, 1588334714, 100815003, 3156992629, 3166875833, 15079071, 2522427001, 3167504357, 16257100, 1338, 3167196353, 1582479492, 3094981977, 22698147, 1475900005, 422271033, 3154454110, 2641077269, 366790687, 36811683, 23795212, 24004250, 2978645906, 12497852, 1284907730, 2852615224, 3121273893, 396174375, 3148898977, 189863792, 460171717, 3093724378, 16612625, 858945828, 81957794, 1411851301, 19330360, 2397051, 11167452, 3152245658, 612147421, 371943335, 1441319364, 3063465922, 289623618, 558195608, 2563970689, 1431856261, 3150614791, 16303721, 2462379295, 3097113646, 1342428037, 3140018329, 50322606, 49643884, 410141708, 18057073, 14296230, 369024196, 2978394842, 840566990, 67862101, 943403953, 968908266, 2458188217, 2467757102, 3146761249, 2986685337, 256838241, 1434640532, 2722319774, 3071743440, 623216509, 2826488523, 2734271179, 419096260, 509468825, 4452951, 235322591, 2923039453, 76138951, 3141945498, 3150030538, 63040962, 52965396, 3145999763, 3145389655, 2607571670, 247883817, 2553458418, 18245240, 3099322280, 1346772768, 2401879252, 1490908590, 2616901068, 3036973742, 3146530204, 585255303, 3142373253, 3116207098, 3003843885, 30815935, 3145318863, 192118974, 36271314, 3144412791, 1433524266, 3027154198, 2395377457, 2843077018, 2678132030, 155297045, 1952500026, 17359469, 3081856281, 2701699687, 3141040442, 606830085, 1216039668, 2901766488, 3140188484, 2922566012, 3021500090, 1018743871, 3139447416, 2970506717, 16806082, 2910237449, 2590812845, 2921413957, 3138735308, 166196521, 3132255753, 3131989617, 3090357903, 103895441, 62409978, 3069041375, 3133683480, 3136507291, 10782302, 2413051692, 2353102435, 2943835678, 2432716717, 212402696, 2871243543, 22039951, 3023990357, 19037995, 3124080193, 47546250, 2560181622, 2490165774, 730697882, 3128375930, 2349773397, 23154120, 2549452651, 3122530172, 293552084, 3120792492, 3091754600, 3040808986, 2627502202, 3007775843, 3127943699, 3114227965, 292968867, 2778436806, 99098809, 2790456825, 3102226902, 2873087403, 1485136909, 2680134386, 2817767214, 3124252893, 2575580646, 3115972511, 3121668226, 3123749283, 15337043, 436232102, 3074018182, 3110488591, 2940010649, 409317907, 2899676241, 2983567593, 3101631014, 3013236705, 2791987829, 14787758, 3117943696, 3108032647, 1157537990, 52940530, 2990811945, 3111634373, 438042120, 2548914955, 316726497, 2482768232, 2441873774, 2912831846, 3113339386, 240097368, 713188470, 3111730840, 577816945, 387393173, 403478532, 1880811698, 3104620165, 2725644713, 3066038804, 15771803, 450925511, 232343915, 3105723157, 527906735, 2246593410, 3105502068, 1320445610, 249521627, 2558023961, 3108105911, 3108077519, 3089116917, 3105074670, 1511167219, 243768472, 3104164838, 2968299131, 144839982, 70776300, 148467183, 317290373, 3094553691, 2953930344, 454526996, 807554857, 2723102317, 3102412711, 3064994626, 3102133496, 3102083419, 3101868534, 2996344310, 2563813867, 2954853941, 138554028, 2381410628, 1326101118, 2175411, 14538254, 64931648, 3099716202, 489467252, 3099122612, 2371511455, 16249572, 56841094, 1544210982, 718849764, 3097041159, 2903971578, 3091619602, 3087262996, 3071789099, 197002497, 2893925350, 110600813, 2374667906, 2818018806, 2907094071, 3074676677, 2573733108, 1393208810, 3095468882, 3090851792, 2953048902, 2460565754, 533934037, 125686756, 2940496570, 2925851773, 3092223469, 2166415653, 244816716, 235661181, 118221781, 3094025292, 131115490, 14278028, 2466167241, 3064395437, 1499053189, 46836633, 2850831579, 703993267, 2871336995, 2923922416, 43136911, 3067827197, 1047118074, 3087841638, 3088454877, 14369429, 2864388993, 2976567862, 61949043, 3092077847, 3091364296, 926181458, 2967916913, 1337386772, 30256536, 1684496310, 2991005590, 14770441, 633268483, 3073480601, 3082917169, 3082789640, 2524130481, 3031892218, 3024294709, 978575058, 3080891262, 253309951, 3051624396, 33438091, 419575518, 720901351, 707400252, 2281210542, 3090928078, 18280197, 3090559264, 1852295060, 3077094749, 3089658064, 440327243, 602647514, 3064061458, 2986261310, 3074535662, 89856868, 199757437, 3070425020, 15128026, 2842564587, 151532418, 18937385, 3082529673, 110010294, 3086767089, 19372840, 3072059444, 3064853295, 2600762910, 588921911, 62881185, 2405061163, 364458634, 2837917726, 1078369069, 3046723148, 34727374, 2564978768, 20490915, 1950062431, 209602032, 874352437, 2419971998, 61236326, 204447420, 1475118602, 3070734450, 1120182492, 3070688857, 465924787, 279743016, 494476765, 188515523, 214747825, 786146030, 26097308, 154782527, 1838207400, 3076380443, 364467351, 2327370235, 2829942930, 3063631369, 24890901, 2928739911, 6035242, 3051992092, 2959220897, 2965071502, 2541112338, 2603637553, 375499570, 365808698, 3067618843, 16917828, 16549116, 1908723582, 123171039, 29838664, 1268642450, 3077634808, 1448738011, 151519583, 153873016, 2877151045, 25620672, 179216418, 3077609081, 56464362, 3067130754, 2395312946, 260243995, 98740604, 930119893, 259357029, 29236701, 1254605904, 3065786227, 22022646, 365480435, 2274864804, 15379505, 1623441578, 20300104, 18012679, 2963673784, 2413359380, 141909875, 962152818, 45318494, 2190757965, 166079658, 18599061, 17809147, 2912272722, 220543503, 88324836, 2961597096, 2835413265, 26091976, 8902822, 2569144296, 285668841, 3063671618, 3023992703, 17414602, 1378344534, 18139106, 3062140718, 2577335454, 19562939, 104939913, 3020204629, 3006306913, 3052155451, 2897974370, 1017391, 44531639, 2808223189, 741803, 12242992, 2584339548, 59163264, 2493238668, 928261158, 998289805, 190528043, 113517282, 2586514873, 260560686, 15947348, 814112882, 3066906051, 16955235, 14183691, 34881385, 20340969, 17383191, 1311781, 169271629, 3033838690, 150223958, 2722197956, 3021842372, 1961849978, 232526563, 3034865567, 3068301502, 1097146207, 1058267378, 2816680539, 3067980917, 138848486, 1148933802, 348881538, 2271443084, 46616450, 14486302, 465299654, 2212979137, 3058916077, 135180509, 463242799, 465666054, 2352187789, 49141886, 1350648744, 2548713044, 3052256568, 2837292587, 3051416599, 3065972423, 18739136, 3050498972, 3054162660, 1343487019, 330666522, 2954181649, 55977032, 792972950, 3050520096, 2899705624, 2914805632, 371878922, 3051047394, 2269487202, 3050593448, 3045369360, 3043022430, 3049901022, 2936848783, 3041957486, 2953654147, 380939116, 3048353695, 312465809, 549194825, 3064567643, 1133465862, 970548092, 290075064, 563306003, 3017427090, 288443185, 3041033221, 152645752, 97024311, 15229103, 74464449, 200541524, 3044139079, 15486045, 1319391535, 3063873989, 2889674833, 315480872, 385460221, 3042583122, 273278007, 201170181, 2650397840, 2670100943, 2363376738, 239516694, 767601, 3040850361, 3063656511, 2228749231, 19135683, 3057746613, 2484464748, 3063502245, 48487459, 2895943573, 18384775, 899973054, 16974016, 2477583762, 64637158, 3004942932, 46722097, 2993171991, 164666005, 20062445, 2892995213, 2850414126, 3007009995, 1739662693, 1055902411, 2393670932, 2881585790, 3060577595, 212071153, 179207761, 2817474227, 1887816680, 3033902459, 2459709067, 3033592380, 14802930, 314870554, 3003639310, 2221726944, 23588706, 837253260, 480819256, 15823261, 3021666700, 67266462, 78641738, 30957246, 18339415, 179554090, 1323909265, 334981900, 1414340473, 2915347147, 2803994674, 2667785204, 2944281498, 490135056, 2720227921, 2958423142, 3051211354, 2708160180, 710941094, 3054478619, 2831756289, 185449401, 233636404, 19059099, 1602678319, 156312872, 529763094, 582866423, 29674668, 164087675, 15785117, 66632933, 2375498185, 43141013, 158170794, 1406402520, 12190922, 517116581, 1533659756, 2955413144, 2803953815, 2837991784, 425408294, 3008191662, 97261539, 1357983050, 2291600264, 160378207, 82265241, 32667201, 146439288, 1726973593, 3052495917, 24916457, 38995726, 17333873, 2197760688, 1450245192, 2793829429, 2954126636, 929000096, 3051216982, 2565135330, 409867957, 1393391864, 185411782, 2763990895, 90062469, 2430956005, 3006410579, 51142608, 262799867, 2850027043, 106850629, 2988849203, 2547033986, 28185061, 3048251224, 2552723874, 2823171471, 378762532, 2506434647, 1686618164, 270141194, 28021500, 22289021, 21464701, 389441364, 2758180931, 86071272, 2339083611, 48431982, 281900168, 3032252437, 19083080, 3000323626, 2360507084, 2154091303, 2840845885, 54371309, 3032022014, 17263516, 2472945536, 2289800436, 3018273489, 363433362, 14329453, 450183164, 355642356, 43007631, 2900987816, 242781810, 1198124370, 9905392, 95940032, 1602084096, 2343065768, 1895620278, 3027919842, 581395282, 132584441, 708104846, 3006826174, 2643045485, 17604527, 82098218, 1038179306, 566923022, 2712682024, 23689114, 2837444800, 3027849549, 617594220, 223113283, 1271178092, 584446504, 12332172, 2547906456, 1324026548, 80976488, 23532047, 2714226648, 1372125216, 377136252, 458107439, 119107586, 57855509, 1117851662, 15188343, 16597629, 16671797, 3030793023, 20524971, 2288926339, 14982534, 35329667, 172215008, 610177189, 175656011, 77038925, 2532362760, 3007139824, 2597259224, 535688170, 629253125, 2978150098, 280383548, 13384772, 1358706056, 5204051, 2476351789, 14662889, 53700646, 88326317, 17551598, 370827550, 2860896641, 2950659885, 26484919, 948689238, 112867690, 96100344, 2392119403, 27390107, 248044499, 3002952574, 300735398, 77690219, 2919531335, 198781495, 2196637298, 19245182, 784167103, 369763626, 282882688, 2812147764, 3006650189, 265852050, 3040489648, 2447798646, 2342845502, 2646387236, 2386468730, 152466242, 2263605398, 14565150, 506865052, 38521391, 369095113, 1598986099, 99749955, 621498278, 23423813, 114584062, 47481589, 3027986516, 1523544182, 258083321, 1261281055, 1446762756, 1463323254, 2969321529, 21612322, 721346978, 215060612, 122228114, 462664693, 17527237, 254678131, 471967587, 2985118486, 411980447, 137407346, 614867166, 2996029682, 75904944, 348652475, 2786170028, 31325937, 1031033948, 468463894, 22966172, 38175716, 268920669, 1254787980, 2804508995, 93679951, 24507955, 1159371324, 1648978027, 246434933, 495417551, 40358283, 576603009, 404152702, 2787813197, 2814250020, 211400182, 889618016, 882574904, 19512637, 146454077, 107382485, 19581801, 15413624, 142179252, 40920400, 940777694, 3010096394, 38330999, 47533454, 1643373330, 3010139523, 477401625, 2969200456, 15907431, 69108987, 2650032241, 1968043243, 615614236, 1334865018, 93869364, 366011411, 1625873077, 2800137077, 611996676, 39458284, 2711050508, 571087457, 102540229, 1072526839, 232606584, 28288779, 95508085, 167010482, 529096338, 3040795979, 14256082, 328040695, 1340670000, 116511302, 308245930, 36813364, 2798898786, 2614272462, 535503968, 2886416602, 29125497, 173571374, 83191847, 1478486520, 3024779072, 3015782116, 2982130845, 1397511998, 69749329, 2349494888, 34354034, 2758869458, 2836373728, 2809811292, 3043147589, 1827606775, 522834247, 3019219778, 1653424244, 31067157, 3012862405, 701240792, 2728189940, 33715192, 26336530, 64777360, 1361211042, 24142636, 956355686, 634015881, 1687280372, 19454670, 2934079978, 1014435343, 2572643324, 3021299634, 1408989498, 2556607278, 174633648, 3023265958, 562183942, 2458759143, 3030959541, 1499757510, 326962578, 2867000033, 69254737, 2782610961, 2995340558, 2865049809, 3022350922, 2612152237, 2736285390, 2670804554, 2987843403, 1631936376, 1119908282, 34311257, 2989590685, 3031700573, 442182368, 2961694548, 439081280, 3013634347, 1275984139, 2462536272, 15939396, 2943165539, 2738081451, 14164956, 2794160545, 2993518411, 3019138690, 2794926943, 14705046, 2935508773, 208037782, 3002558292, 2560716374, 3015942662, 30324850, 23769809, 604092603, 2456816503, 509971567, 3015682417, 2724615798, 208776798, 14998719, 496973075, 3004264907, 28589514, 26691036, 2944826777, 3006450952, 2792749508, 3012321150, 44334649, 14164879, 359230030, 155369800, 287806806, 3022317123, 202479255, 2889797241, 11167502, 2249103860, 35626322, 12447, 3021712811, 224320706, 80395090, 345838923, 3021743590, 85611344, 383368482, 53167706, 3010794308, 3020802449, 3010710829, 133413084, 3020764126, 3020109544, 956111006, 3010113528, 256022044, 2992448810, 1240171406, 2754429607, 1665595472, 1735436820, 3017692845, 2155402628, 39617828, 2757400642, 581130347, 1643961090, 86459685, 3009123115, 2939025434, 182982451, 2260150651, 222451771, 595751915, 16484237, 186528548, 564577122, 259663057, 53426543, 1660200776, 3009091180, 40570637, 392027733, 515836591, 738327488, 199516833, 2939034032, 103228300, 3005814796, 26971593, 2298841976, 1922290662, 430933440, 3005809732, 3002881953, 1408816082, 488867199, 14150266, 34838035, 16023917, 2990632973, 6114752, 2986324961, 2960155128, 19330885, 2391596978, 2873992840, 593718505, 2819572566, 237961072, 2596785458, 24866692, 2676345858, 1517465449, 36610871, 43195617, 2606542124, 57564151, 79337995, 2996456924, 2289744703, 387661922, 1435050403, 1959690278, 1286650447, 2998335334, 293097225, 816556332, 2996581487, 2970798871, 1553678094, 2393425532, 45983335, 2556667683, 2651506974, 205781124, 2994231899, 1487778554, 436678031, 57906313, 37209055, 2910498594, 14294400, 312351978, 43631584, 1152887268, 395086595, 188509332, 1701179917, 832941643, 89000394, 2555180840, 121558226, 1171157898, 323549358, 433839629, 110692972, 54189641, 16423304, 2357582977, 50339969, 2981338268, 2773892956, 14599972, 2990222283, 2988973109, 2272820146, 2989425694, 2965824167, 17425484, 2985758338, 2925751215, 58400103, 2705321185, 2972374749, 422942628, 18733267, 23817639, 2980770683, 2990857909, 1923650426, 2986511476, 216914014, 1035532890, 1978392914, 11221692, 2989318262, 6247782, 24822590, 580290725, 315570064, 2989208024, 2481216923, 2988318554, 29411194, 42276382, 2482368360, 2986955324, 53417974, 105043054, 554719435, 1637225107, 62941903, 2849857866, 2481381966, 14692715, 382752824, 14124633, 41490245, 335979245, 108357781, 94909995, 40544415, 2902169746, 953104518, 1171543506, 2481214656, 2985187190, 760812505, 415872640, 139859050, 129129249, 4197051, 1533172538, 1928818741, 2984788850, 286081923, 2977280841, 26155415, 2979015929, 21613572, 116082757, 322134747, 77762266, 263875085, 18878094, 43332590, 31016565, 824537742, 2296127379, 22650377, 1259693402, 2834535063, 59505363, 2977573521, 2885511701, 2902356091, 558624863, 20214495, 90084013, 2436535886, 291441060, 206817988, 2969824449, 830652314, 2975380403, 2975227971, 162977836, 255990193, 46369582, 14648825, 2957707267, 24510260, 2974805226, 2386885062, 2893017577, 61216275, 2181479340, 2278765579, 28086540, 16977592, 28100891, 2245700880, 257712756, 27500545, 2967670954, 1296831523, 21069606, 15484541, 2966726656, 2942939553, 2967418106, 2647168484, 185744472, 812936059, 2829638396, 179165117, 49889388, 59736969, 21278996, 2963278302, 174556429, 34349331, 23307970, 2569418859, 2962224253, 234946102, 31377922, 2959096116, 217390719, 2194760538, 14380294, 2965190535, 2427174140, 46409086, 2874936701, 2868133069, 202488410, 2787392695, 358324317, 230413321, 20115641, 314750546, 18118882, 391938908, 2213073366, 52208319, 2162524706, 18845327, 105242637, 325567664, 67011238, 11355782, 1244498426, 2921855569, 997740158, 81200968, 25599299, 289717025, 2847581846, 2951558246, 448498518, 63106785, 619194730, 23483965, 32831158, 14928483, 14254849, 2958381895, 82120228, 537862811, 274149738, 2961321723, 2475639841, 23301743, 1609182792, 2951011034, 273371515, 962935188, 2959457505, 2958075897, 51490123, 2789497513, 14586891, 2899558072, 2247408678, 1692107474, 170827198, 22350029, 843014521, 2823318152, 2953946569, 2950723530, 2840757673, 2945537393, 2902087435, 202783886, 1062753084, 2872226849, 2867622839, 311047358, 173798281, 2951343913, 2946132311, 466581588, 122301045, 2684438479, 1382650268, 2769045336, 2847982212, 1306063296, 2933077566, 144563794, 2764399806, 2559051898, 2922416642, 19414925, 2175993318, 497734237, 175552751, 830501202, 1587993984, 2910807367, 358907918, 2410097665, 2890731509, 1518371544, 2828827319, 276682931, 2933190357, 263503, 42493859, 35008168, 2255606088, 213429917, 2521938841, 14643310, 2913614233, 223351306, 2911377796, 1270428056, 2774327991, 2773195296, 1921201098, 88926526, 2686073050, 2822471817, 21604884, 2942276749, 1743498001, 2939220471, 215433360, 719231732, 2377806675, 2934291049, 221904440, 562627212, 1229886517, 2332876501, 18576055, 1529827615, 1173295249, 28373693, 2884608064, 1673477870, 2935648607, 2912327331, 2482803527, 111662541, 4058321, 2935674898, 61243585, 2922710571, 2386076394, 21632806, 1223258106, 1263139358, 47178452, 20180244, 2932331206, 2851541997, 57864058, 38453406, 2935658192, 15653423, 613411307, 2913030695, 2929709728, 17990925, 2929420383, 705221179, 59746036, 317285372, 10692122, 735001075, 320103459, 2926312787, 2926532715, 189039109, 2724875972, 2885619717, 2916611921, 2273772871, 234593357, 475157561, 2877229557, 121874784, 2929121480, 2914114792, 2801067517, 2920196300, 96103780, 2918686306, 1018522322, 16841837, 562029490, 467099237, 2896004958, 2673954810, 2911492506, 24244428, 2918632163, 30481941, 241086349, 906943867, 720090247, 28725464, 2926935744, 1205291934, 54501744, 33984519, 2914335156, 2915131543, 567862111, 2493540325, 354087985, 2180801330, 2716417939, 187681652, 424545499, 2467025479, 1543515804, 2868536894, 703575822, 22526911, 2785120125, 2910785591, 7796172, 11513552, 45143, 2924662807, 15810905, 134779059, 2804019566, 2870745171, 2336508511, 14125008, 480036734, 2915039892, 2808295946, 2911101880, 2911102996, 2911039209, 2760734104, 2902716424, 2911041945, 2911100164, 2911101892, 304550950, 274054752, 2440585238, 23173499, 15435500, 186021388, 19178814, 2922056035, 2813965043, 2155511406, 25029927, 2908361721, 166457964, 34628416, 2835349962, 2907310277, 245176327, 47566275, 37162136, 175295563, 363997196, 17667371, 1963565190, 199476742, 2887831301, 2860875292, 2858040357, 1421336851, 2897616443, 2898961128, 2820148561, 2891489406, 449818373, 384977124, 23701963, 2449427197, 432299781, 299502506, 84543935, 2734153639, 2879774764, 97419236, 1479773167, 492946976, 2338610616, 296823744, 270152664, 385363267, 14379613, 2736082734, 870757579, 82342846, 16901867, 3110991, 478251921, 1110160747, 2496381896, 1361688518, 2530020704, 15899372, 631306195, 115547154, 337663251, 41229610, 870466574, 764750310, 519425251, 70847996, 136169487, 14970911, 873726360, 26666166, 132770483, 306225194, 32282502, 27551534, 47037273, 20271007, 2585361068, 14120925, 2753715921, 2777786762, 113136276, 2915062848, 2858927329, 138840987, 2877913901, 1403961079, 324600867, 2901829064, 17256898, 39099783, 2710174488, 2350503847, 1184169696, 769426572, 2478825630, 2886244545, 23189892, 21191825, 364767188, 2895686116, 2887553139, 888889368, 223805269, 201552518, 1451790722, 15960655, 111140015, 2853955671, 898141417, 231063580, 2892117111, 520835497, 15094420, 18196713, 17795672, 2892417419, 17416387, 2325977071, 12299242, 19704855, 21800155, 16159297, 2836004283, 401635769, 505631665, 501208238, 107448028, 734446782, 16516351, 2891080113, 2889495819, 974586420, 2853261335, 2843084595, 2551064918, 2869806646, 2888539945, 2766105770, 2908399314, 35473416, 135983969, 2906357473, 19119233, 2879774963, 48231291, 315164757, 2853243562, 1514989014, 11051252, 2876357325, 16288392, 2884775193, 16323680, 2885438896, 631113074, 33743179, 153296320, 1683420451, 18346039, 19039053, 2827531823, 196944784, 58424698, 15182629, 10781802, 35028064, 2872677244, 2885216843, 1011967081, 2345543600, 318481728, 425214839, 2295998888, 552389944, 1090900116, 2903911856, 298620722, 41543409, 1516005133, 2589738836, 29064492, 1726894219, 21097363, 3668081, 2883381311, 81077164, 270801364, 77074214, 1518401448, 1534980696, 981127062, 408631444, 141542064, 2864852517, 6782972, 32967317, 22018381, 2861402625, 2560594567, 1726770042, 230439795, 2360634539, 250771113, 290059422, 2892415464, 16001046, 91716596, 18810315, 367526062, 1074364406, 15373778, 2344305278, 10718, 2870163764, 2433667077, 2222133360, 1707480156, 1001318221, 19582372, 948570062, 174591864, 1135280635, 171931585, 35101611, 17437291, 248191440, 19902242, 16585644, 186160494, 2446390764, 1001690000, 2900016211, 2841496870, 18949061, 2874313689, 758370776, 17128777, 2876676976, 2698384010, 607211681, 1010661, 1521398738, 147731142, 490897163, 476048241, 151562486, 6652652, 443763700, 83483164, 2790341762, 2872016867, 1148960264, 2335370882, 16891462, 531291518, 581098887, 1273061418, 2516166788, 2872603463, 1930227433, 60349138, 2854067887, 2888212070, 103453806, 2872815196, 110595130, 2872664348, 2616030440, 410537231, 574647893, 2240590129, 1315554846, 2486238716, 2748659756, 11194782, 1077, 42574506, 143539567, 20129803, 378716437, 2508928776, 204594835, 271481369, 2827705677, 51567663, 339740909, 18059811, 285774839, 14883908, 119940022, 485441455, 53570239, 7315732, 2869949283, 141074522, 23100908, 17807133, 2742299641, 2890424340, 1936611624, 1242217004, 2836949388, 995698284, 2877801380, 393897038, 19498212, 251861049, 2559161749, 63936817, 2446942796, 2441681756, 2437664593, 1452925254, 38539052, 25684535, 2835328803, 99819269, 542185215, 1182897894, 1453904227, 2420768126, 25100578, 270442873, 2892427226, 2440670916, 2367501, 49767846, 21546880, 2821521423, 422801393, 736652496, 10508, 153408163, 1302307548, 2891237118, 2886608340, 14221779, 193044042, 385204671, 2890900638, 2862606533, 87416263, 2889899215, 2858766377, 521191658, 47705488, 2573633287, 215874978, 373891800, 83701477, 36459516, 2827647946, 2442766051, 2446930836, 10241062, 500951118, 2886631878, 42067255, 1929371954, 519149666, 14207614, 2836009090, 2883888048, 2550715640, 408873608, 2442771121, 210684204, 2333691512, 2830961070, 752137213, 2885669124, 28298897, 18028814, 371701934, 353782068, 2886042962, 614831719, 2523472213, 197843128, 1359526776, 15006654, 387947550, 398129297, 122383620, 42088363, 252000808, 77112054, 2556576817, 30279017, 349352135, 21062802, 798933842, 876514789, 704184211, 2486243202, 171313785, 518795225, 2331199484, 2877963104, 23986756, 15808210, 71304536, 2800027542, 219450750, 2800608755, 2831914601, 296425907, 719169576, 2846131193, 2846058214, 2499916716, 1284190964, 2844538385, 247794345, 2358362860, 2866068890, 76587100, 761755742, 416495207, 2275330722, 2859399668, 2663748318, 2826933740, 2796714145, 2530510202, 2758263537, 159223928, 2754591431, 103209258, 199233779, 2842766699, 919444405, 48880548, 1061633870, 2842264792, 1261886976, 22546273, 2842583673, 249964403, 2840334772, 14685794, 2831948334, 306826345, 1169083602, 2794992969, 15683103, 2750413590, 2841254729, 1327583215, 1483563295, 14128186, 2791444776, 36462780, 2435997150, 25979719, 135321904, 14270791, 82515075, 945128460, 2838770382, 206713027, 17211934, 35946147, 2831065058, 76822878, 68433230, 1841791, 2841573376, 336729169, 2190898868, 262974902, 2838892960, 2816021190, 2811252438, 2841166361, 276351217, 344655242, 516628941, 619524396, 215420650, 72863, 2691570584, 14605917, 1142612942, 2800857767, 2839469361, 40917881, 44018210, 592427581, 207617689, 1364972922, 22683937, 429010154, 2507513826, 18914085, 72955050, 78385907, 450975609, 138848810, 319287415, 2713248331, 2690640822, 260256069, 2836917112, 1564257338, 195622761, 18475090, 2418948720, 1176665682, 2679808020, 510966817, 232729395, 2836576425, 154516936, 1038933740, 373522144, 2793293610, 2559258187, 2861756017, 10988542, 2835915496, 45641677, 359260523, 90959713, 27309226, 2325807193, 2861558004, 35416970, 785505972, 2631339105, 2849120282, 1276977619, 249290275, 18637560, 1110033985, 2783893044, 185885313, 2834971791, 16292709, 2447217714]}
View
1 testdata/get_follower_ids_1.json
@@ -0,0 +1 @@
+{"next_cursor": 0, "next_cursor_str": "0", "previous_cursor_str": "-1482172157213781578", "previous_cursor": -1482172157213781578, "ids": [18568359, 2823847869, 2839550863, 199878349, 911125278, 1533134222, 2796915877, 1360446930, 479998051, 52944494, 43532023, 60167411, 14297142, 283920304, 260131861, 2829805295, 988263907, 25522420, 2842248482, 380696053, 2415264335, 540524295, 151099796, 2857394893, 14303216, 529035477, 239694448, 58232355, 1325622763, 1134778818, 20497223, 16710059, 898245151, 276635180, 33204198, 17912684, 32340034, 1613684610, 297753219, 92043123, 2832306071, 138600898, 51707023, 38468450, 2734154836, 211299040, 2772793287, 57932979, 2832019805, 622225682, 221256867, 2180888714, 29290821, 2856735210, 2354357198, 732418026, 1072121586, 14315230, 2823120126, 66950277, 221551308, 2856322752, 1270199574, 38625234, 751858548, 29382134, 252253546, 38916013, 243776687, 332000656, 11336122, 324815308, 18422789, 18358444, 20009910, 779830400, 2379218546, 621865355, 2269809440, 1559414881, 2830384078, 2299993681, 2823337467, 2277585165, 548401223, 170888693, 2795740968, 2829151055, 399931776, 2820436241, 2752694465, 2696338214, 27445371, 38984338, 448821699, 21683512, 32746632, 25769552, 2851051934, 2338851193, 549641820, 460576347, 1296259104, 301470248, 2826514966, 2430116336, 14424544, 31535038, 1034261, 627835207, 48735803, 2285881968, 60246036, 1553874751, 2835420170, 47789228, 610509514, 2788909568, 1348078981, 1015624242, 1572455208, 1389844195, 791855078, 19335919, 2822812265, 2822480285, 2826294571, 2720495797, 77615656, 2543321844, 2808110414, 430196581, 498112659, 44817669, 2821451903, 80624517, 293538857, 24585498, 2484961424, 2821205494, 3470211, 1446496380, 563844124, 2459524980, 18432670, 2796381643, 2600292391, 18719732, 2785551444, 546490238, 47869980, 1317158120, 624928019, 268292100, 87703920, 23912088, 90702055, 139100664, 2607221934, 1461191600, 1480056668, 1559654096, 589575149, 257415016, 280152810, 16552581, 502760432, 14179549, 609659719, 57669979, 342748167, 17290900, 187115133, 526336172, 211859595, 1573654201, 2844904034, 2844526796, 159581371, 2394859615, 2844125551, 1102681291, 2790161267, 2393213275, 1335228721, 81967727, 2809953320, 112607888, 495393145, 2810491751, 159600896, 196753555, 2842349479, 2634723838, 1961970799, 363496956, 20895134, 29492786, 2834528090, 373901449, 2806076121, 47356472, 2787107043, 2317137398, 1480810092, 2815297027, 174705313, 1843315560, 1421573755, 1183863920, 18093468, 17257377, 2801105582, 164930478, 2840825263, 2806474113, 104358108, 2816557555, 345486825, 1459604220, 80875548, 2803371855, 2189069474, 2802930640, 2348465666, 2559623516, 15176366, 17171256, 58207999, 201226517, 54625210, 2839231058, 72921871, 2800367080, 2632347730, 2515113172, 2781283225, 20856288, 2217925311, 2827303645, 2298986155, 2615735222, 15235815, 2789960801, 31604330, 2615954263, 48125856, 2395487703, 157948933, 16720037, 295428790, 1330406438, 20404593, 49635206, 611933904, 2569738319, 106614991, 44290970, 2827821955, 37267535, 15009098, 17816618, 2614300664, 1673665117, 159402233, 24790186, 233100852, 10186262, 279881044, 88807478, 24117694, 24532138, 26137372, 138632867, 19941017, 1516978052, 489610627, 37864507, 2462260734, 2715302191, 372018022, 512747125, 14537861, 389355548, 2595535086, 268192580, 68408717, 598699854, 17846006, 8220582, 23909853, 8942382, 18078750, 183340224, 2440322860, 1603406131, 24289307, 780810121, 21504296, 52790027, 2786993913, 1520090178, 2827249903, 24208510, 2544284383, 59860037, 63733459, 788392706, 1171788037, 179855653, 17605831, 14651109, 2288778698, 18046664, 922297656, 1070026254, 1482961735, 20925919, 202860226, 957353786, 102237401, 452909578, 18534908, 133372189, 1153104685, 297512398, 448788827, 197626927, 16619151, 599395507, 1160875688, 31331503, 595860782, 259475003, 2550901051, 434684341, 588854016, 7632252, 26608146, 292511193, 2643280777, 160667591, 2794063024, 1235103067, 20136687, 145220626, 41339466, 1625315640, 25033260, 374978819, 20478920, 5714432, 329140042, 2835667015, 2412316315, 2522522892, 535187711, 16661080, 2797052675, 166227822, 137124029, 2578947127, 24718591, 42844321, 44144629, 2793709727, 2341587819, 145350228, 1080695552, 88957553, 2588793822, 219606488, 2407627944, 2797126742, 20761504, 715945646, 67429947, 560142646, 2835652184, 15171447, 1093802287, 91871482, 1972612118, 414989367, 2218140914, 1244238200, 266099423, 705682638, 23483816, 19414296, 2745443067, 279727055, 11488732, 18010512, 435472450, 1730879610, 68796392, 261043346, 2730476162, 316479545, 2830654146, 2829226112, 2790768332, 2789924236, 2391813894, 2833421150, 37928291, 2834905153, 23633699, 1639471914, 38483694, 403509817, 2787303099, 402798942, 2786342626, 2796472362, 2586505778, 22906563, 11744792, 527793302, 2191658713, 362161896, 1948471159, 318697688, 2418833034, 41629905, 263615863, 234342779, 15625348, 28220602, 1860106956, 2833033147, 340127057, 21643763, 2688341785, 16799897, 139810606, 362540066, 19517352, 305156995, 1473070387, 409211318, 19298381, 8069042, 15566111, 226751441, 1650891613, 86782347, 128924193, 2786171263, 18599180, 1103468076, 137756415, 270552993, 505163906, 23626419, 84350207, 56730995, 884234023, 516145687, 237197075, 54677967, 2785047291, 2573738899, 166223139, 1685312060, 18867397, 348582052, 24629249, 2772578862, 193152686, 37868094, 1869951139, 2188221928, 21911231, 35892267, 1446772334, 2697302850, 809573960, 29370598, 1107684811, 405855200, 13308502, 2334056136, 23966825, 169760495, 15826099, 14793972, 17936802, 472561623, 41469352, 164165558, 295572924, 385027140, 237477424, 143920412, 13986542, 1454970649, 425954534, 449408836, 15603207, 32709070, 109473730, 56163585, 121312918, 2225320566, 230392924, 2797884852, 14393629, 124064640, 164735315, 322855395, 237439292, 2329554289, 2825779441, 2369354924, 1949935303, 2829922064, 2601329148, 2829042818, 116035499, 21603597, 2827696087, 559068947, 267365383, 374849822, 2360882965, 271262680, 2827028180, 2719863120, 2794495520, 613467318, 15305487, 2444537593, 2778795425, 2796398178, 2724683069, 2815700491, 2674861855, 71552780, 42955897, 16814845, 2820451123, 51278095, 30161210, 461977120, 18358746, 18771668, 315740771, 343745990, 2814376982, 198978324, 2170341715, 176499073, 1425500808, 2474688422, 2161527751, 28730785, 2562452208, 2796853410, 2275408650, 391715920, 779487338, 346425691, 2813795371, 2411151546, 166558442, 118679396, 343600277, 44160296, 347528892, 2734830913, 211200011, 2816041153, 2815421539, 2814990416, 2814667728, 297877342, 467906528, 2763424192, 2813461118, 2813601900, 2234556787, 2595250914, 211912180, 2805352184, 2619128761, 1463053164, 19175461, 747994790, 2768975130, 91147786, 149251110, 2690800316, 53580967, 37274550, 15365191, 2283959404, 609249913, 86053605, 318136026, 1407544956, 2770912749, 189400722, 51622556, 815200027, 473514230, 23674153, 539533382, 632731979, 16526290, 2807791944, 2282950939, 2810265475, 10926482, 719137700, 1918828970, 749054930, 102826993, 2736894074, 2808934196, 48926855, 413639108, 2334502237, 2706967615, 617157232, 49569990, 2806976882, 2767548208, 316145842, 23694218, 2805915948, 373205943, 216547218, 2804154062, 15247707, 2494126831, 1130827783, 2803370018, 2801389358, 2612775626, 293946984, 333741449, 43945838, 133491839, 503448617, 2318148162, 12884962, 43507230, 15374401, 1352827063, 127039728, 189220827, 369134510, 434159866, 284252856, 546601496, 14520151, 523707157, 1898968964, 716044325, 2190662922, 84276693, 2517554893, 20120026, 2735836879, 2389784060, 2780922552, 39302631, 16853703, 2764897681, 1249738825, 19958283, 364924424, 1075634689, 2752399815, 20826603, 1070990102, 2774622224, 81900177, 551464747, 352540750, 14965452, 282713969, 23694908, 6249592, 2218601431, 17672969, 482508683, 862124204, 461562633, 2760652779, 2670555026, 2772726642, 7714582, 22519059, 155069105, 2193260102, 18216595, 1289279280, 17687811, 36962286, 2792543972, 2789119513, 2794985011, 16001436, 218319700, 2782398194, 2357767188, 99972221, 2455554486, 2675959123, 20571632, 2375510011, 2464406311, 362686824, 311921651, 319788957, 1884195997, 40337575, 2790482083, 64539883, 138023348, 2788450092, 745017110, 2586880063, 619561286, 20118360, 2650275548, 2698862124, 2245717093, 6967252, 565311756, 738389792, 30678826, 2773653883, 701942162, 2784595704, 2446689355, 476168077, 1895549834, 987940356, 862741, 1694140094, 277614688, 2786067643, 8152282, 2785593595, 1506415273, 2785209373, 2479567805, 2584076258, 19153412, 2569586880, 2646232100, 2312918584, 24573898, 2562626496, 247912093, 18782014, 113439399, 1862729762, 1756194752, 2784134220, 21203159, 2678466708, 2757810981, 170334802, 2783050436, 64798553, 2755089226, 39554440, 2781005310, 15625306, 265593408, 274221086, 2367294686, 79318615, 2406154140, 2756158029, 165594353, 1954779530, 2779286119, 25943077, 2755966328, 2742325799, 2704125049, 14976414, 2172848574, 78763833, 389290240, 1166763595, 24474711, 21963333, 26983168, 15633197, 379359783, 2543656170, 2557784790, 18735583, 15638249, 347820023, 2779074906, 138303403, 2312661420, 623180116, 140146910, 537663746, 2744353104, 790136479, 353223301, 2252034330, 2759423707, 71532748, 350350059, 85911526, 1436657857, 2389174966, 1300866318, 245988192, 2751316046, 14233615, 557481051, 581580986, 2736386280, 520031877, 389743109, 608766855, 24845678, 15847618, 158448184, 1426933968, 19079820, 198144079, 767954088, 498420834, 107759956, 263998640, 55933729, 374396172, 75883309, 820818900, 31393537, 15682966, 15574614, 2459879664, 2715335646, 4036281, 14427357, 277767225, 328027297, 14974257, 407813532, 57083714, 271577921, 231037233, 18231685, 570873281, 2777348509, 23170025, 2744187012, 414188706, 1184566195, 206674043, 992871366, 1249420140, 790254542, 2361832832, 353299852, 2474665615, 2285911154, 621699337, 44176460, 2484768164, 1317841987, 8565052, 955936165, 330241070, 43871358, 104203730, 223823338, 2739208022, 2610508676, 18852254, 477832066, 32849947, 2184347418, 2775581083, 412057292, 2772000350, 1428614076, 133938278, 18669375, 14467069, 1274232541, 259136493, 64326902, 186007705, 273922013, 2767992337, 16906916, 2772074791, 2440660196, 2666365909, 377480575, 14166498, 22972233, 352362305, 2651090730, 60124477, 284893451, 2355204164, 2760841170, 2332585826, 618396048, 2584729154, 1888491786, 2766531427, 1018212084, 114529734, 164304841, 15224379, 2198365328, 1245061093, 2201873430, 517788125, 477865564, 1370684204, 1857573672, 2460921914, 127977167, 2720762509, 14714836, 2661153200, 41862279, 1445645858, 306724530, 243835234, 118192603, 2252719814, 50930070, 41837013, 405388713, 46052163, 23200692, 285598087, 2758860524, 333093895, 2742745638, 1650318440, 2388908886, 14440339, 2156117256, 505389009, 33274384, 16271149, 2508480482, 619354467, 2582875752, 430187052, 15164220, 18474300, 24895869, 568510920, 2755210590, 146885274, 1405071, 341364098, 117278501, 330167214, 2409752617, 291814511, 2752445683, 749739464, 55107001, 14285735, 54223853, 55608270, 14911029, 1010437962, 9974372, 181697017, 15393788, 137929515, 18583083, 406525651, 2754036698, 573754692, 803090426, 17140823, 540394406, 19982498, 14418724, 402261290, 22530590, 2445607094, 465620301, 2665116800, 1659201, 19007577, 184545059, 19847566, 43239844, 62235793, 730453802, 836517948, 14089431, 189431426, 250578280, 243400445, 40631172, 322463395, 2477547035, 10078422, 995731112, 2464208425, 487604696, 1040175516, 15963386, 16552239, 18004530, 156657418, 424857366, 35254319, 153262029, 2546859007, 328611618, 203023614, 1020091452, 2339831028, 8478582, 22239433, 425224057, 2746693272, 235649250, 2157007225, 15797540, 104007074, 401599387, 2408136302, 2745998273, 1320846386, 2540307553, 2743612106, 853252945, 2746650274, 2736048703, 2388635942, 716901834, 7950832, 12711402, 44511188, 17365406, 2742122160, 23367208, 30325429, 55209895, 2728217304, 38079312, 1916211085, 1159872481, 346045816, 1880332644, 1403138772, 1386133669, 18698010, 191603616, 1365858114, 18084770, 2737804538, 30832553, 14507653, 2593720020, 33749281, 1530104942, 2694987546, 2562096336, 2743975427, 2730661022, 13256532, 563455650, 1960901594, 296771506, 416590913, 2706603351, 114363135, 120797730, 40442636, 421086412, 140264272, 42689691, 2540470963, 29102194, 707720431, 1955384041, 381207684, 627431735, 1487903161, 172232642, 88501703, 1684011330, 2678116076, 176232098, 2213566399, 2416444807, 178552728, 213396877, 41421889, 171166150, 1675904221, 2516904919, 177640959, 52706126, 2728897129, 201142601, 539369116, 2491831693, 2728185374, 1056204344, 19362134, 632498676, 1325376901, 2575616976, 58166620, 1587499219, 353127563, 7614772, 153351973, 135505973, 192969516, 2190871614, 2296345087, 580578314, 2483907840, 2374474646, 149181077, 111773731, 34193506, 19682351, 205523, 1705876171, 1315760318, 26367916, 15951773, 223634769, 417971198, 1126955250, 16714303, 796871671, 314203800, 51881510, 83542391, 633693696, 130976595, 42961724, 416385191, 2264910530, 25356272, 69949181, 3189061, 14275077, 369331993, 18494350, 271503699, 371569704, 1202174035, 2595637693, 2203392391, 16185559, 1563584570, 754001083, 20287447, 928214652, 2648345423, 161773182, 1487494208, 513494324, 41709199, 515710795, 417433623, 2184378296, 2726391349, 1874374662, 140487542, 278024105, 21985645, 90354464, 17141951, 14576102, 2529884293, 2636418896, 1345404096, 477969629, 253338660, 39393397, 39334284, 21441402, 15375238, 40613184, 61661397, 155674591, 1297561728, 2725346635, 129603074, 17261176, 23296680, 281335023, 7081402, 109402115, 23843670, 2484599173, 293165658, 171598341, 86637908, 55101855, 720795487, 1860682938, 1902560558, 30193706, 21902337, 1305940272, 1871931018, 28897401, 201893567, 20544252, 533168885, 2724865027, 2720611602, 133413674, 1306372550, 545052081, 2471422034, 1847879149, 293719533, 79837418, 998625380, 2654652751, 215867898, 2722518686, 330004048, 363074116, 2508238046, 1499076764, 368079476, 10314482, 500947092, 66910833, 2718897438, 2335477148, 8464392, 8174142, 188861654, 1252917522, 127587991, 6221802, 564828430, 83977254, 37375210, 23145095, 811508882, 2610573289, 266465052, 14270103, 1855274048, 482632594, 2648739217, 53248456, 39038706, 14324058, 1564501430, 43730299, 1596801914, 875466372, 248331766, 25966281, 90961345, 2454147619, 78987648, 323856815, 626035759, 32794572, 1447458510, 1468247234, 25159222, 17766237, 362286999, 47140658, 615157718, 66315620, 159399943, 2548127498, 1443296388, 2655679556, 59736882, 2214059922, 170023430, 396216027, 39591100, 20512260, 16038438, 2722979426, 95837739, 298675832, 32181724, 88300376, 376889399, 44307660, 2694407370, 71169680, 2739178019, 20598707, 2704742346, 1661060293, 444879320, 985840968, 51757505, 2721133104, 2602425530, 221156318, 1081813736, 263910676, 25799828, 18871292, 2659973851, 1266825842, 1367124774, 2718065840, 242681127, 2163201726, 2462926086, 1953316428, 515074073, 1641964513, 2707334143, 82706463, 2592222883, 67834235, 16343073, 376364850, 2659957592, 2511841164, 20956102, 359913776, 1389316104, 2708940194, 15660281, 386261226, 319387069, 219969684, 61525167, 476923690, 64289634, 151321610, 1970442408, 2386345501, 2682815786, 204934966, 27174184, 15352541, 2691277934, 552345433, 34188766, 15160493, 552534666, 2728532765, 1919612864, 592285402, 5384842, 2433344467, 276648737, 152768151, 1575952254, 333519470, 26897807, 424642818, 10776942, 2330496392, 1960217425, 1463590422, 976520714, 581540879, 61368299, 1357276346, 1206441060, 2659237424, 1645385010, 869779124, 30141363, 57735964, 613744236, 2704319934, 2714019576, 166302286, 1262083081, 42267812, 753196232, 2707907491, 293934083, 123659595, 117891523, 1621028173, 2371538304, 2662105630, 1057080500, 2712853758, 17656320, 60708321, 322906028, 48577626, 2671232269, 966420366, 1849731313, 242923569, 214186777, 43806137, 61260031, 1368532135, 1388186162, 46862522, 851951478, 2655199159, 13096002, 720979458, 2515491794, 302718940, 706340208, 509746957, 56768257, 17093474, 2414282990, 1906945130, 2829401, 2712480206, 98629768, 14642018, 1265342706, 16189782, 19258078, 276768282, 2501888752, 47472277, 2187249588, 334400134, 478845002, 549641532, 310454056, 473920073, 18123635, 113095705, 24099592, 314358874, 10395252, 1534060080, 322629367, 325724173, 2507651504, 30863042, 168212951, 164052868, 219326636, 88965760, 64849223, 2190983210, 14277842, 1561569042, 271626280, 838808077, 619453691, 1656969884, 219251193, 76455374, 327165636, 2689512648, 2694211387, 2707563084, 178932440, 1430616829, 120216905, 2459486610, 58092414, 22215175, 51186345, 14224219, 2204042821, 2654534176, 39800178, 2707402652, 153885804, 221635888, 14205381, 731680370, 2678324630, 808484690, 2608844076, 2444329771, 47016641, 2685647396, 2365243866, 1618566348, 1314263486, 164700688, 222875678, 58189396, 49681635, 872342575, 29984657, 47901131, 375753109, 69474498, 630860233, 832195032, 2238958711, 197836686, 1872257166, 1719041336, 1328250686, 123895213, 2439358794, 149617382, 44024932, 23418551, 14965072, 465638609, 1048828368, 2443852184, 16900307, 241650466, 40066316, 16557958, 2664867336, 42308266, 198622157, 16273538, 28344264, 27381972, 2606159809, 622462907, 821963496, 2394862452, 97261937, 1066348939, 18218285, 504030526, 2459028175, 49559732, 14220906, 71884737, 2164138496, 162221379, 21188880, 42886417, 259501233, 2232085308, 105669760, 812014932, 862554678, 2364479462, 28413032, 12021482, 904897332, 300004306, 427877098, 199599505, 300073650, 1925825300, 30355945, 168167924, 326421640, 277334494, 2693877985, 184194569, 2691441066, 29474607, 1370542062, 389313658, 19873102, 49166931, 22838331, 21297371, 140569066, 262350410, 1619409679, 2628282949, 600716597, 44275337, 15618553, 2230406251, 2566328594, 252385048, 46373148, 53605520, 17875859, 2282512646, 571032274, 11427402, 2495269099, 113254439, 9633042, 74387626, 25772203, 43587056, 2431154844, 595577496, 66783872, 55674812, 286888568, 470997704, 322964867, 315241974, 1067754662, 73730765, 2457100946, 173313184, 2457189276, 142409621, 146946913, 65750169, 159508633, 2541504619, 15136577, 313631586, 14447867, 162044862, 28370604, 455219790, 872251, 2206283359, 17635635, 18733337, 1329845642, 6328882, 1564382160, 1258804357, 90697018, 1688518602, 2296800073, 2481880087, 226424298, 14628009, 19021299, 2602686457, 355802789, 133970507, 414157081, 2456521471, 1757800921, 35094531, 297799785, 102211070, 50748729, 40698468, 1972114321, 304672487, 90292509, 248037563, 602519741, 21315633, 176276688, 45953084, 63745717, 182191771, 1452150655, 2401096388, 490828190, 1016664894, 1296543859, 36944162, 15384463, 83906194, 106624470, 20398907, 14057669, 228624732, 24397364, 20637608, 1716865688, 300116808, 383330020, 1100326518, 55397130, 32032000, 41930388, 2691351414, 360129945, 95820486, 2606040210, 14324319, 2602742437, 2161863914, 73900007, 382879519, 18404955, 20744951, 1302649411, 21150522, 740761610, 1253557843, 1947934442, 343321593, 117026889, 22563093, 14969388, 194984772, 2281896007, 115580069, 2349502914, 1671279828, 1695528990, 75170018, 17496615, 24612874, 10219982, 2490884160, 2455491403, 54691370, 546453689, 309561393, 14591228, 80164956, 135107349, 389027282, 2682977401, 24719584, 108399156, 233291892, 1584710622, 2384055826, 177536523, 196889003, 83158659, 449252624, 2246764032, 109102126, 389609859, 67656899, 19074827, 561188271, 317128282, 2673745314, 2725805021, 62775756, 85414881, 260553216, 2651355451, 19322309, 18817547, 259809972, 346682225, 512712265, 25362763, 170028171, 45416789, 628412465, 2355462320, 2546393202, 339422214, 71383220, 87407374, 375022391, 2356845396, 337437366, 199429505, 356900641, 479980633, 4791371, 61258803, 1514098375, 805553970, 2649541033, 1306876946, 17358032, 17956368, 264356595, 540022897, 14193454, 627801443, 346208400, 1561922294, 746705971, 2488586072, 431157550, 242242379, 2663955350, 2518829358, 9452312, 154420293, 1627399644, 14946104, 24120959, 423706076, 20113944, 66951315, 38515332, 1009631790, 883283184, 1621588117, 24028758, 1338813834, 10681832, 258929128, 1735601672, 2435036665, 169448683, 2722578298, 130954977, 14937325, 168532759, 138201468, 945038623, 650543, 273664943, 2692486733, 631221037, 2471579924, 365700772, 2239677247, 61064212, 461579314, 2591883163, 142457170, 1378251055, 19904900, 863395488, 232340874, 25717930, 83314648, 2467922382, 2455079965, 80705350, 49033304, 21848257, 483188742, 2419610018, 207663883, 36076005, 34986535, 2341171171, 339324752, 550578863, 2651361980, 9520652, 139536589, 1103509506, 401559926, 469768967, 286905306, 389576703, 2670868538, 22741415, 321521970, 2662975860, 216838324, 968467866, 1315350870, 2398678404, 252188600, 537094018, 1293953923, 43389994, 15748723, 148067819, 26337889, 880121748, 1686225554, 2667991266, 246039958, 2280498614, 522731421, 13970412, 14408460, 2151078410, 14547927, 2482861177, 398653333, 1920626647, 25563025, 1423415617, 1216611206, 192108526, 1678965668, 975242286, 2526555865, 37522084, 716590457, 2655995072, 297991754, 198574548, 9444482, 382191537, 343395430, 19763493, 15417896, 23808177, 183727699, 21688507, 595431054, 23751769, 7157132, 753935047, 1313751602, 2493594150, 1967409835, 22775788, 1183814022, 376694822, 30337027, 2667942356, 2528577890, 39282415, 2667713678, 245656043, 2615726112, 19221717, 2664737852, 7142292, 14702929, 194662573, 2531350702, 2230733624, 94778974, 1182108536, 394483029, 858602006, 2597261568, 2612539188, 2348901806, 194588779, 305905982, 9675812, 1534515074, 2582772392, 1293761300, 379542112, 29735258, 177711354, 1325851112, 2718100751, 2651654958, 14293333, 48846301, 2658823412, 18849232, 68472064, 1186941451, 1647871290, 114039485, 137554364, 2579315784, 87143187, 158689987, 2382998546, 1321061760, 19915883, 31493420, 19157786, 35528160, 131069394, 445051365, 2617623638, 19277132, 138913425, 259858898, 1523977796, 2540043996, 2641478448, 472022132, 25376226, 152361431, 714654367, 945507625, 334755135, 920729388, 2653095608, 2570340362, 16977093, 2590307072, 138540830, 1391311716, 19805969, 18965053, 2223824328, 399075181, 120478433, 54966626, 50270961, 2432320897, 598890477, 373472378, 1317226842, 2471162173, 197957446, 112072814, 935038645, 14270527, 860948431, 2249874505, 72459829, 52565373, 141250520, 25661789, 167105561, 44671378, 2593747736, 180523367, 58582135, 187237087, 28980447, 16447552, 393033243, 14050073, 199771301, 25179455, 1023440202, 793629, 2650214929, 1644416010, 144799984, 45944057, 2271911297, 1058879185, 2588142726, 263830231, 2598460208, 20458886, 2353984898, 15859947, 1480564873, 1894645940, 2547687382, 902935909, 285904557, 245232063, 105268129, 2505246548, 1711752937, 2387653381, 17266393, 15003854, 30839761, 12068862, 371446737, 51718518, 323977774, 554181596, 419073547, 2357912953, 2252152256, 170082980, 26983898, 1561138874, 146948684, 2393429594, 66626468, 22958268, 726917263, 2204095723, 74774518, 203983655, 14135009, 34310651, 1979492497, 1311423618, 2514123998, 14519171, 540259168, 2398308211, 512563826, 1323841742, 73443199, 100427786, 182203607, 80497970, 83880850, 5960932, 17476953, 14570615, 9297422, 39182523, 238186152, 28828310, 329826779, 279707264, 797586168, 706833, 1929558566, 9637982, 14518661, 314645422, 17064600, 323982384, 2429943578, 15889451, 415818433, 2218009256, 16617676, 287816898, 2466189944, 379277633, 243881425, 48744731, 289222942, 2469324030, 216594284, 2353045298, 18915582, 345326776, 275387273, 619532406, 119333280, 182267933, 2557221630, 2541979477, 14176297, 14257102, 507709379, 2512924266, 1328500530, 363792365, 467458488, 587229400, 158948552, 2394903662, 17461215, 419933252, 1423593175, 296361797, 93603692, 166482876, 2374443600, 285207574, 2239872086, 153812241, 26408804, 58747912, 618561152, 404402995, 20087429, 2485264719, 2616550338, 1458459194, 62215778, 1327618698, 19394222, 2584702764, 518495199, 71862367, 16972422, 1476060205, 2603613312, 1196493648, 17946886, 59832288, 2233002794, 14103333, 73437395, 71077029, 16971994, 1419723512, 516150304, 11919982, 8654742, 22143460, 2276894183, 321972287, 16545241, 186535932, 2610397711, 275443776, 20428342, 14283, 1566024031, 423732228, 20701751, 38416252, 121893735, 180707654, 100930949, 728852354, 2294508330, 1677983000, 412961881, 14094087, 132715701, 488527927, 2300372934, 146879938, 180001973, 164183695, 658353, 23783361, 190642026, 21861033, 48597549, 1849076732, 221954369, 410337616, 45226660, 2607690103, 2597073091, 6289602, 26431749, 195980342, 54222239, 784654188, 18545296, 134944041, 287736439, 55472734, 2587881218, 1876700131, 278378678, 2399298680, 428285839, 1421495196, 2327932093, 428586673, 2596792590, 2588582684, 2311063871, 2558735024, 2330643800, 425748911, 117037734, 2457172872, 24118055, 2430014127, 14124531, 16600919, 72864589, 349111085, 14075459, 41020268, 205512496, 18306174, 15911001, 14123822, 828330613, 17300006, 93702963, 43933796, 434521127, 24920970, 2590780058, 539367183, 241814731, 872352396, 227844938, 2423388787, 8146732, 15963621, 2560133702, 68080192, 467035507, 1321463336, 271760428, 16823185, 28390663, 84121085, 956741323, 1122321800, 18353790, 37175995, 709674980, 14979502, 946476872, 47489753, 5398712, 1943293668, 2459610476, 15184365, 2290239343, 1905351968, 279328072, 15388908, 534512583, 95490352, 15247075, 1463514306, 2196509533, 15508710, 1975911048, 702140414, 25725991, 705547586, 192537546, 108384288, 14149195, 1686580998, 929500184, 586960829, 359049148, 460045442, 2478592622, 18400880, 14850976, 700166761, 21315223, 27754962, 146476339, 2466393715, 15008299, 1652809586, 207363728, 18436517, 348253260, 46490602, 290767045, 36211517, 15799638, 59015705, 2557066082, 16084074, 19008092, 67727170, 2553383520, 1063368420, 157415921, 299277303, 2589715470, 1317062689, 1887418189, 154600577, 66793179, 297597945, 35780946, 1935698418, 122770149, 6728202, 2417417542, 80490999, 39659968, 2588157906, 24334685, 344804107, 43570256, 35333511, 21061331, 120110703, 109980052, 2407432598, 3547541, 2576783088, 43934803, 266579945, 75702759, 1877097212, 251749414, 39818652, 393625868, 10950902, 281402189, 1965276631, 173944243, 15944443, 41956407, 892593686, 1080731636, 898057044, 20370620, 523992088, 866151799, 281766910, 227607070, 214589613, 23987473, 24028993, 946735310, 69436133, 2206379252, 34959491, 857351089, 342973027, 237189472, 524735735, 2497625335, 10877042, 2565563960, 18696645, 29529993, 1313849245, 2569371716, 15847812, 24578981, 14466944, 1969179680, 1949408102, 407781807, 14936894, 2370716922, 1346677092, 84494022, 1729297056, 84115491, 1442171222, 194623261, 84315849, 2233895142, 2174732226, 1854958933, 1229040684, 28736554, 408756176, 1044009930, 105036629, 1460609414, 16215005, 310003049, 1139393827, 2275311773, 1303840880, 2606740767, 2606682935, 2565419640, 2175903210, 2330092076, 61530307, 41213396, 549691250, 2548940546, 290849742, 1323419287, 972169508, 11633922, 1562048400, 9839942, 71560321, 276645875, 14218312, 77850269, 223531202, 365541890, 618000884, 2545361996, 61105459, 709226545, 1935416203, 21859847, 2411176880, 127973599, 267552909, 774787033, 25964854, 719557237, 16150862, 15773702, 20517459, 14988726, 493510825, 1049416182, 2554595748, 1872308552, 96619783, 708407923, 300179866, 1688826986, 7860742, 51361823, 310878807, 235725132, 785549562, 1113417679, 1383519978, 2553588254, 1938963433, 362288286, 23931563, 230878877, 68816714, 14304857, 1048264458, 18943008, 753923, 123051486, 2188704360, 97778856, 740794940, 144261432, 944931924, 14440333, 31339090, 168911485, 28490696, 23232306, 2386659212, 2266386187, 41418974, 22411342, 24457403, 193144020, 79585051, 730752631, 7872262, 1392874286, 1672639050, 558043957, 823913874, 2518616341, 42588875, 1519747244, 222960237, 1853410285, 5974052, 375715200, 1696628040, 867685734, 480201901, 947288522, 282193995, 141254391, 45887280, 234559410, 2167455536, 23823744, 1065921, 98478615, 257590207, 2533639680, 14447391, 37518916, 361693804, 1362628230, 511310897, 76056199, 2351628565, 41331276, 22788856, 973366099, 1263218845, 1259809430, 22321640, 15316059, 410077695, 25606277, 186215014, 21134767, 30446608, 231251370, 811530, 96007068, 46331074, 131926467, 18966570, 21342586, 1029761335, 209228718, 197473183, 55020785, 1317095802, 193524095, 2542089200, 279712503, 302818214, 24268521, 36040335, 16599158, 624397288, 913309291, 2290293607, 580114708, 50262686, 221565147, 1613284345, 34921692, 1307492700, 394472432, 126438252, 1446180066, 1421331372, 176224441, 16875883, 127919076, 1617095875, 10367702, 263262974, 15868200, 14379485, 27055038, 216204377, 68058537, 20821692, 15943735, 63443195, 498025641, 1361688704, 82500164, 19019478, 282872990, 465066396, 1069252525, 25088748, 22115905, 322387657, 101034530, 46975078, 24116297, 15093908, 16220478, 331018214, 44842811, 132591216, 142269129, 2520037338, 562922098, 17792485, 310330192, 38360818, 2427550489, 2294404008, 2377803456, 301449131, 23792365, 1019901800, 327088470, 270481597, 30993177, 368911975, 618438551, 2455362542, 2361664237, 16662072, 2468989334, 346156464, 2432880324, 105019721, 2475606588, 6046132, 28486146, 2499750516, 503878956, 968825634, 575834214, 22918260, 2479107860, 2433749581, 83955683, 14312976, 2265329426, 154648294, 2426723748, 174541323, 2427943826, 17197857, 350578795, 2487057222, 1648376126, 490929520, 2368554474, 21517277, 77698657, 338577657, 36705447, 2437478014, 15209135, 2429872063, 505782661, 12064842, 14494013, 2482131804, 615313522, 300782829, 1077905539, 296566549, 200006646, 722066947, 47996111, 97720687, 2200861197, 131620354, 226346115, 87269548, 2206256953, 1135700720, 2460029972, 2444726454, 237522029, 64138884, 2479630796, 22355229, 120935503, 2437732440, 2388257844, 48734380, 101869592, 518842668, 169217294, 97129082, 2395924800, 868304509, 22209201, 799576454, 41263293, 73263419, 2526306795, 15248323, 30060622, 156560059, 630048645, 354004878, 23908767, 1599543613, 1080722796, 40856195, 34728391, 24940766, 17054677, 2414244360, 44897207, 23906829, 21715898, 225516501, 91446526, 387970999, 12070792, 220035098, 742405500, 2363185074, 12691912, 1573816735, 953735010, 1573840938, 1045521, 2384421332, 150767029, 441522831, 72203012, 10214102, 14386794, 19158017, 83196931, 1096057076, 57827730, 2344125559, 2461953464, 34739420, 2473180037, 149243840, 1581624703, 24076392, 97967321, 32339033, 15711781, 2213370912, 749176735, 390922386, 326507652, 15868572, 6727802, 110547002, 1428655274, 1093388640, 373454306, 129571317, 418279718, 2365078322, 1143493279, 2303421695, 2431791810, 111138041, 117097021, 1176827917, 102827796, 198787362, 2440203612, 4829441, 297588403, 22957921, 51573399, 16718799, 185495909, 14510359, 506770913, 777161924, 408272342, 203189776, 94154141, 2263652744, 123666052, 188943338, 202630094, 71114116, 16510776, 94147132, 1390439473, 57445469, 1452235285, 12298182, 29199679, 1149053071, 2184781922, 422112434, 14710986, 114022930, 802585, 15119615, 110322958, 2303677254, 32770411, 266050776, 216900952, 249013992, 15607263, 285085831, 11803032, 273797262, 494785448, 398507780, 1327076168, 38325455, 211376063, 22882670, 595775844, 76075571, 58363824, 14957479, 262487491, 24088940, 43282408, 18421880, 390996368, 106834295, 400942102, 185898176, 439348486, 16930669, 22538803, 404433545, 506458865, 208280454, 2149664054, 52762219, 47584729, 2402150773, 2149568726, 340056002, 2393551634, 21647296, 1471503536, 389496300, 15582157, 210862956, 218003827, 1066893474, 127855180, 3039101, 250653423, 390866417, 2153631816, 2162731152, 25451718, 11808492, 18756514, 62318794, 223043930, 29719864, 210083863, 44362897, 603385690, 872801623, 2691421, 7822352, 17115175, 17305671, 372923595, 294538866, 16987778, 1235329850, 337932217, 8005732, 2308981092, 779575244, 2165044142, 16729801, 15440358, 26928955, 260614960, 83275645, 19306563, 344993871, 1327927195, 67331057, 146677172, 489530660, 925822981, 36110368, 624515774]}
View
1 testdata/get_follower_ids_paged.json
@@ -0,0 +1 @@
+{"ids":[372018022],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}
View
1 testdata/get_follower_ids_stringify.json
@@ -0,0 +1 @@
+{"ids": ["4765959640", "4739131634", "4739172985", "4738974613", "4765841871", "4739119994", "4765861906", "17943008", "367731662", "4739016462", "4739164933", "4739106686", "4739024832", "4765893917", "4765851257", "4765860101", "4765849727", "514640183", "4765816635", "4063956073", "4765864415", "4739149297", "4765839869", "4739132053", "4765838003", "406528648", "4765893772", "4765895548", "4765903654", "4765775175", "4739083334", "72395476", "4765852348", "4765766613", "4739008272", "4765795283", "4585656983", "4765864060", "4765749999", "4739053099", "4700481372", "4765715577", "4765792480", "4765724361", "4739056489", "536562594", "4765733913", "4765532733", "11061402", "3434757544", "4765792409", "4739043578", "4738974624", "4765798756", "4738964880", "4765700121", "4738978152", "2740147945", "4765629922", "4765761197", "4738885842", "4765742909", "2633959820", "4765756817", "4739092213", "4759784483", "4765677105", "4703824999", "4738948284", "4765746394", "4765706723", "4742590533", "4765590737", "4661720952", "7098702", "4739053753", "4601356224", "2683695680", "4765728316", "4765603515", "4765674581", "4765658969", "4739055427", "4765130974", "4765662137", "3407402261", "4765660049", "25770816", "4765612055", "3225876793", "4765730248", "4765608195", "611922523", "4738891512", "286236057", "398701324", "4765570277", "4765683388", "4765583475", "4765688740", "4738796532", "4765506021", "4738878792", "4765483635", "4765573757", "4765635970", "4765590983", "4765645576", "4765341208", "4739005651", "4738866072", "3739468102", "4765492815", "283353839", "4765448475", "4765482561", "4765605628", "4765592596", "39609902", "4738849992", "4765474683", "4765597096", "4738717940", "252516077", "188269663", "4765571722", "108584740", "4765481003", "4764936077", "4765556260", "4765546276", "4765228515", "4765345275", "4765434983", "4765411221", "4765420817", "42458276", "4765405785", "4765523182", "4738813182", "4738787124", "4765396605", "4765443857", "2184393483", "4765429157", "4765509208", "4765352001", "2346687594", "3681066674", "4738763400", "4765321841", "4765398725", "4765308268", "4765328001", "4765415956", "4765444288", "4765403255", "4738911571", "3396911669", "4765396769", "708833828", "4765313543", "4765453282", "4765306605", "4765362137", "4765288293", "4738857554", "4765371317", "4765431322", "4765370363", "4758390797", "4738790714", "4738829306", "4738806536", "407797352", "4753677449", "4765272735", "4765261995", "33957990", "4765243371", "4765259307", "4765303703", "4738737618", "4765252455", "4765346062", "4738806074", "4738683480", "4765195743", "4765347496", "4738801754", "586751400", "4738849453", "4765333768", "4765249888", "4738806254", "4765198581", "4765262123", "4765279336", "4765162689", "4765309096", "4738835233", "4527970479", "219908421", "4738793293", "4738695810", "4765192583", "4738767650", "4738653738", "4765210685", "4765227076", "4738817659", "4765260262", "4765161797", "4738758056", "4765237936", "4765243822", "4765127073", "4765164929", "229035936", "3047831616", "4738654092", "4765203208", "4765099035", "4765123773", "4764564681", "4765212016", "4738660314", "4765066821", "4765070055", "4765134629", "4765143407", "4765143065", "599111936", "4644635955", "4743655935", "4765051707", "4738644246", "4765201954", "25456684", "4765124489", "3225166934", "3309448447", "4313429596", "4765038621", "4738632138", "4765151242", "4738365943", "4738703288", "4738755775", "4484965034", "4765035453", "4765015713", "4765078997", "4389894914", "2571131", "4765142188", "353080019", "4738612566", "4765088560", "2698273621", "4765050557", "4765018409", "4764993381", "4765078246", "4764905285", "4764977415", "4738674236", "99005675", "4765016974", "4472138188", "4738724023", "4764951867", "4755836897", "4765056574", "4765059496", "4738642994", "4764909147", "247073897", "4764885921", "4765039996", "4764924855", "4764866836", "4764930813", "4753117042", "4764973853", "4765009276", "4764921555", "3447841155", "4764961955", "4764911241", "4738065966", "4738635320", "2553408806", "4765015768", "4764949037", "4764938741", "4764893235", "2793617508", "4738680433", "4764884259", "4764993184", "1557055416", "4764976342", "4450325897", "4617862114", "4764893783", "4764894203", "578031753", "4764978622", "4764864411", "4764887417", "4764812079", "4727376218", "4764807381", "349655533", "4738581014", "209023764", "4764938104", "4764940576", "4764870845", "64391741", "4764772035", "3305500571", "4764805463", "4738579172", "4480295356", "4764775179", "3034690747", "4764901624", "4536528933", "571728902", "4738359012", "4420026503", "4764820702", "4737374149", "4764747249", "4764788921", "4764765975", "4738571474", "4757555842", "4764804437", "4764858160", "4764741213", "4755903568", "4764723333", "4764730215", "4764772757", "4764772642", "4764702081", "4335003316", "4593672553", "4764746567", "4764804694", "69609201", "4659511159", "4759029856", "2827399996", "4764783982", "4764771076", "4764659187", "4738519274", "4738494284", "4764736594", "4764638307", "3106264444", "4764620793", "3854737821", "4738489382", "4764683069", "4738410234", "4623036597", "4727350887", "4712507654", "4582115065", "4738538371", "3946273155", "4764633845", "4764574821", "4764643697", "4764636077", "4764570675", "4764550947", "3848470694", "4738507963", "4764549977", "4764660526", "4764572687", "4764601397", "4064494155", "3294077447", "4764538233", "4764463485", "4678757509", "4738349052", "261850542", "4764552028", "4764483615", "18735117", "4764585028", "4764485079", "4738411778", "4764515969", "223108664", "4764533783", "4764517823", "4764445762", "4733995873", "153981304", "4764471333", "1974102895", "4764447501", "4759619775", "4764497957", "16490974", "4764519376", "4764460049", "4764407193", "4764468557", "4764434788", "4764526618", "282173541", "4764395535", "4763268808", "4764455177", "4764437609", "4738150260", "4764380253", "4764431915", "4705265843", "82566401", "4764464908", "4738252086", "4764476494", "3246158670", "4764384095", "4762711527", "136544334", "4764134657", "4764357735", "4764468274", "4764448396", "4764335661", "4764349521", "4764428710", "4738347044", "4764462856", "4764308296", "4764454876", "921785551", "4738393603", "4764302361", "968562781", "4764311115", "4764270195", "4764363449", "4764312081", "4764351989", "4764314895", "4764317835", "4764411142", "4764292047", "4738304389", "4764350315", "19779047", "4738224690", "4764364720", "49055401", "4764308777", "4764318874", "4764250563", "4737999770", "4648215510", "4764288017", "4738302014", "4395644537", "4764327028", "4764216315", "4738324345", "4764324856", "4641804437", "4764203301", "4764198735", "4764227375", "3164823397", "4764235997", "4738261213", "4764184587", "4738191732", "4764172767", "4764289876", "3558286516", "4764081333", "4764169755", "4764161613", "4764156809", "4764260128", "21088476", "2732601388", "4764263902", "4764259936", "4738171716", "4738216639", "4764248536", "4764132315", "4738109592", "4764237262", "4764124035", "4764086554", "284433514", "4764152423", "4764141083", "4764087147", "1324871660", "4576089505", "4764133577", "1179964824", "3734232860", "4764135989", "4764111743", "4764183022", "4738205360", "4764044775", "4738185566", "4763912775", "4756851574", "4764112048", "3311058195", "4764081401", "4764131788", "4738103538", "4631970147", "4763741361", "4763973435", "4764020261", "4764068956", "4602776604", "4738075980", "4738163672", "4764026549", "4738199593", "2895514422", "4738070298", "4764073018", "4742073387", "4296234209", "538331811", "4763969422", "4763997677", "4763892021", "854486582", "4764007420", "4763935337", "4763885547", "4764011656", "4763940323", "3408925325", "4763814579", "4738153939", "4764013042", "4763921237", "4735149375", "4738160089", "4738029924", "4738104122", "2148559407", "4763982688", "4763914529", "4763992396", "4763987368", "4763923637", "4763844453", "4714250546", "4763944396", "4763854521", "4763906189", "4763972902", "3796081573", "587492007", "4763875877", "137880328", "4763952556", "4763939422", "4763713822", "3279012422", "4763939722", "4763780421", "4763810955", "4738096387", "4763735595", "700059405", "4763900920", "4763778442", "4763753049", "4763866576", "4763790923", "4701439832", "350173088", "4763761397", "4763767397", "4746056175", "4762971154", "4738087633", "1904714786", "4738068085", "4763751917", "4726644797", "4763805616", "4763809816", "4763739467", "4564759097", "4763566173", "4763686473", "4763714789", "4737923100", "4737921978", "4763672367", "126309520", "4737264417", "4763773996", "2403263433", "4763653101", "4756921173", "4763768002", "4548563182", "4646676088", "2701455704", "4763733268", "4763646147", "4762122436", "25206571", "4763767222", "1169089620", "4763614935", "4763733982", "28573987", "4763698877", "566266643", "4763583621", "4763681795", "4763623575", "184013976", "4763729002", "3077548902", "4763665727", "2296655670", "4763612295", "2582074110", "4763580219", "4737890772", "65325338", "28958604", "605469535", "4762569496", "4763594121", "4763699122", "4763562921", "4763628641", "4737863478", "4737902414", "4763596769", "4763545341", "4737859698", "4763615777", "217871561", "4763535441", "4763572937", "4290046037", "4763489716", "4763543781", "4763576129", "2282062157", "4763582063", "4737919028", "3580301901", "4763630896", "410089531", "4737976537", "4763620906", "4763503937", "4763617288", "4763496813", "4737839844", "4763603422", "4763430021", "4763491887", "4737913820", "4763507963", "4763482995", "4763476179", "4762182261", "4763529815", "4763463213", "4763525897", "296399773", "963338924", "4763510183", "4737817524", "4763435907", "2313333701", "4763477423", "4763526424", "4737878060", "4763516602", "4763409969", "406675377", "4763507056", "4763492062", "4763427449", "4763486116", "4737894733", "4763411729", "404686753", "4737768564", "4763348295", "4763360295", "4763366079", "4684993944", "4737733560", "350220520", "4737348684", "4736037259", "4763337915", "4763437036", "4763310075", "4763321775", "4318050198", "4763350643", "4763330897", "4763371762", "4737868153", "4762439416", "4763295621", "4737730296", "4701971737", "4763398762", "857139133", "4744708193", "4763278827", "4763371396", "4763379022", "4763240241", "4763258955", "4713427517", "631191207", "170979948", "4763235795", "4763241255", "4763240187", "4736196480", "4763223861", "4763277329", "4737763424", "2826380430", "4763267177", "4763321302", "4763195727", "4763208381", "4736376896", "4763246183", "4763191947", "4763298688", "4763242529", "304483543", "4763172687", "4763219903", "4737793213", "4763273962", "4763204237", "4763252188", "140936669", "4763180201", "4737788053", "4609278495", "4763133273", "4737731282", "4494528335", "4763168723", "4763239516", "4763159837", "4763112075", "4763252800", "4705435995", "4763147549", "4763166755", "4763212948", "4763193976", "4763145269", "4763025399", "4763186422", "4763120003", "4737594666", "4763169622", "4763170642", "4763082557", "4763099675", "4763107697", "4737577392", "4763075086", "4763098637", "4737725437", "4763088041", "4763045415", "1854919058", "4737720553", "4763008911", "4737667394", "4762994967", "3856430894", "4763001435", "4763055137", "4763052629", "4763089000", "4763032817", "4737573012", "4763089414", "4762975893", "4763022857", "4565242769", "618397844", "4763049262", "4737538724", "4737681583", "4763052928", "4763053402", "4762997543", "4737540276", "4762998377", "4762932747", "4763041306", "3038155356", "4763051596", "4762920147", "4756154417", "4757328208", "4762962437", "4762965557", "4762851135", "2761011324", "4737529848", "4762862781", "4762858467", "501649363", "4743625035", "716174877", "3558503777", "4758167057", "4737625555", "4762837577", "17348209", "4762814301", "4762927936", "4737494268", "175316232", "4762936636", "4737494682", "4685936275", "4762858349", "4762909402", "4762792053", "4762821893", "3388678865", "4762765455", "4762749801", "4762743597", "4762885696", "4762872196", "4762814177", "4762737315", "22893600", "4762813516", "4762501876", "4762720413", "4762830442", "4737572413", "4762835362", "4762768757", "4737516614", "4762746437", "4762815874", "4762811176", "4762681521", "284322013", "16827375", "4762679415", "4762688727", "2303968933", "4762720697", "4762665255", "4737538171", "4762619127", "48294195", "4762688057", "223880898", "4737468008", "4737506533", "4737390492", "4762603709", "4762639655", "4762716136", "4757161821", "4762706788", "4762572561", "3155981235", "4762621049", "4762683808", "102355042", "4762631477", "1452556849", "1108354021", "60244742", "4762596197", "4762610183", "4762605317", "63942640", "1284125424", "333231579", "1391696480", "4220550675", "4711829783", "4737466285", "4762545495", "4762548317", "4762485076", "4737331212", "4762626382", "4762454721", "15474763", "4762512615", "4737291672", "4762580908", "4690673060", "3415067513", "2803374900", "3349186797", "281482596", "4762509581", "4762443675", "4762273223", "4762540636", "4727576892", "3399317375", "4762031789", "4762523836", "418988996", "3336627819", "4737358100", "4737410701", "4737397291", "448269441", "4762430909", "4730154906", "258829829", "4337919139", "4762449856", "399647444", "4762399349", "4762450576", "4737251424", "472029406", "402866280", "4762393997", "4762328235", "47568259", "3245249142", "4737372259", "4762328481", "862450183", "4762305197", "4483512989", "4762263501", "4761954627", "4762350388", "4762397836", "4762385536", "3444690017", "1693752445", "4762282229", "4737158592", "4762252581", "750760598", "4438750035", "4762348288", "4762269137", "130956452", "4762269449", "4762344436", "3051577591", "161416879", "4737264614", "71903566", "19631312", "205400297", "4762304848", "4762211055", "1326668024", "3112428539", "3867748633", "4762224017", "4737233018", "1047324295", "21218422", "4082699639", "4701059725", "14318525", "4762163235", "71746543", "4762275682", "420039631", "4762156581", "4762186037", "4762258636", "194090969", "4762192637", "4762252096", "4762128063", "474676942", "4762251736", "191988894", "67334621", "4762230976", "4737131832", "4762159703", "4473390617", "4762161263", "2188344992", "4762112817", "4755617241", "4762106121", "4737105972", "227237725", "21642162", "4762069827", "4737227461", "4762090529", "4721622080", "4471060639", "4737095172", "3056207221", "921806221", "4762047957", "2511936913", "499758610", "4762135276", "4762035795", "4762139836", "4737083118", "4762073723", "4737077592", "4762108114", "4762097536", "4762033481", "4731964548", "4380625223", "178473252", "3315556005", "4762089796", "4737182401", "221601252", "4762020743", "2705002822", "4737183913", "4761994397", "4761929595", "4737118874", "4697226751", "124923286", "3071577073", "4762036096", "4737013170", "4737115874", "150186305", "4761906861", "4761916833", "4737002570", "4762020262", "4737152035", "4732010016", "4761972964", "4737144343", "4761853575", "4253013434", "4757600056", "4737053792", "45858911", "4761849027", "4761849987", "4761866717", "4737114193", "4761884603", "4737109159", "4737064700", "4761937426", "616268524", "3902036953", "3613605619", "4761823233", "4761797781", "4737051560", "3215143222", "4761762615", "4761844895", "3545542752", "4761896602", "316602335", "4761803836", "4076166078", "4737082333", "4736951010", "4761770973", "4736944158", "4736971940", "130236348", "4737065053", "4761780023", "451879376", "4761660315", "4736916132", "4736916138", "4729384111", "4761693015", "470740873", "4733713470", "4761681195", "4736902968", "2929409360", "69460004", "4761764482", "4761695057", "4761691577", "4761696437", "4736967446", "4761633267", "4761626295", "4736872872", "4761614655", "4736948018", "4736999533", "516455439", "4703265501", "4736995273", "4726951699", "4761693736", "4736937722", "4761616937", "4736986801", "4761694462", "4761597443", "4761545475", "4736832822", "4761334035", "4761587549", "910398085", "231649230", "4761515481", "4736915114", "15114322", "4761624856", "4736886680", "4761443307", "4736892242", "4736934841", "4736937427", "241803628", "4761534977", "4761539663", "4736937367", "4761494433", "4761497915", "4761534377", "4734263444", "4761506189", "4761496349", "2614035342", "4736853896", "4736779302", "225635439", "4761419367", "4736719938", "4761424337", "4761425729", "14516237", "4736890027", "4761373215", "4736748384", "4761489856", "4703838986", "4736818634", "4761416195", "4291926493", "3429873388", "4516883180", "4761462676", "4734331338", "4761345855", "1421461544", "4761350777", "4714630538", "4761266955", "4761331043", "4761314855", "1956457422", "240141104", "4761259997", "3981953542", "4761247155", "4736667942", "244281046", "4761347176", "4761196755", "4761215783", "4761120029", "4736740994", "4761244643", "4736655522", "4761177562", "4761312508", "4761282736", "4753215377", "4736626032", "4761301096", "4761161187", "4736622372", "4761229043", "4736621508", "4736627472", "4761214757", "4736594239", "4736741791", "4736697764", "3196319958", "4761107229", "4729654008", "4761214894", "2727536015", "4761133157", "4761157463", "4761209974", "4736590464", "4736668184", "1402569169", "4761121877", "256727680", "4761130576", "4761162622", "4761086897", "4761007936", "4761081136", "4723747351", "4760515457", "4760984661", "715516843", "4736688799", "4736547882", "468341528", "4731688222", "3349708235", "409205609", "19197238", "4716064253", "4760960896", "4761079762", "3998364815", "6543672", "4760926521", "4736512226", "3996489132", "4760990722", "4761024514", "4760916269", "4736554388", "4736480472", "4760961076", "4760876667", "4758341069", "776079246", "4736607181", "97428661", "3219754824", "4760772681", "4736445852", "4736539489", "4760937106", "4760860775", "4736594833", "4736454810", "4760841143", "2970396529", "1380188798", "4736452104", "4760918176", "4760864615", "4736442366", "4653010454", "4760823556", "4736415420", "4760793917", "4736478884", "4760864614", "4760737935", "4736523787", "2189326262", "4760710647", "4753898853", "4760766977", "709744606", "4736472086", "4760696837", "1199586504", "4760642667", "769518006", "4734216085", "32321568", "4736360292", "4736428640", "4760734822", "7209082", "4736426612", "4734957841", "4736480599", "4760657777", "4759775309", "4760714356", "4736468251", "4736320962", "3423445479", "4760537475", "4760594057", "3367118248", "4736318490", "4760556753", "4736329752", "834320022", "4739260575", "4736294952", "213978400", "4750510756", "4736341021", "4760564363", "4736433457", "1084565797", "4736262396", "4736301372", "4736440591", "4760657962", "4760517549", "4760638054", "4735705154", "49506792", "4760639074", "4736294916", "4741180523", "439174793", "40164760", "4736419657", "4736375546", "4760596294", "4760529989", "4754840967", "4760448705", "4760566756", "4736400727", "4760483579", "136331308", "4736265972", "14921760", "498392921", "4736379673", "4760469257", "3263023717", "4736336726", "4760378548", "473271024", "4736311916", "4760452522", "4736223768", "4760402063", "4760369421", "4760433455", "4760177843", "219660228", "4760465836", "4760400947", "943586035", "4760104943", "3854668754", "4736208744", "4736269862", "4736320459", "259064580", "4754802142", "4760331555", "4736333047", "4736320027", "4735955875", "4736198238", "4736195244", "4736057863", "4736263946", "4760390662", "4736252450", "4736249534", "377223642", "4760345056", "1386351150", "4736248154", "4479834225", "4736129094", "4736135706", "4705007292", "4736122998", "4730538684", "2276673354", "4736105130", "4736110802", "3153563349", "589466345", "4736261455", "23236598", "1374209220", "4760199741", "4760278642", "4736211974", "761593298", "4736246173", "4760206157", "309911240", "4671583213", "1683770155", "389762055", "4760254948", "4760008593", "4760189962", "4736213713", "4760156477", "3009279536", "4736093658", "4736163956", "3045796096", "4760145503", "311577341", "4760090547", "4736129624", "4736174713", "3784666756", "4756362124", "4550320873", "4760202316", "4736043930", "4760131049", "3150664416", "24201647", "4760054835", "4517693720", "4760053815", "4760071937", "4736187805", "1568923447", "4759929021", "4736039958", "3984521945", "378278756", "4736169673", "4736139733", "4760095342", "4736139715", "2483585567", "35045076", "129144959", "4736086580", "52754965", "3761454794", "4124956763", "386535838", "4760034880", "4759950029", "4736077160", "4759942577", "4736105965", "4736058998", "4735854739", "514002248", "84434605", "4736045954", "4759966216", "4735949262", "4735958112", "4759893502", "4718119276", "4736079871", "4735931532", "4443400096", "3583478778", "4759747155", "4736061361", "4721256787", "2534447973", "4272712953", "4759787375", "518537415", "4759759107", "4735984538", "4735914492", "4735822476", "4736050033", "4759686291", "60519182", "297981859", "23076301", "4759444487", "4759788203", "4759696935", "4748852194", "4759768156", "4759672245", "90801969", "4759779028", "4759776436", "4736004067", "4735950530", "4735956620", "4759714157", "4735966093", "4759662495", "2959265094", "4735989139", "4759559367", "3358636906", "4759736842", "3240155426", "4735969267", "4759242795", "4759645529", "4733699718", "4759649771", "4745588243", "4759568775", "3030255418", "4735955413", "4716611895", "3220775640", "4759562747", "4759550313", "4735796286", "3783478115", "4143763493", "4735790304", "3384305842", "1576773594", "30286361", "4759589249", "4735784550", "1511643738", "24833711", "4759573163", "4759627216", "4759584262", "4759465479", "4735892317", "4735862180", "4735778718", "4740078017", "4735899043", "4735821961", "4759397247", "4735754712", "4735748232", "4735843106", "4756672761", "4759506196", "27628681", "4759391385", "4759394961", "4735809992", "4735735776", "4759497508", "4759495048", "4759429175", "20235640", "4735804034", "1375098068", "4759395797", "4759437802", "87929523", "1029004964", "4757132261", "4735837501", "4759451596", "4759260147", "4735766360", "1342978651", "4759361309", "4759254435", "4735736006", "19685932", "4759408342", "4735760210", "4735770074", "21054235", "4735684632", "4759261815", "4735809493", "4735761020", "4759273935", "4735809073", "4735661298", "4759244487", "4735670670", "4735802893", "4735802713", "809251986", "840474866", "4726523340", "4735622832", "4759173923", "4759331680", "4727079426", "4735739294", "4759219575", "4735725080", "4304778973", "4735635336", "251715206", "4759159875", "4759245077", "4107753266", "4735633392", "19640538", "4735762663", "4735619886", "4759256428", "854416172", "4321624517", "14061555", "4735685594", "4735750453", "4759113939", "22101689", "3872251995", "4759157013", "4759250656", "4759184549", "4759191496", "4759122915", "4759108521", "4759118013", "4756442956", "4759165769", "4759117419", "4735732879", "4759118649", "4759239562", "4735597152", "4759064595", "4759140929", "91549690", "4759214476", "3145398291", "4759218922", "4759207582", "152108314", "4759142123", "3821044933", "237541427", "4759187728", "4759087421", "4735580850", "4759044933", "4759102103", "4759090589", "4735573032", "4759158256", "4759166362", "4759024215", "4735697353", "1575227790", "4759148554", "3025453296", "4759028427", "4758974055", "4759126828", "4759062880", "4759048883", "2592925064", "4759029341", "4759025981", "4735531998", "4735660117", "4735610186", "4690141520", "4735569014", "3379740994", "525275630", "87919541", "24092307", "4759056496", "4665279077", "4759017622", "4735507272", "4735567328", "2937416866", "4758950303", "4759007320", "4758883305", "62873711", "53987594", "19711904", "4758904817", "3227360091", "1369530715", "4758915641", "4758862359", "4735605733", "4735595119", "4735453836", "4758840441", "4758882449", "4735493894", "4735592383", "4758828141", "4758823875", "4758875843", "4735581379", "4735538090", "4758894076", "4758853355", "4735529084", "4758749235", "4758916282", "4758833255", "4758816497", "4758798797", "348140657", "4758835163", "4758883162", "4758851674", "4725490303", "4758818783", "4735508774", "4277977036", "4758756291", "4690992931", "4758738123", "4758704776", "4758810935", "1887839334", "3241766941", "4735428672", "4758748395", "4758787829", "549791517", "4735552513", "4758716787", "4758703713", "4758758003", "4758743597", "3617810232", "4758749537", "4758737555", "74490017", "4758742415", "4735434373", "68993816", "4735378788", "3314977090", "3033522800", "4735526413", "4758699869", "4758733457", "4758693383", "4735503433", "4758653433", "4735518373", "9240442", "568680929", "2922457794", "4594020681", "4758697642", "4758716296", "4758580635", "4756479442", "1469451499", "4735438280", "3293420909", "4570724435", "4758619347", "4625224288", "3545998094", "4735241132", "4758710722", "4758622301", "4758566955", "4735349112", "536565242", "4758471057", "126485887", "4758643283", "3603167894", "3379031427", "380788623", "911142163", "4735470739", "4758668176", "4758509903", "4758613739", "4758525345", "4735304178", "579419860", "4735394125", "2455414646", "4735415180", "4758573929", "4735461673", "4735324812", "4758647248", "4758513081", "4735397402", "3291655419", "4758630802", "4735381562", "4758598942", "4758498735", "4735294266", "18203434", "109954721", "4758604516", "4735302312", "4159190387", "3282814028", "4758581914", "4735428031", "4758546856", "4758410547", "65650944", "2834068907", "388022177", "4758564208", "4735394119", "4758480887", "4758433899", "4758548716", "4758479357", "4758425116", "4758460529", "4758452777", "4735379737", "4758401895", "4758374969", "4758392787", "4758333075", "4758418403", "250304726", "4735318094", "4752079756", "4758456622", "4758310881", "4758393617", "3441097755", "4266314410", "4735305380", "4758354797", "4566976755", "4735211868", "4758319161", "4758352997", "4758401128", "4734863700", "4758355943", "96417641", "4758291795", "4735326181", "4758328841", "4758289473", "4748201229", "4758345215", "3044289227", "4758286295", "3408426863", "4758385696", "4758378022", "4758301601", "4758353632", "4758372742", "4758310169", "4735178160", "18347873", "4758336448", "4758251733", "4758268697", "2874535584", "4758347980", "4758308734", "4309920076", "4758210897", "4758326656", "4758258863", "4758262817", "4758190395", "4758204687", "4758234029", "4758305602", "4758185739", "4758187581", "4735240034", "4758178635", "1053327032", "4758212213", "358682727", "4758169527", "4758213323", "4758274798", "4757945975", "4758146655", "4758202817", "4758148341", "4735129656", "4758151461", "4735262893", "4758055815", "2510542616", "4758261688", "265006082", "4758175697", "4758126555", "4758221422", "4758185302", "4758180089", "447713232", "3497357897", "4758144136", "4758111315", "4758151643", "357472731", "574213782", "4758199432", "4758193282", "4758081027", "4758107255", "4758001455", "4758187246", "3739740073", "4758111857", "4758181996", "4735175966", "4758069675", "4758090923", "4758162340", "4757504476", "4758080543", "303786574", "4757974041", "3087763102", "4758161302", "4472510354", "4758021741", "4758139072", "4758060455", "4758109582", "4758059795", "2705259481", "4756527089", "3271125482", "4735048326", "4735065570", "4758031337", "4758031283", "4713517579", "4565771475", "4758037949", "4735188133", "4758019073", "4431647187", "25734719", "4757940963", "4758029957", "3029509817", "4757956701", "819654019", "4757994257", "4758062308", "4758085426", "857113664", "4758015449", "225185575", "3055248670", "196159406", "4758003209", "4758060388", "603141461", "3485976856", "4757931735", "4748097741", "4735160119", "4751233701", "4757760687", "4746219466", "4757880573", "2947576978", "4757857977", "4757960321", "3074532103", "4757942141", "4757906783", "95348548", "1069588590", "4757884581", "4081710741", "22762423", "4735134391", "4757921165", "4735012392", "4757870357", "4757869059", "4757980882", "4757867073", "4757930723", "3819631525", "475638551", "70548171", "4757858235", "4757903033", "4757915717", "4757891675", "4757903189", "7894162", "4757866469", "1493195964", "4731323121", "3743060353", "1655149836", "4757817081", "4757884217", "4757889449", "2182031337", "4757932126", "4735102651", "4757815035", "282438141", "4757885056", "4757916016", "4757924500", "4757903200", "4757834603", "4735050554", "2380093922", "4757781081", "1954293848", "4734943332", "3161541668", "4757664735", "4757813633", "4757759721", "4757861716", "4757823815", "4757867788", "4756068377", "4757862436", "4757862142", "4757874754", "4757862202", "4757731227", "4757751015", "4757785223", "4737524062", "4258268567", "4745914877", "4757836234", "4757856016", "4734927120", "4757828860", "4757825494", "4757836216", "4757698479", "4754636236", "4757681117", "4734148704", "4734957950", "4757677221", "4757688939", "4757689095", "15241153", "4735046173", "3544905139", "1442069736", "4757775016", "4757629833", "4757650587", "4757648421", "4735031467", "4757756776", "4757676383", "4757702369", "4757639817", "4757659025", "4757735902", "4645044203", "4757748694", "4757730562", "4757627783", "4734885948", "4755327022", "4757593053", "4757701516", "4126800195", "1158163531", "4757599647", "4757580507", "4757688826", "4757654855", "4757711974", "4757717962", "232263043", "4734871602", "4757563935", "4757574519", "4757716156", "62582393", "148448915", "4734902984", "474274010", "4757516361", "4757681788", "4757619797", "4757585273", "4757649268", "4757611601", "4734859483", "874699776", "4757579417", "4757643304", "3432689788", "562448560", "4757593408", "4757652856", "4700260824", "4757523387", "4757647222", "4757521701", "185736307", "109284239", "4757555663", "4757633122", "4757497239", "4734836460", "4757615416", "4757502675", "4757285715", "189717412", "4757552057", "4757499483", "4757524877", "4757486781", "4757496651", "4496278701", "2757903133", "4757535209", "3323877689", "4734939649", "4757582902", "4757439147", "4734807600", "4734941173", "4757463015", "4757458035", "4757314875", "472155776", "4757408241", "4757486117", "4757500157", "4757552074", "2841122080", "3245282243", "4757417091", "131164504", "219786395", "3976422076", "4757371397", "3245557951", "4757495116", "4757373465", "4757454509", "4757511382", "4757508742", "4757479042", "4757502976", "4734862214", "4757380821", "4757115501", "4757373081", "437156498", "70396195", "4757362341", "16025265", "4657959731", "4757463388", "4734747882", "4757403689", "4757465560", "4757274315", "4757445922", "4757394479", "4734844394", "4757380169", "3309896900", "117176755", "4544450969", "4757301945", "4734787610", "4734868399", "4734722022", "1705486176", "4734880735", "4734751002", "3297256825", "4757321247", "4757333177", "4757316743", "4734862177", "4757290287", "4757288247", "4734727950", "4757383588", "4757335343", "4757274747", "4757259567", "533254833", "4757252493", "4757309129", "4734719910", "4757302901", "2460293558", "3376158615", "4757364718", "4757285189", "4757277569", "4757292803", "4502702540", "4757196573", "2887601698", "1347057806", "4757323462", "4757202803", "4757318812", "4734743048", "4757222789", "632956521", "4757135901", "4757156913", "4757293276", "4757244623", "4757245955", "4757188695", "4757244695", "4757175993", "4757237837", "4757286508", "214105057", "4757280442", "4757231716", "473003825", "4757275642", "4757276608", "4757189380", "4757201147", "4037907035", "4757262406", "4757256400", "4757190317", "4734650340", "4734790483", "4757255176", "4757239228", "2961586797", "4757181563", "4734785455", "4757122425", "316482632", "4729870417", "4757107779", "16459336", "4757085327", "3769051697", "4756202477", "4757205040", "296704143", "4757133677", "4757123789", "4753275171", "4757060901", "4757059755", "4757047167", "4757095643", "1585134229", "4757049322", "4757157076", "4757161042", "4757041287", "2530566580", "1276044865", "4747238355", "4730644922", "4757010273", "4757071697", "1166494836", "4663605679", "37205824", "4756989813", "4756998687", "4757130574", "3139566474", "4725995805", "4734577830", "21575948", "4757113288", "4756990797", "4756973781", "4559559012", "4757034575", "4756975785", "4756989615", "4757011709", "4757100862", "4757036837", "3312644365", "4656613888", "4756957461", "4756965377", "4757003867", "4757069386", "4757057074", "4757047156", "4756990913", "4757064622", "4734569976", "4756931487", "4756964369", "2288844465", "4756988837", "2986403619", "4757044582", "4748393542", "200353363", "4756923261", "4756907481", "2763135142", "4734689713", "4757022052", "4734674893", "719124282", "560604890", "256186602", "4756969708", "39622743", "4756918169", "4756942522", "4692952411", "4756916741", "4734637747", "2820574679", "4756866795", "4756903799", "4756814421", "4756963648", "4756861072", "4756953220", "4756844902", "4734586754", "4756804773", "2235004605", "4756837228", "4756871621", "4756622595", "4734488508", "4756864409", "4329327628", "4756907722", "4756778187", "4756843727", "4756796625", "4756739439", "4734557828", "4734574496", "4756838183", "4756846937", "4756769007", "4756806803", "4756768047", "4756810427", "4734613633", "4756854316", "4756762107", "4756750635", "4637967800", "4734530840", "4756684767", "4756859668", "4734470298", "4756719867", "4756730475", "4756389735", "700719895", "4756760963", "4756847314", "4756699245", "4756714095", "4756797376", "3956926512", "4734580201", "4756694175", "4756744091", "143763577", "2246693687", "632347405", "296562486", "4756802668", "4748128521", "4756693155", "4756693413", "4756693101", "190000673", "4756681341", "4756686087", "4756793188", "214529821", "4756725881", "4756782838", "4756772056", "2930276282", "4734449725", "4756764514", "4734508994", "4756760674", "4756774054", "4756766596", "4734504404", "2882309905", "4756659909", "4756738708", "622183081", "4756626615", "4746466605", "4756743586", "4756211727", "4756667555", "4756752136", "4496755996", "4756670447", "4756724866", "4756693582", "4756560725", "4756341135", "4734469802", "4756643069", "4756713196", "3890831309", "181684635", "4756657931", "4734484874", "4756717696", "4756582593", "3694370114", "4756654475", "44502376", "407252913", "4734476498", "4756535841", "4756667962", "4756584093", "53379072", "4064634802", "4756677016", "367203024", "4756611137", "4734513373", "15990562", "4734369846", "2985160159", "4756649362", "559472452", "4756595915", "4598442734", "4756581257", "4756644580", "4756541897", "3412812012", "4756623520", "4706622722", "2149914815", "4756571903", "4756624672", "4756626916", "93691945", "4756548023", "4756598542", "4146780738", "4756602682", "3271374494", "4756480335", "4756471419", "4756574638", "4756601716", "4756466655", "4756468521", "4756590952", "4756587028", "4756526602", "4734437893", "4734378824", "4756504535", "1629065936", "4756424175", "4684764498", "4756499609", "340956835", "4756476653", "3419776559", "118125385", "2422410139", "4756456835", "4756547896", "4756505230", "4756401747", "3301096941", "4104452547", "4756387935", "4756532236", "16362502", "4756398507", "4756462120", "4756379001", "3231493532", "4734387764", "4734366158", "4734373634", "4756484002", "91007329", "4756432397", "4756376667", "4756446635", "2908908316", "4756395089", "4756363293", "4756449262", "4756351179", "4734420373", "4756343175", "4756414583", "4756339635", "4712548868", "4756290885", "4756261097", "4756446076", "4756290053", "4756326615", "4756333763", "4756355327", "4756255647", "4302013108", "4756315995", "4734312908", "4756421482", "4756413682", "974176632", "4756283541", "4734384793", "4734378823", "22815781", "4756342456", "4734061574", "30059550", "4756402336", "4756338683", "4756265025", "4756334063", "4756311377", "135263653", "613445490", "4756390516", "4734238986", "4753493007", "4734316634", "4734234504", "4756240473", "135730830", "4756366882", "485380352", "4756270157", "4755953302", "110889659", "4756241355", "4756220367", "4734231432", "4756203735", "4756257495", "1876007538", "4738803683", "4756364686", "4756231881", "4756221327", "4756265531", "4756356736", "741498528", "4756330522", "4734341203", "190841871", "4744540107", "1120411730", "56443882", "4734650727", "4756268129", "4756151967", "4756307656", "1645391851", "4756285102", "4734285128", "2517008108", "4756177101", "119691109", "347130467", "213136257", "4756232051", "1849565287", "4722672906", "4734268406", "4756169007", "3305830187", "4756163913", "4756219643", "862144376", "4756151061", "4746996514", "4532680572", "4756153167", "4756264750", "2784705746", "4756189397", "4756185743", "4734172812", "4756179449", "4756254688", "4756157081", "4756195169", "3920566648", "4755950981", "4756232074", "4756243876", "4734163038", "43775899", "4756052295", "4734299293", "4734103854", "4756139717", "4756101507", "4734122474", "4756226716", "4656228083", "4756206616", "4734147600", "4756219282", "4755931702", "4756194214", "4756104257", "102555255", "4734121392", "4756017993", "4219462939", "4734062952", "4756050982", "4238700027", "4734220321", "16904352", "4756127548", "4734231925", "4756085477", "4756016241", "4756140682", "2742368294", "4734188114", "4756131178", "4756076303", "596837950", "4756118128", "4756013415", "2154578179", "4734104112", "4755912333", "4684695571", "4756052716", "4756107616", "4734079812", "1522414483", "4755992200", "4756035143", "4756022849", "4756018697", "72969703", "4724396724", "4734074028", "4756054678", "4755978802", "4756044514", "598644225", "4756006283", "948184818", "4697115612", "4734066192", "4755981917", "4756057894", "4756045840", "4756049542", "4756051108", "4756007368", "4756020262", "4519670353", "4755969857", "4755877881", "4734023454", "4743016883", "4734131414", "4755924035", "312965260", "4755919456", "4734167053", "4733646674", "4754249836", "4755833697", "1723189850", "4750855223", "4755908002", "4755820899", "4755936376", "2285737388", "4755961774", "1964685090", "4755870196", "4755916348", "4755806841", "4733966238", "4755925216", "2260437854", "4734124693", "4755855221", "4734109753", "4733961792", "4755800421", "4755795010", "4755777069", "4755791349", "4755895678", "4755808943", "4755891256", "4755768497", "4755819323", "4734087553", "4734103093", "4734051734", "4732590032", "4755813065", "4755758903", "4733828190", "4755865948", "4755775877", "4755749301", "41015173", "4755734001", "4755791147", "4734092893", "4755784643", "4755734121", "4755722901", "230179504", "3663521728", "4733944560", "4755812674", "4734040351", "4755681867", "4755686045", "4755712235", "4755783952", "4755706637", "2883392019", "4755655569", "4733983286", "4755648675", "4755645321", "4755637185", "4755698254", "4755747796", "86225263", "4755677903", "4755596121", "4755709882", "4734037219", "4733484685", "4755665657", "24102671", "4755605423", "4755703996", "4755655001", "4733956748", "2777535250", "4678599134", "4755668200", "3913951881", "4755580227", "2633792262", "4733868084", "4733941886", "4755612059", "2210908023", "4755677866", "4655569752", "4508497821", "14748010", "4755545355", "4755590363", "4755659068", "4755551655", "4731976260", "4755554049", "19195558", "4755649642", "4755599561", "4755553715", "4755544047", "4705473505", "4755585689", "4121462584", "4733982613", "4733926694", "4755518962", "4733900732", "4755550001", "4733868134", "4755540335", "3250470795", "4755532355", "4733904728", "4755437847", "4755515741", "4755519376", "4755568588", "4733784936", "4755431235", "4755444153", "545037197", "4733870732", "4755496757", "4753891216", "4733799576", "4755530422", "4755556396", "923179795", "2876443557", "72886300", "4733807532", "4755545236", "4755309214", "4755517714", "153455979", "4755503296", "4755508156", "1176701184", "4755440417", "4755501862", "4733776038", "4755495262", "4755367647", "4755348315", "4733768562", "4733842202", "4557536782", "4755395896", "4755461842", "4755398369", "4755427228", "4733814494", "4755448288", "4733884075", "4755444136", "4755421042", "4755339701", "4755309333", "4755314901", "4755376577", "2695939015", "4755399538", "4755286107", "4730413514", "4755273507", "2890562208", "4755362963", "4755284661", "4733605994", "4755399430", "4755272403", "267265512", "4755320597", "4755259881", "4614514881", "4755357736", "4755302075", "4755335014", "4755309035", "50857818", "4755250755", "4755343342", "4755140943", "4755273821", "4755328822", "4755212361", "4755192435", "4755334882", "3028002386", "4733669136", "4755264623", "277663921", "2153307593", "127839968", "4755236555", "4755314236", "4733810299", "4755253277", "2887954536", "4755205211", "3741989837", "4731597613", "4755168165", "4755170475", "4755167307", "4754727873", "443758109", "4733537364", "4755157041", "4755258856", "4755147447", "4755147381", "4755249214", "1192568762", "4755096399", "4755167177", "4755262636", "4755133731", "4755144159", "4755256960", "320285320", "4733639238", "4753508897", "4755124461", "4755136948", "4755110595", "4733722633", "4755104553", "4755160823", "4755061703", "4755235318", "4755149417", "4755157523", "1015042345", "4754936357", "4755071055", "4755031636", "4755121607", "4755101843", "4733703680", "4755051261", "4755174982", "4755132083", "4755052335", "4755045567", "4755111869", "4754998047", "3360599472", "4537941109", "89023709", "4755165028", "2951238653", "4755026715", "4755028881", "4755076163", "4755057617", "4755141016", "4755087383", "63700389", "34713920", "4755070157", "4755086422", "4755019636", "4755061577", "4755110002", "4755062189", "4701970578", "4754927847", "4755080488", "4755088942", "4754975367", "4733636156", "4755019097", "3226437103", "2267421480", "4755092314", "4733700553", "4733518410", "394839517", "4754979317", "4755030382", "4754922207", "4755036628", "3217924913", "4755002885", "4733672407", "4754936001", "4754985329", "4733631386", "4754884581", "4754976497", "4755025168", "4754891722", "4733524608", "4754939321", "4754926469", "4639746255", "4754944223", "4754899527", "100549211", "4733652019", "2972205475", "4754988742", "4754882955", "265165339", "850712400", "4733557975", "4733512278", "4733523744", "4754923703", "4754857541", "4754983036", "4733644801", "4754924849", "4754894243", "4754845707", "4754364508", "4754965954", "4670150653", "4754970016", "4733579612", "4754932396", "4754888909", "15124207", "4733629699", "4754814406", "4754870003", "4754837181", "4754800671", "4754816595", "4754816127", "4754790861", "4746258502", "1357963177", "4754876134", "4754811633", "4733477166", "4754676622", "4754896936", "4754822981", "4754762777", "4754778555", "4754796261", "4377021387", "4754913028", "4754795493", "4733611213", "4754812517", "4754290635", "4754890054", "4754361219", "2949917872", "4482206369", "4754722647", "4754794823", "4754816267", "4754812229", "4754810981", "15845035", "4754819777", "4241323814", "226274067", "4754844316", "4733533694", "4733580379", "4754716815", "1638184681", "4754763377", "4754774669", "4754694153", "4754757455", "4754769197", "4754718507", "4733497046", "1226265152", "4388579772", "4733397012", "4754815588", "4754694681", "4754669565", "4733337458", "4754736635", "4733424492", "1103965016", "4733349806", "4691019907", "4754622393", "4754662275", "4754722763", "4754631735", "4754750374", "4733384478", "4754637675", "4754687837", "4754629395", "4754751496", "4754756368", "4754635595", "4754751922", "473265202", "4754549295", "4733471240", "560907112", "4754607557", "4749969861", "265516547", "4754597853", "4754591907", "4733443580", "4261641196", "4754649557", "4754646917", "4754592645", "4733357136", "4733453120", "4754684932", "4733436794", "4754586575", "4754562621", "4754541561", "4733338296", "4754574917", "4754181652", "4754585969", "4754666458", "4754566937", "47321565", "3315385361", "4754537681", "4754593457", "4754569595", "4754590643", "14102421", "4754526555", "4733403314", "4754595688", "4754429373", "4583322673", "4754489361", "4754498775", "4733299536", "4733446531", "261696132", "4754535755", "4733388350", "4754527643", "4733299632", "4754439807", "4754580526", "4754482217", "4754558716", "4754508592", "4754492417", "4733374814", "4754521720", "3073197188", "4754434575", "4754442682", "4733422321", "4716135029", "4754132237", "80408293", "4754530582", "4733397739", "4754513596", "4754454713", "4754398713", "4754502016", "4754444417", "4754463142", "4733388079", "4733245848", "4754463856", "4754244952", "4754344779", "4698115542", "4754360003", "1539032851", "3310672815", "22396645", "4754379641", "4754441956", "4733240472", "4754328057", "4753783996", "4754371517", "4754294133", "4754358095", "4733343193", "4754289635", "4754306613", "4754283279", "4754294805", "4754323709", "4754345435", "4733314753", "4754264841", "4733209944", "4754211581", "4754388562", "4754342963", "4754365702", "4754400274", "4754287181", "4754329763", "4754320577", "4754289977", "4754325797", "3289957461", "4621003695", "4733289812", "4733278790", "206236633", "4754363422", "4731640014", "4733194740", "4754276063", "4733235805", "4754338642", "4754286155", "4754228123", "4754272247", "261917033", "4754332714", "3161107329", "4754319328", "4561537642", "4754244677", "4733239694", "4754292922", "4754203276", "4754227175", "4754288674", "4754168973", "2500910660", "4754203697", "4733226200", "4754139023", "4733243689", "4754112135", "4754121087", "4754121627", "4733120670", "4743250707", "4733250415", "4754112381", "4733207672", "4754209402", "4733195912", "2905990358", "4732968685", "1723046504", "4754136881", "4754088539", "4754028315", "4754025627", "4079119993", "4441682054", "4733217853", "4753920021", "4733094624", "4733224159", "4754083703", "555065700", "4733170622", "4733057808", "4754057357", "274070440", "4754018673", "4226889154", "4754042873", "4733163194", "4754055179", "4754009715", "4733156390", "339344092", "69513584", "4733205013", "4754107228", "4753999155", "4754044817", "910528460", "4733150834", "4754102248", "4754031359", "4754047649", "4754005037", "4753838979", "4733059488", "4386763877", "4733195413", "4733049924", "4705497029", "4754018363", "4100457733", "4733138366", "4754066734", "4749950235", "2748798506", "4753995323", "4725398247", "4733180215", "197951725", "4733131574", "2931946486", "4733042958", "4753979555", "4753931721", "4733039250", "4733168491", "4753557137", "4753904241", "352573002", "447791796", "4754017948", "4733034554", "4733002398", "2258149591", "4733023094", "4753827987", "2357419346", "283444546", "1916909690", "4753946902", "2741898127", "3419432291", "3182718373", "4753792635", "4753885522", "4753736841", "4753814447", "4753831463", "1655062370", "4753777395", "4732982576", "4753749735", "4753733955", "4753800323", "4753745247", "4732935852", "49950337", "3087506473", "4753830988", "4753840636", "4753782635", "4753773227", "4753742783", "4753765175", "4753715493", "4753713375", "4753670721", "1420810416", "4753816600", "4692572478", "307253072", "4732890792", "4732910208", "531015362", "4753735469", "4753780834", "4753725023", "4515442403", "4753707935", "4732940594", "4701743496", "4753699223", "4753649265", "4753642275", "4753673681", "4343375777", "4753735828", "633812347", "4732883892", "322548747", "4753617219", "4745584096", "2889763128", "4753626155", "4732987639", "4753693414", "4753581285", "4732856778", "4720913138", "4753626497", "4753693276", "4753551801", "4732850304", "4753597475", "4753670536", "64215324", "4753292129", "4753551105", "3126205433", "4753535409", "2359656048", "4732805592", "4065203359", "4753576049", "4753462335", "4577068290", "4753561829", "4753485573", "4732814412", "4032126856", "4753489336", "3335270788", "4753359591", "350612132", "852702962", "4753571074", "3946420281", "4753450575", "801735901", "4753560688", "4753529195", "4732877480", "4732776618", "4753570222", "4732869014", "4683160164", "4753522660", "4753566016", "4753497023", "4753437795", "4753419021", "4753550842", "2322950802", "4753474283", "4753423097", "73116572", "4753398435", "4753436153", "3313491528", "4753510168", "83845669", "4753396635", "4753356441", "4753488586", "4753398503", "4753357401", "4732832054", "3076665694", "4115986153", "4753400843", "4753349061", "4753377767", "4753377317", "354870888", "4753454782", "918412532", "2617444070", "91494334", "4695708134", "800445865", "4753297047", "2835552996", "4753339175", "3161318884", "4753365616", "3069558734", "4753268421", "4753374046", "4753269437", "4732693572", "4334898733", "2922745134", "4753284497", "4753272737", "4753093163", "4753232193", "4753282397", "4753255343", "4732685052", "4753205205", "4752998655", "740777515", "4644632113", "4752919462", "4753309582", "4753247297", "4753191075", "4743549983", "4753205379", "4753244357", "4430990908", "141108821", "4732793875", "4753298788", "4753211567", "527453046", "4734472155", "4753151151", "4753250716", "3102488113", "4753198157", "4657932021", "3954908534", "3074790257", "1629321793", "4753179227", "4745211689", "4732618638", "4753161983", "4732748173", "4753116257", "3340845305", "1500217363", "4732731853", "561369792", "999926293", "4753144876", "4753060107", "4732708159", "4753130416", "4732721899", "4753163848", "4732662181", "4752862523", "37846288", "256085015", "306039929", "4753149724", "4731201036", "4753081049", "4732586352", "1450670148", "792219294", "3587032522", "4753070123", "4753049735", "4732650434", "4753116802", "3231748003", "4732651622", "4753062154", "4753089856", "1475154985", "4753054768", "4752957869", "3075625922", "4752955395", "4752886275", "4753004657", "4753027876", "4732525722", "4753042834", "4752960977", "4753023328", "4752892881", "4752925895", "4732605158", "4378292534", "4752922697", "1292381706", "397184989", "4752866751", "4752857121", "197393149", "356383461", "2783566572", "4752853695", "4752956500", "3304156939", "74960018", "4752938602", "2479627440", "4752885143", "829865587", "4752821477", "600123871", "3724136779", "265998896", "154883535", "1198985886", "4732550672", "138075819", "4645869209", "4752824309", "4732551848", "4752780321", "4752900484", "58816486", "4752759741", "4364203577", "4752890776", "4732063716", "4732431054", "4752754407", "4732529522", "85598533", "4752765316", "4752757253", "4732461764", "4752749837", "4752706881", "4752650847", "4752676383", "4752688815", "4752768154", "151398011", "4752712649", "96049227", "854299705", "4752631809", "4752704783", "4732473920", "4752697883", "4752642921", "451976940", "79412441", "4752751216", "4752675071", "4732360008", "4732418726", "4752722836", "1742603659", "4752665237", "4752713380", "4752685702", "4752584181", "4750482376", "4752572595", "4721758590", "4372492696", "25143224", "4752663016", "4752667396", "4752665476", "4752522855", "4752600101", "3099989365", "2155504715", "2309976006", "42300926", "4752575249", "4732325772", "4752561082", "4752602476", "4752575483", "4752570557", "4687799082", "4752551063", "4752568222", "4752510023", "4732422925", "45343784", "4752565582", "4752438615", "4752561376", "2402091119", "4752440115", "4709076673", "4752502403", "4752553168", "4752476507", "4729390394", "4752416655", "4732249524", "4752388695", "4752520156", "4752530722", "4732391665", "1214159695", "4752386039", "4752330201", "4752446458", "4752455842", "4732279052", "4752331701", "4752405916", "148814931", "4752359537", "4732307828", "2272409545", "1494028537", "4728907874", "4752355637", "130700994", "4752359963", "4732300280", "4704386552", "4696708285", "4732284139", "4752309017", "4732289342", "4752323896", "4752254187", "4752248427", "4732271870", "2944332948", "4732271840", "4752190936", "4752222357", "4752251837", "2685837646", "4752207075", "23283907", "4732228795", "4752173001", "4752178641", "4732246718", "4752223757", "4752290626", "426834725", "252762166", "4752279688", "2705469679", "4732276693", "4622898553", "4752251770", "4752131237", "4732215374", "4752189323", "4752235756", "4743403115", "4732201700", "4732237639", "4732251979", "4752090675", "4732190414", "4752120677", "4752104537", "3352806251", "4732232071", "4752051081", "143011472", "4732210771", "4752152242", "3227289996", "4751979927", "4751986635", "3325740278", "4752047753", "174828497", "4752037097", "4752024107", "4751985801", "4752085714", "2815909507", "4752050596", "3303573154", "4747920783", "4732159105", "4600205592", "4745045608", "4751992781", "4751939571", "4751940869", "4751903385", "1052491386", "4751624481", "4732098902", "4732099640", "4751881155", "28509248", "4731863258", "4685247211", "4732121785", "4751961328", "4732072046", "4751884877", "4731122946", "4751952556", "266013989", "4732111051", "4751938216", "4751939776", "3152156130", "4751889394", "4732085371", "4732040552", "4710544115", "4751886742", "4751882482", "4751794643", "160092652", "4751805017", "4731949218", "4751775203", "4751735777", "4732003316", "4732046119", "586247255", "4751786542", "4751720717", "4751785516", "4731991394", "4751670609", "4746416301", "4751638697", "21597029", "4751374035", "4731880500", "4751642775", "4717690746", "4732014991", "4751743702", "4751594235", "4731953414", "4751699968", "4289465616", "4751626157", "4739381187", "23636780", "4741468762", "248125787", "442364623", "4731916958", "4751546195", "2906684180", "4731905894", "3254976727", "3300370683", "4731689778", "4731943273", "4449088699", "4731873860", "4731907748", "244203924", "4630955066", "4731804456", "4731595394", "4751462661", "4751541797", "2820447379", "308838198", "4731882986", "4731797832", "4751496017", "4731907285", "4731866036", "4731853502", "4751545522", "2463820162", "3106684690", "4751424627", "4751467763", "4731766164", "57476449", "4731841526", "4751358574", "4731837440", "3375379929", "4751389461", "3986926098", "70995279", "4751364135", "1206780888", "4692063194", "153291514", "4731746520", "4751354979", "4731722832", "4660740329", "67680999", "2272765093", "4731306703", "4731775586", "4731702432", "4731826039", "18926788", "4731771902", "4731827713", "274977323", "4731688782", "1021198724", "223486446", "4751375962", "4751297957", "4731673512", "4751098840", "3311894144", "4731672792", "4731670452", "4751261728", "4751246867", "4731726170", "4751244209", "4731647598", "4746862817", "3399594370", "4731764437", "4745966801", "275147184", "4751164953", "3776531656", "4722245167", "4731619632", "3302669402", "4751252416", "4747304417", "4751133513", "3268378970", "433823693", "4731722713", "4731687842", "4751100567", "117270419", "4751105729", "4731647204", "893109378", "4751165062", "4594271483", "15011455", "4731562452", "4750725448", "875085230", "4731562272", "3809398397", "44502040", "4707044837", "4731688213", "4731560208", "19417042", "18324720", "4751109136", "45764104", "4751039255", "4750836376", "4751066416", "4751089426", "99583473", "4219121", "4751071822", "4751083696", "4746725487", "143593213", "1115595264", "4731526092", "4731657133", "4731656341", "4731526278", "4746845715", "4731644071", "4731359832", "4751048356", "4731644119", "197600014", "4731643153", "4750772235", "4750950383", "4731481050", "2207915253", "17807401", "4750868481", "4731559616", "4750987708", "4750962796", "4731472033", "4731400398", "4731546632", "4750848801", "4701024624", "383210925", "4731571279", "4690957999", "4729757898", "4501094052", "4750809081", "4731460003", "4750678275", "3276828428", "4731310452", "4731507536", "4731556183", "4731505400", "4731498788", "135875719", "4731497264", "4750757903", "4731474542", "4750699017", "4562031016", "4731482414", "4750705275", "4750802734", "4731038948", "558817814", "389656928", "4731345846", "4490575762", "274615625", "4750655835", "4750787956", "4750713658", "2319024469", "22216521", "737113322", "247635761", "4731450073", "266914565", "1672089913", "4731434660", "4731328812", "4750618523", "4711517119", "4731425354", "4729734445", "4750630463", "20859500", "4750544415", "3054398590", "4750568122", "4731311370", "4750550835", "4731299538", "4750575443", "2932909706", "329271512", "3644530876", "170550380", "4750557083", "112446484", "4748159314", "4750352187", "4750610788", "4750517237", "4731121212", "4639631713", "4750578796", "4377260537", "4750567048", "4745883399", "4750416627", "4731267612", "69928260", "4195911076", "4731255012", "362583409", "4750470089", "2784083059", "4739984956", "4731380953", "25480632", "4731333920", "4731195666", "4731333434", "4731306218", "4750383975", "4731265670", "4750438001", "4731333499", "3615439933", "4750474114", "4724086992", "4750409129", "4731218282", "4750356183", "4750438744", "4750350201", "4745029703", "1637431452", "1850069564", "2261214462", "4750127656", "4750304001", "4750430218", "3397950497", "4731325075", "4750411828", "2352400368", "4750286817", "321230631", "4726433534", "4750270755", "3168017048", "4731173958", "480828210", "4750245585", "4750368016", "4731172392", "3026420343", "4731168192", "4750228335", "4750346956", "4750271147", "4750011629", "4750316608", "4750176333", "4750204941", "4731217520", "4750250962", "4750205375", "34821791", "4731120378", "4731126552", "4750174467", "4750255936", "4731257293", "4727356054", "4727653333", "4750116021", "4731229873", "20662593", "4546458634", "4750224928", "4750171271", "835995246", "1972916413", "4329350479", "268757999", "4731035245", "4714475062", "4750046919", "4750109657", "4750063175", "4749991793", "4750070849", "4719553997", "278843460", "4731181453", "4750022961", "4750011857", "4750044359", "4750008989", "4750034429", "4731011922", "4731001494", "64123936", "3965008401", "4725221328", "4750055776", "4749905055", "4750000769", "22521719", "4730999550", "1030800912", "4749898341", "37488847", "4749946427", "3003686526", "4731060014", "4730920722", "348241769", "364839265", "4730974272", "4730968758", "1239709267", "3897389234", "3365079807", "4731085693", "4731084697", "4744382843", "250253280", "4749857321", "3011256515", "4749822489", "4731021578", "4730997812", "4636164914", "1240362440", "4730962339", "285920000", "4730926572", "4749839902", "3657564679", "2940165199", "4749725601", "4749709035", "4749753335", "118555341", "4731018433", "21123955", "2360683524", "4749659835", "4749772636", "4730947058", "2812884586", "4749641955", "4749673829", "4730940722", "635833627", "4749725068", "4749610041", "980439511", "309190582", "316752268", "4749670108", "15469770", "4605593369", "4749601299", "3018810447", "4749711322", "325816369", "4749623237", "4749570315", "4018463954", "4749673054", "4746150087", "88218118", "4730945713", "4730794644", "4730935711", "4730925577", "2690189900", "4730922373", "4730793882", "73513585", "4749472395", "4749558269", "2488944606", "1702403334", "4730768526", "1393786470", "4730843720", "4730886163", "4730756772", "4749097637", "4749520972", "3006285209", "4749409293", "4730832734", "4749414441", "4730827376", "4723338968", "4519905196", "4730724732", "4749478342", "4730859073", "4749503620", "4730863921", "4730822840", "4749337419", "351249935", "4749404789", "4749442463", "4730812238", "4749343103", "4749291315", "4749422279", "4730853199", "4749461254", "4749491716", "4749332541", "4730706492", "4730782952", "2175660106", "39024946", "17699541", "4730820259", "3243688356", "4749359116", "4749283251", "145463487", "445774868", "4730668002", "4710597793", "3409590111", "4749372682", "4749356356", "4749286907", "700527289", "2586997621", "124167511", "4730730554", "4749321202", "4730547373", "4730724374", "4730708846", "4749217637", "4749197043", "4749294418", "4730637672", "4730701574", "4730620878", "30295474", "369315204", "4749136755", "4749043181", "16052890", "4730656442", "399894063", "4748968643", "4730605002", "4502199024", "4749228112", "4749103335", "1292893230", "4749142151", "4730716729", "1244733097", "43290183", "2426749698", "4720797381", "4749076635", "4730695849", "4748485401", "4749092176", "105638773", "4730692093", "4749040575", "102198607", "4749119242", "4749095615", "4749089729", "4749022581", "4749072617", "2629048569", "2335547430", "4749011433", "3983341332", "4749017303", "2774523890", "4689819822", "4730619560", "4748982861", "4749100666", "4748941533", "4749013493", "24085605", "4749044837", "4748684057", "4749073222", "4730528532", "4749010637", "14405122", "4730646919", "4748965397", "4730513706", "4730646133", "4730574854", "4748935653", "4748769081", "4748875173", "4730637673", "4730502852", "4726111211", "248973173", "4748910975", "4730609899", "4746392957", "4730620465", "2157467090", "2382520652", "4748880195", "4513656736", "4730548538", "3305569479", "4748996302", "4277510614", "4730455932", "4748984536", "4748968702", "4748894117", "4748927176", "4748939608", "4539374740", "2930015934", "3666417258", "4726632834", "90732175", "1918006934", "292557700", "4748342421", "4748788053", "4748907982", "4730431422", "4748830403", "4748329887", "4748836846", "4730343762", "4748769381", "1683818635", "4455959842", "4748803943", "4729822464", "4748724081", "4748840542", "4748727093", "4748764349", "4748830636", "4748674995", "3328082697", "4730356092", "2154591030", "4476879455", "4594633882", "4748718527", "4730503339", "4748716457", "88667157", "4730388852", "4748706815", "2863801423", "4748640243", "2785393323", "4730506753", "252010664", "4703925504", "4748745922", "4730364932", "4730453497", "4252071", "4748666237", "4748681368", "4730440034", "4726014377", "4748610387", "4748719516", "4748586555", "2704809247", "4748643761", "4730359933", "4748491097", "4748628677", "4730436452", "4748604255", "4748642909", "4730342100", "4730433314", "3293897352", "4730418314", "4748602583", "4748613809", "4733290216", "4730470645", "4748435907", "4748684338", "4748618975", "35203319", "4748588807", "4748657782", "3104299214", "3874370114", "14565233", "4730436211", "4730288358", "3160191690", "4748488487", "4730372210", "4748533697", "857212382", "518519886", "4748573314", "4748510243", "4748471115", "772743001", "4745330841", "4730363786", "4748587576", "4747813101", "4730409133", "4730285892", "4748541622", "4730270472", "4421374635", "4748553160", "4748429301", "4748549722", "4748419701", "3435833651", "4748334393", "18964783", "4748522782", "4748449649", "2168731911", "4748447477", "78852575", "4112920107", "110528831", "4748499382", "4748480674", "4730228940", "4748439155", "4748480668", "4697978804", "4748329395", "4748481736", "4748352868", "4748405837", "4748330397", "3038216569", "470314427", "4748375609", "1357719684", "4730189292", "178522057", "4730219472", "1609392570", "4748332937", "4748269707", "355554030", "4748387854", "4726736244", "360461731", "4748370202", "4748237181", "4748303663", "4748356402", "4748308157", "4748270315", "4748250819", "4748295323", "4748354842", "4730213114", "4748278535", "4730259487", "4748334286", "1360466065", "229711678", "4299563237", "4748206767", "2889713085", "4748212755", "4748322082", "4748304520", "4748258357", "4748302066", "4748255381", "2962339996", "4748292436", "4748217629", "4748192657", "4748284336", "4730133144", "4477890079", "4748241076", "4748156691", "4730271853", "1239759463", "4748227918", "4748253622", "4748136153", "276468837", "4748099091", "4748178467", "4748231782", "223224031", "4748203336", "4748084595", "4748200096", "4730238883", "4748135477", "4748196466", "4748118695", "4748193916", "4509273434", "4748108813", "4692934982", "4729851224", "780448", "4748145340", "4747987169", "4647715463", "4748059823", "4746773555", "4748043023", "4748050775", "4748017965", "276543768", "4747990635", "4748085034", "4748008395", "4747978035", "4748101480", "4748089942", "4748060417", "4748020895", "4748001869", "4748069290", "4748031035", "58693294", "328652492", "4748085316", "2911205230", "2746535473", "4748003297", "14193852", "4726620954", "313890019", "4748033446", "4747947201", "488136957", "4747998053", "4747938801", "4747995617", "4747979075", "4747931553", "4747938315", "4387286117", "4747925901", "4747926321", "4747943195", "4747910559", "3004117607", "4747845975", "4747912659", "4747998256", "4747954475", "4747952261", "4747977160", "4509813143", "4737007293", "4747927595", "37207781", "4747857033", "4747928435", "4747873521", "4730092454", "2531878283", "4747873029", "4747945246", "4747854567", "4747900523", "4730138683", "4747959202", "4747921948", "4747904609", "3049468882", "4747843941", "3051209724", "4747904074", "4747840497", "4747861397", "4747885259", "4747669157", "4747878125", "4747884574", "4747869449", "4747795599", "1239433693", "4747839449", "4747799171", "4736906367", "4747781361", "4368442256", "4747808841", "4729971912", "4747902466", "4729968768", "81681377", "16000162", "4747900396", "4730074465", "4747697235", "4747770675", "4747875118", "4747723881", "172443768", "4747742421", "4747628416", "4747753415", "16739547", "586996170", "4747714461", "4747642359", "65972070", "4729938288", "4747806922", "4747756109", "3097407317", "4747708887", "4730021899", "4747796254", "2861580475", "4747727945", "4747797772", "4747674771", "1924052874", "64181646", "3372932129", "3164759800", "4747705433", "4743464733", "4726729223", "4747550007", "4747673777", "4747692167", "2370904712", "3873598893", "4729983380", "4714488513", "3238914833", "4747581825", "4729866468", "4747647556", "4729972754", "4747640747", "4747705336", "4747643746", "4730013313", "4729991773", "4747605418", "4729953206", "4747153635", "4747630763", "4729943018", "4729839090", "4747558155", "4747568499", "4747539813", "4747670314", "4747532453", "4747649254", "4747501875", "4747640782", "4747515351", "4747526259", "4747616122", "4739081027", "4747605508", "3246234073", "4729776600", "4729931311", "4209933273", "4746446416", "4747446795", "4747494615", "4747517543", "4729964839", "4747472127", "4747540097", "133831777", "4747475727", "4729958473", "4747500881", "4747425389", "4747464207", "4747577056", "4747565668", "4747488131", "4747405539", "4747451265", "29358239", "4747551376", "31332452", "51901080", "4747461149", "4729792950", "4747432601", "3058387989", "4747420359", "4747469830", "4747529914", "4747418595", "4747521622", "4747467497", "4747383861", "4747494388", "206369653", "4747461089", "4747362855", "4747521034", "4747422287", "4747445363", "4747425155", "4747381701", "4747368501", "4747495876", "2817779112", "4729892953", "4747359975", "4747380887", "4747456996", "4747391003", "4747095015", "4747341509", "2939677631", "4747394315", "4729844600", "4747400158", "4747376621", "92929106", "4747310061", "1309781646", "4729822130", "4747367033", "4747316487", "4747307955", "389571646", "4747321193", "4747295127", "4747302039", "4747249707", "4747395934", "4747406128", "4747278633", "92874530", "4747283313", "4179830420", "4729813034", "128739361", "4729808054", "4747295183", "480621702", "4747292063", "4747357936", "4747358218", "4747239305", "4746887555", "4747348822", "4747231947", "25434666", "4747197681", "3248943714", "2259877416", "4747306162", "4746134416", "4747343134", "4729831195", "4747226841", "4744044917", "863558124", "4747266701", "4747207719", "337931210", "626624155", "4729684368", "4747291402", "4746825813", "4747192101", "4747158855", "4706761277", "4747278028", "2471064625", "4747158921", "4747216703", "204821265", "5638152", "4747196501", "4745926841", "4747137213", "4747115907", "3020255202", "613684183", "4705654681", "8447002", "4747186643", "4729644300", "4729755397", "4747101663", "3400412128", "4747166663", "20685688", "4747163717", "4729724060", "4747101267", "4729567152", "4747168577", "4747136657", "4747097559", "4729721708", "524625875", "4747104135", "4747214128", "4747174642", "4729713572", "4747178002", "4747077633", "4729593258", "4747141882", "4747098101", "4747161274", "4747129960", "3422710251", "4729686260", "546687689", "4747106254", "4747095262", "4746989175", "4746998697", "4746999063", "4747129474", "4747095514", "65258793", "4729715473", "4747026083", "4729672514", "4726156577", "4747079332", "50272989", "4747018541", "200920968", "4747084822", "4718658199", "4747010542", "4747005437", "4729657453", "4729641182", "4746950962", "4729642832", "4746903160", "4747007908", "4746930681", "4746956537", "4746927135", "4747015888", "4746969857", "4747030942", "4510882934", "4746840213", "4744919656", "4746898065", "4746870699", "4729607653", "4729624832", "3224923484", "4040719246", "4746882375", "4746819561", "4729503072", "4746935249", "461193740", "4746982714", "4746984382", "4746839122", "4729518852", "4746917542", "4746960568", "4746957106", "4746957262", "4746849845", "4746819099", "4746878303", "4746817707", "875447076", "4729498878", "4746766233", "4729634497", "4746798861", "4746853522", "54510411", "4746918136", "4746780327", "4746879298", "4746839849", "3204966086", "4746790305", "4746791535", "563994796", "4607529857", "4746897100", "4746816683", "4729564256", "4746888856", "4746852634", "720385080", "183286981", "1623289310", "4746878176", "4746861982", "34056116", "4729575679", "1198123944", "34493062", "4746838852", "4729451628", "4746780317", "4746674483", "4729542248", "4746824488", "4746758087", "4746709131", "53853197", "4746708159", "4746761975", "232948013", "4746745276", "4746739157", "4746819016", "4746664539", "4746796336", "4729447698", "4746754109", "4746741161", "4746210376", "4745335102", "31403779", "34256060", "4746678579", "4746788092", "4746750124", "327215278", "4746694337", "1327763390", "4746635835"], "next_cursor": 1522822225442596388, "next_cursor_str": "1522822225442596388", "previous_cursor": 0, "previous_cursor_str": "0"}
View
1 testdata/get_followers_0.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_followers_1.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friend_ids_0.json
@@ -0,0 +1 @@
+{"next_cursor_str": "1417903878302254556", "next_cursor": 1417903878302254556, "previous_cursor": 0, "previous_cursor_str": "0", "ids": [174716364, 4229043317, 584141481, 36244707, 34643610, 7383122, 2307068066, 390842981, 345894976, 2798004630, 193596810, 16474986, 82431632, 20021712, 2967867342, 1345863144, 525249617, 80797182, 365459573, 1511949548, 21014078, 227013289, 1532543576, 1481054280, 16280979, 25453101, 70595671, 255517988, 596841936, 64523032, 15714370, 1432081760, 45869342, 778250695, 23008743, 915719034, 16467789, 39263564, 3346616554, 333442035, 36918513, 15822969, 2469857444, 826052299, 3892175716, 1563895639, 3079401397, 3092079436, 17155587, 98962695, 2336216776, 41565136, 832057747, 482179923, 3987827837, 14115172, 125423182, 123289807, 2383284786, 4527950052, 1485600931, 2352084432, 22508206, 126151675, 38705128, 433247367, 1079443074, 2338105459, 118935599, 28599820, 23295958, 2284018490, 1232995548, 184385983, 357661916, 877260416, 949232324, 198434663, 416809908, 20065936, 307855987, 3182047141, 247517043, 4427416695, 4426698797, 75091114, 32878430, 4273147873, 2402197177, 1543056944, 47605173, 2560289532, 39013572, 2866046769, 126037037, 17402120, 262352377, 2358407005, 596706060, 2885725097, 600580312, 466899807, 112029154, 3035489583, 3420906832, 294225981, 2776016907, 43602705, 3041074949, 75641903, 15428612, 1666099686, 198352854, 216100700, 60843563, 59489293, 18486446, 385883807, 89254683, 116707941, 84028963, 2566824948, 57048551, 19351317, 219957717, 3877035493, 3812320515, 3540832456, 3377353389, 3306463672, 3306307028, 3252248568, 3240557112, 3105512481, 3036145773, 2954253258, 2786392888, 2761823098, 2690520336, 2536509241, 2425339574, 2339890328, 2331512354, 2248966884, 2192183084, 2186834270, 2168408323, 1926787008, 1897471286, 1465738609, 1427386350, 1414052431, 1377573938, 1351957970, 1327886413, 1172385756, 1155945612, 1150900106, 1035823255, 1014668238, 1000540062, 996120571, 995794087, 968080993, 963957084, 931130899, 925035698, 858718512, 802185074, 714240331, 613455739, 608610375, 599849374, 561887188, 498700046, 469171952, 454672754, 433794960, 422355017, 415989428, 415458548, 412254113, 395868327, 386076684, 374811299, 374675413, 374413553, 374052497, 371313804, 359573726, 358903005, 355696940, 351971672, 350579415, 326854066, 311240703, 302102486, 289069118, 272285827, 264806091, 238096056, 237243990, 235785221, 229114172, 223424972, 213359082, 200217502, 193653724, 183454227, 177458594, 175104981, 157965754, 138375644, 136968204, 114543805, 113960138, 107161643, 95981793, 80811754, 80122680, 75467271, 74424673, 71091193, 64610462, 62029673, 58517669, 54903471, 51207702, 50089463, 41146281, 39909343, 38839573, 34865826, 33223159, 31397776, 31387025, 29719275, 29708270, 26843983, 27004894, 24444891, 23833491, 22156161, 21864336, 18585097, 19491190, 18114111, 15630662, 3737281, 28072047, 22538725, 2906956060, 372575989, 72345536, 3350493279, 156905483, 12475072, 3503442196, 19568034, 22410909, 2603080159, 82355306, 2888034164, 452352757, 3606504676, 15414356, 76849994, 427354566, 51031558, 28563096, 34863269, 525487471, 119521385, 4316815947, 515511443, 14223960, 267788953, 17617472, 3053663748, 3248910245, 34306568, 415823496, 1524749774, 153280848, 235348644, 15506669, 234136347, 733322844, 14160917, 33287494, 990305612, 1915177471, 1563503360, 3585167052, 458046334, 2613246072, 961755354, 2266035060, 946894280, 4220691364, 4071214642, 512407105, 262471388, 19670226, 373584957, 15920243, 4257979872, 14269768, 97738079, 2538349783, 58211781, 3412867557, 284718102, 20224969, 21826316, 15670644, 4119741, 22429979, 1344603788, 4009671023, 41660626, 36508851, 3910893854, 4010449719, 65176836, 14545372, 2980058889, 211177035, 757303975, 14817150, 18393196, 15692520, 1209887330, 58812628, 637196658, 372018022, 3942597494, 200711723, 278093318, 21119658, 39446462, 21982720, 14511951, 3676292235, 2927107460, 4071873193, 394060363, 54306976, 4129078452, 17663776, 140252240, 82659154, 63697051, 3834939257, 3621791535, 1541797452, 1643475626, 1012864226, 594015697, 133929829, 194714715, 2489508619, 189763764, 8752222, 3074259883, 1138981327, 318549214, 82544380, 29735775, 14679233, 4040207472, 26682348, 868389662, 4010618585, 3245142196, 3980516359, 240471848, 2382609979, 112793441, 580942452, 15542781, 46190611, 240184267, 44903491, 2821370524, 3257162537, 1497210092, 1353260683, 21059255, 26028448, 2455204525, 377206475, 7900962, 15029770, 559028753, 3907577966, 1252117579, 3617313256, 313743136, 2198108859, 135905236, 131552659, 25856281, 1360417214, 67622527, 216633730, 97506025, 15376200, 65154490, 345232857, 272491055, 343267635, 92027622, 2192878808, 2478738590, 233387844, 3317341816, 17448192, 401281561, 3929578042, 3937345408, 18639452, 22095964, 246788299, 14552366, 360654151, 2281125961, 62515016, 835680883, 313525912, 3982969096, 24277551, 2747973655, 3167182492, 70784623, 207635400, 28411360, 478849885, 1055281526, 3356531254, 3266848870, 3958051175, 15359205, 3310428789, 111778335, 256277422, 85032215, 249466118, 1111063441, 633980404, 12604082, 17505249, 17043428, 344395626, 80655195, 1003857624, 1509936680, 165731767, 2178901645, 3230052541, 378703672, 1268764082, 14585409, 14752312, 257893956, 26609246, 25924436, 112236745, 3901783420, 16866617, 16951956, 77570910, 15409625, 16944165, 21266560, 2927266003, 90694228, 68449573, 403727931, 404421890, 68707961, 14290018, 166772969, 399004430, 307589282, 607099840, 17455195, 131301936, 8835652, 33935000, 515034648, 2916305152, 3675973095, 284638893, 3114313702, 2971787403, 2342323674, 4906211, 3406043239, 1390255892, 591160609, 2370597494, 1430901781, 177336591, 173216568, 246867553, 219070649, 3310348271, 3364515135, 214502417, 246615051, 21099301, 510123282, 2526706224, 2231927636, 2201024219, 3352886781, 2821132277, 330797853, 3675995734, 240061941, 429946250, 570705602, 169661494, 2545171004, 3184574881, 32929377, 1482771301, 3583264572, 3541994172, 45155495, 2493733837, 488810546, 21581820, 14607059, 2980100441, 36393171, 163036182, 81951477, 26396117, 18424289, 2514293430, 1019836922, 3293886549, 110396781, 221834911, 2813202439, 50446226, 19758375, 370758768, 383435496, 14676835, 24831757, 2180408564, 3350807423, 233257967, 16880858, 23911915, 448434781, 166267705, 65640999, 17774100, 1135983726, 621522194, 3221765772, 1198690393, 3472808781, 61018648, 27895727, 257922239, 3458195901, 15754281, 2467791, 34379755, 15208768, 861455580, 3243356006, 3433379001, 21634600, 1282121312, 1369144951, 52494838, 52499707, 379824075, 292650377, 2830496875, 33661289, 14768193, 2212664486, 514033223, 26267605, 298665200, 1365252164, 148962007, 1475775084, 66385865, 590060558, 55633685, 3241266563, 3169051790, 124293790, 14264161, 476387407, 2453452381, 2395614938, 14850576, 14445325, 4488, 2780477770, 20675211, 441134864, 196462653, 54654212, 2285771029, 1665877224, 718449524, 2680763216, 47374474, 2717089861, 518143842, 3021697442, 45420135, 135990436, 41127809, 229999442, 2437502443, 16148151, 417739798, 861893730, 230240898, 1040127511, 1380385320, 2600187422, 3243668999, 845066312, 17200105, 1365460075, 961201465, 610219779, 113689722, 357551176, 417960385, 637467612, 796721929, 61524685, 869416448, 839536712, 764372598, 1020108763, 258960686, 579300579, 1710096061, 2372308056, 20715242, 2492541432, 2431369694, 99000872, 304550287, 15076489, 2835899107, 620020696, 49574494, 2408844830, 512905341, 49534192, 299639883, 2941125060, 14145626, 311086886, 21512767, 1523794302, 324956327, 18049298, 23195549, 11179192, 340795517, 874798920, 69186722, 979311691, 2978541712, 1219366122, 3301420004, 14295657, 244162778, 2805687654, 1143905359, 19039279, 183247422, 14994676, 3193173610, 19086064, 15914986, 1106610996, 552661784, 179163585, 480630176, 124528783, 1170164516, 23826345, 134918286, 1546783842, 127705651, 76520255, 375760645, 17596069, 50329013, 243314723, 18139220, 2615319734, 249724351, 15737554, 1259839165, 345615190, 166028524, 1665386791, 275391646, 245384422, 308078682, 3304470901, 25658504, 103085965, 3018968748, 14468410, 148567358, 3395561619, 111404710, 1347581462, 3073871212, 17530448, 259953357, 610388842, 3373321, 15852132, 28883874, 35088920, 272633065, 284542523, 435404014, 2937575623, 3244931611, 203609543, 3219632226, 17175139, 3333394869, 456930921, 3065348142, 35382548, 278652369, 152877900, 74903828, 96602314, 56179493, 26377478, 25168865, 3157927513, 15466988, 285125151, 2746648903, 3362148580, 3288353887, 785808991, 456403811, 2645532414, 3307377695, 42634830, 34946754, 139830358, 42857269, 1858554535, 24657506, 48419856, 14031032, 14116915, 198020721, 13759792, 770066, 1701631, 3153328297, 780993961, 2417085025, 22032817, 2978608072, 2866454409, 1357254643, 1656174793, 352644923, 2903966777, 372760774, 299505155, 25170613, 3226238609, 21916640, 22205944, 756762998, 21145852, 1490861354, 80893052, 1979558624, 3345956002, 3293153877, 313813951, 87205530, 14695043, 2284287030, 1408308162, 1732689133, 3256190911, 829323654, 17372204, 618351213, 364062266, 3342152225, 15218212, 17463028, 2218734840, 630703637, 2152614386, 2859487678, 18104730, 1433469289, 18040395, 463428936, 397694029, 637357269, 2738735742, 36584174, 728305885, 714296275, 163610075, 413634848, 523676772, 265484413, 225096128, 222490156, 36322086, 998640920, 21277118, 3232924232, 3251112680, 608310777, 2949547815, 52452323, 2347560146, 3016964678, 15824288, 246309084, 2547533580, 341046775, 42628521, 3309136432, 14188527, 305913715, 16683885, 293941423, 49885057, 284589209, 65478524, 32269230, 840506047, 3239114702, 2615603432, 345454327, 36336107, 3108671256, 3091552272, 274866611, 394134791, 18244419, 153500044, 1465842356, 586, 7692762, 856432010, 12329252, 18737731, 22546003, 3300703462, 2841359663, 82398383, 2617471956, 138681231, 2690187182, 885506959, 3119449389, 299988190, 3308352436, 2899780530, 887221, 2182516859, 2153551561, 165862343, 14614981, 24950791, 3293347210, 3309662224, 1296292616, 1222705992, 584162442, 217478823, 2900242168, 779049289, 840233028, 3257262027, 13565472, 2675109888, 30013010, 168754092, 14526877, 20698435, 2282667775, 835858886, 570484435, 2223451512, 1722403496, 6476742, 636586551, 17851886, 405157471, 15604078, 148736206, 77456101, 74536754, 47880934, 599515941, 2931131799, 36163152, 3044665445, 3572441, 2937632239, 15481158, 25171326, 47939390, 15808647, 15249166, 16287007, 1398449161, 84652865, 3151633831, 22271373, 15432750, 23971393, 273223527, 2149815847, 2384173392, 20056392, 128544009, 72255032, 39279027, 313525999, 3221779009, 17714082, 16782604, 1270746139, 3148356377, 3195834151, 1536791610, 30791070, 109317659, 538489875, 2609106255, 41582030, 18691048, 89123936, 43642659, 14124899, 545804017, 17238395, 22840995, 138830247, 537776452, 325803700, 2448248076, 2877214085, 266185089, 3187026492, 23596644, 23408887, 20172250, 102420852, 499917546, 92030522, 1394917244, 1556361283, 151689073, 557976011, 795008808, 566052541, 115865427, 569643970, 329989597, 27963917, 31227419, 21918047, 16132284, 25396695, 188045648, 3149889709, 1730414958, 133947893, 3172756859, 3186605629, 28592419, 465255113, 379921752, 37280980, 239297332, 28049003, 12523012, 202890424, 605674944, 422105720, 16517679, 500704345, 60939512, 1304924886, 278648035, 3160470333, 216776631, 2151820370, 2339685247, 615471114, 188545143, 814589791, 1260091734, 2752775016, 2868169873, 39692025, 3146567046, 20530177, 231649709, 2815076773, 14774366, 2480569345, 2828369140, 271636708, 104916123, 15529670, 14638851, 15081378, 15774048, 16002085, 16596200, 17179368, 18536997, 18637420, 21576334, 21705181, 22021978, 22128352, 23948464, 25030848, 25298569, 25960714, 30971909, 40874240, 43792125, 51002583, 53416347, 66533920, 80802900, 102934369, 135060958, 138108708, 162869238, 172081908, 191849753, 221707278, 276713213, 363997684, 566688127, 1183947482, 37861434, 18269124, 1200738858, 25348485, 1582341876, 1228526078, 317700208, 46770535, 2885031082, 51768731, 22481472, 2769059108, 2680336646, 171198994, 33323849, 14247155, 2882391828, 2489298668, 3148813916, 10959642, 14903013, 113450686, 1267082576, 3121530274, 492545912, 1315298502, 351127535, 251796912, 404351974, 38135837, 1634066785, 2968989617, 1071777608, 616279187, 123532694, 109890809, 17681505, 16721061, 130906331, 2182641, 575905433, 93581874, 1187444389, 1606877971, 27688281, 16957321, 2856042501, 378778750, 1615577521, 431627744, 197108944, 1551856777, 62648354, 16785742, 11696382, 2732089057, 12494842, 3107878302, 1000968684, 538475269, 84599034, 2176557343, 573965125, 14571751, 2685092670, 364762860, 714864200, 17621767, 6825792, 22458458, 46335511, 1915336519, 16088941, 1278123535, 233473695, 376790816, 87215923, 785683, 217430520, 1444424754, 58514805, 3035726218, 6385432, 14897303, 20508720, 80617430, 167518667, 14477723, 432895323, 3029021253, 562585357, 25889033, 32078497, 1357252880, 28278535, 2952910735, 139112983, 235214894, 2865812463, 44776990, 17599655, 5045181, 6780932, 2445809510, 2927758254, 2842655435, 2296984584, 1694401938, 21165339, 807735240, 39108656, 575660051, 3092388093, 2400443496, 57076191, 155748301, 13209362, 197035403, 14325025, 3063529148, 2485531140, 1906951, 10018072, 2562629773, 222467178, 29752603, 25165002, 947986136, 3014224345, 12076002, 16396118, 2371270375, 2977964520, 60642052, 571202103, 80069319, 140074826, 52129399, 126628622, 21965626, 12755092, 2314467259, 34424798, 582909932, 3026704559, 258923616, 2030711, 27212264, 2392489904, 16725824, 2778827209, 3058016604, 342100419, 18014373, 122387909, 2382117350, 16892481, 386631799, 2835337844, 127739478, 16477936, 187516575, 17845620, 2600525376, 101754147, 84684955, 14564868, 55694209, 33433709, 751452180, 16216975, 351200120, 2575159890, 29100243, 661403, 478326622, 92601300, 831880992, 1269364218, 386413191, 526600858, 60747383, 15612654, 456253373, 978176486, 17687405, 132399660, 22144306, 19185921, 85193539, 18137749, 27025052, 1926360631, 105207999, 202787004, 174397217, 110504902, 15220768, 27054843, 111954709, 2496916592, 16109926, 20066416, 2991711108, 18259909, 81650351, 85252011, 763450351, 2770265776, 139823781, 85732762, 5360012, 2777170478, 2247473304, 620142261, 2983295300, 558739638, 259725229, 19968025, 2826874038, 3032074419, 126696497, 135158292, 3047677737, 19983827, 997629601, 14464767, 25375092, 9207632, 14043142, 20020021, 2846058853, 115615024, 2703332132, 1583321544, 271483634, 200918256, 2965129341, 131227689, 16681111, 2845735816, 612644714, 2899672599, 1087860428, 36184638, 610659001, 24461387, 43379364, 2980412572, 1483376342, 2326120952, 755861322, 36959762, 537541336, 910873332, 55216586, 337819489, 2553927774, 2032411, 82861206, 631401764, 23567622, 28888320, 7140202, 2160344682, 16220555, 1126749103, 13967302, 21248379, 552582271, 7782442, 19819769, 792378206, 2338365339, 2962973505, 21484068, 34126441, 1898493691, 746032117, 476193064, 14728515, 1919257285, 19137592, 47327436, 15363133, 311080265, 944203531, 54216622, 96072665, 2885138213, 1285630338, 87057908, 19734832, 3003481647, 2999377084, 171167972, 413355878, 321522551, 16548855, 959675203, 8790772, 2292182045, 20476151, 15421871, 301579605, 16339247, 454992440, 2550858595, 1429055587, 928481, 20651511, 19040598, 8034682, 135575282, 2789139782, 277219019, 2783583373, 50741143, 190669152, 2990470226, 513855040, 584359541, 2988116739, 18297407, 19358191, 171279007, 583869504, 132213553, 145613137, 1581896461, 6698022, 15865042, 13217612, 14481269, 101897322, 129653547, 28251153, 34781412, 2605497847, 1966256035, 243775607, 2770081590, 18700629, 74474794, 77092809, 64954941, 960727483, 26401477, 2566085594, 25892745, 5031151, 19255050, 31094727, 34632493, 30290980, 40028412, 22587230, 21364753, 19918988, 16619709, 19711765, 87474197, 589535421, 256722290, 462578542, 1950272508, 253270711, 205076166, 169698101, 1451773004, 581815681, 2192619314, 2966047517, 1639495106, 887906528, 459796949, 159955958, 20017825, 18276341, 396399850, 212304085, 594376322, 599632006, 596964216, 813560072, 34936539, 113739104, 18955413, 909529062, 103041418, 234947344, 119625403, 115210837, 403567128, 1294168843, 189253902, 203654782, 21495286, 2546261755, 2364189422, 2847023699, 516633812, 176036339, 18689183, 29795697, 34197266, 2862725633, 92326348, 33136420, 24381416, 581005340, 24545398, 73761305, 626861469, 381725263, 87420519, 379356101, 107823143, 473111750, 1481073828, 2815948320, 2911296698, 62724059, 2841020667, 28373693, 1327886654, 1843791936, 2759600352, 554508623, 17042078, 2820671119, 304356334, 314702715, 14493552, 55038953, 315302894, 16714443, 351915951, 296464173, 187972757, 19355829, 14606202, 1733419830, 42660183, 2894919132, 28098358, 66444507, 50219804, 117247636, 23031376, 43358159, 20380049, 29776689, 14868608, 29299946, 220044097, 424484966, 17947003, 2875097319, 1107261638, 165411483, 416699250, 78533960, 1125047372, 205193523, 47498699, 20726786, 93761004, 410600310, 49155241, 15349180, 1471250628, 1179455215, 2438273430, 2381931636, 22428439, 50488060, 388937036, 250844472, 1949282881, 394103606, 57932039, 49012699, 1494655406, 21339159, 2881924182, 16877374, 260929607, 23656337, 57656702, 52756637, 68482261, 17186905, 2202557258, 2283541350, 125190427, 16935292, 2821900992, 425265314, 112838571, 15367088, 2596218403, 248805395, 2806556857, 262317278, 520665133, 256754327, 18806838, 64786050, 16224705, 14186638, 17125603, 1617731504, 2778642937, 553757993, 284988279, 544773325, 710322776, 1203840834, 14949573, 67059584, 23112236, 259395895, 74801995, 2563919738, 313080999, 403608556, 2518212522, 440362326, 258909040, 2618403776, 35688200, 312314261, 274396558, 872252960, 204932888, 20481072, 2864318800, 16715240, 41186732, 55896443, 291531600, 16160638, 15129727, 252179335, 245983319, 15084970, 255861014, 71832238, 77920769, 30321661, 211939913, 1669352653, 2857371350, 2666750809, 529501969, 962148625, 302404672, 22497733, 2546868080, 2677634329, 2712674750, 851499338, 2755310156, 1530953521, 2808864594, 2305630168, 15345483, 67367405, 17833557, 305591096, 792600386, 61670139, 2564135360, 268429621, 2831587762, 865341985, 136018565, 2331421572, 2839228199, 61526252, 2733320850, 2577957372, 17040892, 2443847048, 15961122, 2435960576, 2651763620, 51318358, 1611472182, 840450648, 236916259, 83385252, 619642695, 44686344, 118245138, 600803781, 179459971, 57145894, 60101766, 77041903, 49717501, 40470694, 63646805, 1672787334, 88135655, 471741741, 60075391, 213228524, 25741919, 296198193, 399010753, 119116960, 2719719666, 363873688, 256495314, 121817564, 1406091554, 53120768, 2567863897, 1400360078, 2394236400, 358260333, 430989298, 56709645, 1362466212, 30581721, 2800252702, 16177628, 720238182, 298034812, 17169832, 17049669, 15837189, 22209567, 80859044, 1321619010, 27849650, 2238491365, 27225542, 14765585, 44046726, 52488565, 2826549302, 80593904, 1499335951, 17974312, 178023069, 385131056, 15704617, 31832948, 202313343, 1876367312, 57047586, 236838188, 2597498814, 327577091, 400989826, 2765974980, 24667140, 1545338485, 25518846, 2179994252, 62266883, 441421837, 1496344326, 1306041620, 174110843, 1288758828, 14437242, 16656631, 1115148079, 2325202999, 337886919, 614249266, 1081962504, 541158674, 2651646559, 1667662856, 193473814, 16007952, 16222904, 561676909, 1167842311, 1486002967, 1236601488, 810483626, 1547722903, 109779429, 1258398914, 277320871, 2801517637, 1735713398, 1289024803, 517661405, 1671813086, 168987151, 20941708, 40656806, 2628171535, 473444562, 387686234, 1491083406, 786625988, 63760115, 1966754972, 14056532, 18525154, 2677576862, 14304615, 381026831, 31338198, 2746492014, 1534066765, 1362354044, 28585356, 17688714, 1278161922, 20810335, 2693435648, 2372984767, 1707854317, 10536952, 139933597, 27315969, 16607603, 1418741706, 401775393, 591459541, 218944987, 1405385880, 2291338687, 55243095, 2469548600, 38475395, 2495438286, 2426410609, 413164975, 2354233526, 872355266, 77621538, 15762708, 39342600, 2232398257, 1182675871, 24595575, 81690879, 510592186, 331703548, 14974079, 20941733, 22041466, 148529707, 121544946, 19904685, 94127415, 72842277, 143923948, 17348942, 14517538, 88781425, 980582593, 38146999, 260928758, 917421961, 267328866, 912345692, 17666727, 48048888, 930781598, 15738974, 33248363, 41476394, 381347159, 48000256, 241964676, 25772065, 14636374, 135501248, 2740669634, 209693623, 764204616, 14045465, 1676457685, 2493331080, 2468202997, 2744765320, 2763178020, 83972205, 15838004, 37521145, 400372150, 246682858, 2659960540, 324599106, 138692729, 2415887156, 2584158559, 124236245, 16641343, 2577502560, 71461029, 23760311, 1546624514, 386517435, 164089883, 135461282, 241730145, 114604564, 245305204, 376380585, 36056115, 47747074, 381318163, 61676800, 22845527, 15521535, 20007097, 97327765, 27000730, 512417432, 88975905, 162436508, 535878400, 12382582, 143914733, 2596694492, 2294608897, 6440792, 17073225, 14090948, 17068692, 34308692, 18481981, 341908197, 394962139, 7768402, 69004966, 14849562, 216379128, 50058630, 22987082, 62952335, 1682157414, 1163807618, 207645432, 14780915, 23818581, 1630896181, 558927451, 24606710, 12803712, 463054608, 116106958, 11265832, 548443674, 2230397137, 40789325, 158503650, 14698682, 21787013, 26731417, 62414046, 2400320881, 1128482060, 32542903, 115182291, 236050146, 1251230114, 305870046, 2405020009, 1098802430, 16119366, 37547775, 215746958, 2308875504, 98685536, 606838476, 2450043698, 258684388, 18749271, 128242246, 48116802, 2444534352, 919373695, 44499804, 382937731, 35315865, 874176120, 2544227706, 19551341, 129988372, 2674556090, 84200893, 2472066191, 478669659, 2391664056, 176210560, 871991101, 186826724, 47526275, 17417452, 59029811, 11990942, 8132582, 297602297, 19178857, 193767233, 28947018, 132655244, 46690800, 12354252, 2165245332, 2590407811, 79449976, 2634423025, 290139804, 1076770202, 45268666, 84661546, 898124258, 50482530, 78647472, 505364106, 595568451, 51306445, 1439508630, 18629321, 537343182, 402199056, 31439308, 16539917, 17966102, 33388399, 22138134, 573415146, 1916506454, 764365266, 168537920, 19000697, 17519586, 2332700791, 1147895708, 30008429, 154652139, 950794590, 2333936658, 350457031, 595722578, 334972686, 93258847, 1953020821, 244539931, 126205656, 145312903, 22915052, 835787268, 1568977914, 16146755, 582277886, 2317168669, 2321375918, 32427374, 42956446, 741928796, 29342313, 2423058966, 1072993274, 245078181, 9022032, 17602811, 63783716, 79306105, 14765253, 2544359214, 615526730, 40303245, 2340460459, 50337556, 1445427806, 1891806212, 2499310819, 2586257250, 18963809, 24226431, 382689369, 10688432, 268432127, 28218405, 65688328, 83540809, 14089370, 15009111, 14347423, 41202241, 1198481, 72287350, 137455381, 67595257, 44104818, 14786823, 29992342, 37298915, 339398952, 1414376791, 280753615, 317256778, 13786802, 331803536, 19563103, 17040599, 59503113, 29442313, 91593332, 240087328, 76485784, 609308872, 1356942170, 95468980, 9636632, 25180871, 2378320579, 12759, 14699388, 71465523, 602065304, 2480079168, 2377815434, 1565908723, 49860614, 102807713, 87466533, 897558096, 33480171, 1492400330, 945310303, 745744310, 29913149, 126410058, 2548240340, 93187905, 19855459, 1892683062, 43696910, 14994194, 288778779, 543582293, 1573751760, 2168445745, 186183169, 2484050419, 245347370, 560900368, 266635682, 280237680, 2474749586, 32257623, 54993288, 37377034, 2349040381, 14721643, 407657538, 2417232973, 32527860, 343422277, 511065332, 2517988075, 165573426, 302186628, 1965716257, 55320310, 5907272, 18161631, 23694685, 978343472, 19767193, 83031278, 600031424, 286429276, 274754192, 41410667, 33351873, 526871737, 17030680, 17766403, 1017889500, 80076673, 390287262, 2266900200, 88454469, 480196886, 90674236, 30644410, 872955290, 16721621, 568825492, 330921167, 168786720, 13680362, 36670025, 2363506767, 16303076, 12917402, 14822252, 2571155086, 255323205, 815454817, 127877956, 25935803, 28250356, 1331578932, 87691397, 19034236, 292650956, 2492302700, 403929334, 15728098, 139909832, 18103385, 73385250, 578570016, 91237615, 54277378, 422217439, 41847726, 611743131, 7091082, 1399429982, 284694021, 2240082577, 2423795893, 15008449, 807242797, 900817166, 183962178, 129767622, 61354111, 16182261, 1561888556, 187518287, 1750241, 34877293, 2491917122, 156045092, 1598322511, 373490653, 2497242884, 94496307, 28982619, 137482815, 52461472, 15355482, 32768009, 33647344, 16191902, 51176565, 90725320, 262753143, 65987618, 544466882, 881469662, 776386459, 166555205, 14465327, 43412697, 438935496, 376939806, 2347382634, 14080346, 1137893880, 15830436, 84413113, 9078002, 13654792, 24794149, 234132941, 392460729, 14376279, 6604762, 463070295, 25564548, 1603425318, 2185084844, 31293166, 46934577, 17375281, 72783659, 20778387, 303651044, 68870274, 472499685, 22006902, 16952174, 15088481, 16799074, 18261865, 26521047, 36381021, 53186378, 949934436, 76478482, 21943064, 245587242, 207775224, 52521572, 426080991, 16978136, 14156567, 86455397, 1004714095, 2403031566, 108777062, 1002351378, 832197440, 770853422, 740719345, 470939544, 382758202, 106843613, 93986038, 92512982, 87759772, 68906469, 37866396, 23469247, 23115743, 21770611, 19123229, 17472945, 16870421, 16838443, 14365976, 14280661, 7748752, 14238165, 9684932, 6092342, 6044272, 5943622, 756475, 48473317, 2424440299, 137319969, 336624022, 55119016, 310293175, 20608711, 209213183, 612019015, 20961635, 11317392, 16227629, 773627940, 267038232, 259317559, 11313202, 733515391, 1638825054, 22526906, 1523709008, 861949171, 1714177862, 8221612, 14247309, 326665662, 882173190, 1337011070, 263129271, 14248784, 17371549, 2315729580, 112843330, 58684655, 17889970, 479816451, 109944769, 811268736, 2350315904, 1575918264, 132231788, 52998367, 363399297, 17874869, 17698600, 286703, 60087571, 590074258, 308607766, 590052098, 266917386, 563051945, 37759047, 277337146, 5870242, 1355927760, 64873265, 303955090, 19164415, 20763870, 40615771, 975002792, 2460145735, 16231706, 929989772, 601874499, 22965441, 54687857, 774357217, 247462443, 2281856286, 2460716006, 16531850, 1620127254, 1109372617, 21249970, 2411793456, 1388352121, 1910701892, 190367688, 791733534, 15522528, 28637222, 353066648, 120194754, 262077429, 318488345, 90982474, 71643557, 376819015, 74612541, 534530008, 79870762, 12044602, 1212433794, 14787561, 135486450, 370343276, 284544447, 16637461, 1184647243, 38496530, 7591572, 86537404, 14599476, 13784322, 16594832, 62575859, 14513611, 255797635, 119756545, 15764415, 2329384614, 26374751, 462334474, 15684633, 129924486, 101149691, 14352599, 108418043, 2373927878, 291486075, 22804909, 1979667199, 613822232, 42072417, 139920911, 18814041, 20755177, 602602937, 15023095, 17198424, 219877441, 103962290, 588470328, 40233111, 1549717748, 226662318, 110004599, 179546580, 165204211, 779349096, 1281581, 275031945, 23892094, 1542533869, 625619938, 14172171, 140893518, 2384027052, 31563791, 101233661, 119528386, 2437819891, 352823966, 27581606, 16340404, 368720556, 24820089, 111426091, 16303106, 262806854, 1305684487, 580147795, 59124142, 46106161, 367132858, 15112727, 2428998008, 970428030, 165896536, 66182591, 2314620908, 305468597, 17824498, 491638416, 25283401, 1322965681, 257261479, 1598644159, 130949218, 36525252, 18812587, 1220677470, 603162738, 111061417, 87617621, 84875272, 19026735, 125153534, 14315063, 1607352596, 1485895513, 110025208, 1363049263, 47678024, 3564041, 68974666, 297915370, 634702778, 912858588, 55592530, 17211476, 560448814, 2317837263, 84679163, 184716468, 2239721196, 237236374, 595331088, 71666839, 382444001, 2179057898, 184916555, 5389812, 278216951, 109571377, 16716425, 55289075, 192477353, 492492626, 820569, 16891507, 1102056919, 19002473, 327738223, 1102910605, 410464768, 153509545, 441389311, 1862198252, 236650677, 134687445, 118228045, 2426127924, 231136803, 1489065949, 15934978, 347982162, 1027408974, 322207364, 933838590, 394838158, 26605345, 132615314, 41806795, 23128315, 21332950, 58947113, 514564994, 14637342, 537964292, 802356409, 778882057, 1513925282, 793202, 41159876, 2188586045, 27941766, 165565949, 107217872, 30948908, 18778603, 220796129, 259302400, 61044673, 109028340, 48564118, 223416400, 1452248826, 15571577, 1725031976, 104150206, 202718818, 44562973, 214120461, 15906933, 338374151, 161075778, 155978068, 22518224, 15774741, 569681063, 1883512460, 1245104060, 27485087, 10340482, 35117516, 23044822, 465143733, 1537565070, 818439685, 249839335, 16299754, 507370446, 35982657, 52314673, 329969032, 217295265, 36722950, 15968617, 550055167, 52525358, 845978994, 17954340, 524561437, 166421185, 75123927, 1355953682, 23102969, 22014639, 188215959, 473466262, 219029005, 278163334, 227576375, 827977682, 51205716, 137742822, 21972198, 240932555, 40562015, 14190948, 18251446, 366602971, 21347530, 542004682, 56722075, 561070834, 43485656, 2364657150, 2290457413, 48023374, 1838597966, 2401493394, 872059213, 969293274, 265605249, 390967512, 175091719, 17454817, 287538756, 1201951519, 2264624702, 264787370, 2340558698, 717209689, 381677670, 331932733, 23636580, 47654924, 7342412, 19329527, 2779791, 175711277, 985757023, 2348907300, 14205258, 17018575, 74386780, 62259828, 164369912, 262349771, 118962352, 180889575, 456034260, 48252319, 29628889, 1668371516, 449588356, 2282440670, 6462342, 2303751216, 29120905, 236635893, 19761418, 824191926, 50023989, 19557634, 1729664714, 2315839860, 98906407, 1406854364, 2379806143, 1080534464, 606466484, 749333, 243019943, 87095316, 732073, 963455227, 18290719, 18131748, 81915651, 2375449098, 326506923, 34873364, 112929575, 22454647, 52429172, 57833122, 1668138098, 25147689, 18084448, 32190652, 124222041, 318084384, 17435612, 147672166, 69012419, 2216979384, 24881388, 397497637, 2361860238, 2241216361, 17939037, 29564281, 2342620190, 9465252, 2347049341, 30092032, 720863642, 101092520, 351221537, 453709635, 316654916, 21882601, 2339734951, 1697668345, 274559013, 42447094, 18229868, 518681855, 297564170, 16906137, 2354013972, 119580247, 280572026, 15790927, 107491156, 23982002, 149666064, 112396470, 294018733, 115396965, 1560780523, 42721524, 981127062, 18637798, 14304618, 2195930491, 16051232, 97703815, 2262999971, 32511767, 632062492, 304049696, 304070008, 305256777, 272989565, 2341020134, 2353506732, 50306005, 619524081, 19715003, 56564230, 220873939, 2350108166, 14361155, 2270533266, 25333609, 132631769, 17815546, 716827128, 2316481586, 234273955, 481324580, 1732829419, 128308837, 275471220, 19548625, 334032462, 14067742, 20411816, 17358750, 590185677, 927505483, 393592962, 291363, 2305323806, 33901209, 251829918, 15145016, 17092444, 2174555742, 394932596, 32347705, 15751301, 395491697, 18171067, 78963433, 39602114, 19055698, 20495812, 285802436, 66261900, 311062620, 441275531, 22260999, 17574357, 104513715, 277482283, 618401788, 1189043576, 48021931, 25039599, 1932282721, 432958090, 16947056, 139975371, 14687012, 321181858, 17458287, 2195241, 16166496, 2171689341, 78779800, 14202246, 398187934, 14922268, 21286406, 170354845, 2217591657, 15223905, 47451496, 61663, 21834922, 26780981, 42312055, 42329555, 27893163, 2288937728, 51221826, 17088643, 42782133, 25158349, 1741439630, 841898942, 298557751, 211971511, 2140881, 163228451, 59386332, 154311445, 288723364, 22495024, 191179377, 17179406, 132573995, 1444281925, 2215893336, 455084468, 855379321, 97706891, 2219131, 14093319, 409456907, 26286732, 165948821, 14579345, 35752684, 40054423, 1329879698, 66768858, 20184945, 1120359931, 15191052, 17669704, 385025866, 109621087, 351299373, 404296475, 34409137, 973090592, 18152276, 19940791, 829363578, 11996222, 21865001, 37205200, 19450277, 364439712, 542793644, 191190039, 46417885, 60983046, 2167820294, 16664681, 455256867, 14676895, 1710881768, 75357513, 23357795, 82066670, 300181817, 194475085, 846634963, 20182094, 478578230, 470357978, 33627414, 18029055, 16020654, 19245896, 22496235, 14345566, 33677778, 15891963, 14156778, 85412404, 9403902, 743599406, 35872795, 21895068, 14917754, 1234790060, 468517832, 39957764, 18026602, 17851178, 15174190, 19671546, 51640380, 312544802, 296363505, 24777536, 2180480845, 345161879, 18334440, 762202327, 620547379, 47153140, 19222806, 2276246983, 59128257, 95467111, 94954481, 14913762, 104256824, 272161214, 17699677, 2233282904, 204841064, 18572660, 43533499, 47840385, 14935628, 24244836, 17678156, 54730258, 108358161, 967133442, 140928543, 27637371, 25953115, 19971990, 14445542, 18345986, 35294738, 30255833, 18611348, 16146513, 54239985, 165798058, 17596056, 120640652, 20727041, 208442526, 253536357, 39234189, 44136028, 18843227, 324834917, 15742946, 2163177444, 329865729, 123483569, 62733454, 855593120, 273813321, 18301602, 160589263, 493121864, 15614725, 87792156, 80938488, 188632613, 204127602, 224182352, 275675429, 322653723, 333500366, 360645886, 347466521, 64689798, 873141, 4875721, 15478750, 15662761, 20003350, 19676647, 20387595, 21563402, 24561336, 102932090, 104274999, 117602839, 194359565, 248765957, 294224506, 321646852, 368292391, 130305390, 150940204, 1639748756, 1282050768, 371193896, 267371257, 54311364, 1887854366, 95982652, 318426183, 88014855, 103139471, 23144045, 46174000, 403676245, 594666501, 95488935, 25732408, 626111072, 234402376, 22860921, 494010838, 18587457, 91180720, 4207961, 15446531, 314563166, 145380533, 47707475, 298123685, 12579732, 58978275, 20890385, 16393860, 46501372, 69393590, 83374478, 24760864, 18316818, 88215673, 157931852, 30530300, 468763363, 182839127, 36171004, 56566033, 30233007, 1468133850, 53796731, 17316722, 595854486, 37032310, 19608297, 228403233, 1849348536, 18644734, 273615113, 16715753, 22054220, 14688517, 16714347, 27029537, 354221701, 29956346, 95629476, 42716278, 1809251, 162748968, 26222868, 55323675, 2187906247, 74555974, 302022259, 143789061, 559509007, 20193926, 1575964944, 16841286, 15641532, 15300838, 1597324129, 18496432, 17086094, 483701025, 14999172, 19844126, 57714568, 2262142926, 883458102, 313159302, 19223022, 1122767850, 375895295, 26208862, 2283772130, 1301374621, 91826119, 13201312, 419764595, 469408036, 9320852, 309755530, 20411630, 496420759, 1354890464, 7102242, 2228734814, 86715527, 596687292, 357760567, 1723563360, 223608893, 85644875, 27911608, 1460016181, 48844884, 78953563, 25065495, 16001409, 156375999, 16034244, 562164937, 360442117, 156466613, 24651708, 39759481, 575675721, 93620724, 167066499, 49753604, 321029318, 82631496, 1880454828, 2275298702, 300972590, 19273804, 27810354, 1416355640, 86650732, 250455054, 111456333, 47345734, 10990, 19909828, 185594976, 2274778854, 483126812, 17684473, 427397243, 22270118, 113062227, 177583181, 7510172, 15369355, 17311077, 18264824, 27688964, 475987826, 17645400, 21250425, 53429839, 61842240, 48377323, 21722109, 1615447254, 631657132, 19790241, 1604444052, 15103460, 20652901, 13774902, 12094902, 33031861, 1964891982, 31100329, 16073416, 25115550, 142896252, 109257354, 41591401, 7215612, 1586501, 12302892, 55630037, 67716195, 22367858, 29127028, 192589318, 12510442, 7482, 8833012, 2671, 11613712, 35515414, 31005149, 460371116, 71028123, 125118607, 31128730, 388743786, 989, 217900600, 280716675, 743874438, 30324031, 30750869, 451128139, 18121069, 178975033, 12526142, 21985202, 1094163222, 1918228742, 34175976, 47285504, 256979481, 39077431, 2160596971, 60615841, 5272571, 306834250, 10836092, 225301621, 117640526, 14632294, 48800583, 34284490, 17171111, 53978909, 56461780, 10753312, 17385903, 339754094, 19754498, 45743403, 5814192, 1124861, 7865282, 212463932, 245095160, 12534, 11133442, 76373, 28381177, 27613650, 564141120, 429057282, 954012890, 118952409, 131497030, 22496608, 16386970, 23910646, 123299344, 15142050, 18271124, 254999763, 1408457989, 48361925, 101878960, 17079526, 28523687, 20731596, 314661596, 254660986, 213956450, 1598979864, 121707270, 824157, 549962062, 1022147078, 21525601, 18270831, 1058233296, 18466714, 403087766, 12244082, 2228674112, 9879372, 20134672, 2139211, 495309159, 33561428, 434825627, 95411363, 309929507, 456865788, 742747086, 185043343, 366631688, 47064286, 11175742, 8376882, 342130924, 16110819, 811377, 1529928896, 243377639, 963723824, 83237493, 1451878254, 234418976, 52850138, 1144882621, 237548529, 57111966, 10642532, 19658826, 1604023434, 1393155566, 1647996986, 97416190, 487118986, 27727639, 45972160, 287816744, 1463789270, 2228647020, 42466456, 1467609360, 15443743, 596904346, 322658299, 27778117, 1295001, 15174406, 23370996, 14120729, 235700566, 87374085, 15526789, 136357511, 6323872, 75897022, 63258372, 14120215, 9507342, 993249055, 232520849, 15428397, 5051271, 907198734, 19358435, 860334187, 118082516, 91378530, 221452291, 295713773, 148868647, 8842842, 26518374, 816405054, 1263288692, 14073093, 59019225, 14136335, 16207462, 1578141, 168531961, 144186376, 1641384510, 749520146, 101964362, 1167699625, 701732472, 275686563, 76310905, 293372650, 389901694, 105829953, 211917765, 18728633, 116734678, 202756449, 7389732, 50104358, 509381461, 490991627, 67612556, 15138104, 9696182, 210814143, 104201057, 24134103, 15065434, 19014189, 119667909, 258198244, 701700079, 235822929, 172851165, 15908429, 547860279, 15812461, 1225257002, 727472528, 341251022, 26048553, 472220354, 373598135, 196566583, 904200264, 134525908, 18839785, 12819112, 360285166, 36323148, 15740362, 18689000, 27596259, 289588260, 40638594, 18164272, 1115670186, 237945778, 2154419157, 889974050, 2158603635, 162427574, 429253192, 207644722, 1464125821, 13533782, 381565112, 108547794, 20629966, 18465455, 38418472, 17161562, 180619610, 136682570, 513426047, 306854368, 273940910, 18250813, 632873524, 29999829, 574862909, 327024618, 625957916, 1079355888, 322658873, 14066920, 612577026, 310297935, 378643551, 1010645653, 15537064, 778820143, 70283241, 1240142522, 121869155, 1027736432, 1287359551, 80885440, 225442825, 1098985442, 466096296, 724416918, 20849273, 2726611, 83424009, 1419099463, 322122983, 91666825, 318709067, 609043536, 2179078237, 84944278, 121641469, 18584841, 19042220, 852123008, 127727270, 253114974, 910793808, 27740227, 84100924, 240830856, 1860428197, 93714983, 92306628, 6374602, 89264343, 42950930, 102423027, 35380758, 309553018, 111057129, 218503228, 15950086, 25408081, 58449246, 24252078, 33896484, 2205386796, 39912341, 148062893, 93011077, 1777681, 16115811, 7273892, 9546212, 50085432, 11759912, 164856599, 17316885, 15811202, 284234943, 201518147, 21232505, 36623, 16892321, 8732322, 2189503302, 70111948, 1214410454, 6036882, 29342640, 389658589, 45626053, 13893712, 449501607, 22991553, 195841657, 18369747, 209262555, 21515818, 23615682, 16608394, 384439469, 226976689, 16313140, 9851362, 16218527, 24941044, 472132412, 16340178, 31177357, 178641594, 2162288419, 37034483, 64439775, 176119964, 1247296152, 82594895, 1662687974, 1374411, 16197784, 8287602, 15931605, 301244366, 14062180, 149180925, 15514266, 22144278, 13492102, 169534465, 30000912, 274652076, 572609848, 87818409, 169021842, 1400238956, 20751811, 1877681767, 7313362, 140555541, 9677372, 117100903, 17296792, 20382472, 1246951472, 72103163, 148517828, 3416421, 19175209, 14885620, 1408384448, 16641462, 1227932144, 33874126, 28222719, 23739721, 16076032, 14834340, 749963, 1642801009, 109062332, 550478944, 86550180, 14886344, 13028322, 62951951, 5953552, 80661799, 1485951, 20252410, 38483313, 21813582, 227102437, 550165697, 610076827, 43194865, 226907218, 15163466, 54272289, 1667834671, 29097819, 288935074, 75562656, 67093183, 280868082, 17701238, 15040384, 46119836, 185768634, 39961555, 482133423, 22322194, 23962323, 47968457, 33235529, 1000010898, 440565290, 1485433387, 25081451, 17773720, 15143755, 48804449, 176461575, 469612967, 47653644, 17919393, 28008289, 16228326, 14111769, 14296273, 86598343, 95695246, 2165843252, 534222221, 14755492, 20974456, 14412844, 14588121, 979771916, 97618796, 1860765181, 77907173, 47172467, 14297954, 546717616, 1675070168, 22977061, 526634228, 198494684, 960709321, 422936661, 43092107, 18566095, 20164296, 78786944, 14313489, 47902921, 6347872, 57141571, 196883764, 786764, 18660641, 259911231, 6039302, 15334380, 203343685, 32391821, 522593098, 207812652, 399535666, 225147537, 42180290, 111127902, 17026589, 20946458, 33773592, 25807291, 299966548, 2171400301, 863189960, 176468814, 22193361, 35773039, 37723353, 176603549, 22140082, 16435365, 15892011, 12183532, 19213877, 561740267, 23462787, 14106829, 14515835, 19325156, 2166704808, 48075643, 103865085, 19562228, 160486066, 19906615, 7030722, 97732452, 972651, 263923033, 897811, 22075295, 19956827, 38031983, 15667802, 2163009578, 15234886, 7276862, 33602654, 11178902, 40923595, 56993835, 20861943, 154404805, 29240040, 36384443, 30081493, 1184354442, 443944804, 1666038950, 604922608, 17183370, 45762945, 283198095, 16860092, 243284052, 308245641, 971147274, 19534873, 1880725393, 362642209, 243236419, 104884371, 119714092, 23782253, 20790033, 101841773, 22808434, 19815609, 450946343, 308258036, 907382738, 14873117, 16387212, 47678555, 131226723, 266054237, 24496544, 55078954, 10926872, 23124458, 96644479, 13493302, 123231225, 158495061, 1009878901, 31953365, 380153789, 281878733, 97883743, 535993853, 14844076, 28350888, 107175080, 82447525, 14079041, 40705991, 60840767, 1705817688, 771797250, 19968983, 434957751, 90290461, 293303534, 21918310, 32396502, 1947301, 16955991, 16491683, 921878857, 15164565, 94214332, 2992751, 676033, 17369005, 84460442, 1582853809, 547079100, 34739408, 135890983, 59557368, 141057092, 239996599, 610994398, 16272052, 21770050, 387234867, 23034607, 80937844, 40816246, 35236603, 239568469, 37486660, 14323791, 14116034, 182086979, 393465677, 572619533, 47856457, 32584728, 95151374, 76183, 24575229, 19766166, 57263671, 258684352, 380648579, 14657745, 24095957, 102322678, 15078406, 152628803, 15291489, 408627912, 1579596458, 44309422, 59565766, 38859736, 68044757, 43274511, 100748297, 8117362, 245208137, 78271006, 8805142, 23054053, 48957003, 293063175, 91272704, 866613794, 134758540, 1954179860, 21565678, 15269964, 14440999, 56449023, 73043514, 118975084, 16977059, 117396160, 198916706, 331136088, 79498684, 975765924, 344504956, 105998402, 76134964, 438152067, 77677426, 21919837, 19027273, 548116457, 62356591, 1945505580, 146469194, 499236335, 183177218, 1114865460, 329628561, 1157111888, 216094714, 1349588593, 1111404056, 1299995892, 114573522, 110692399, 297920799, 371795336, 85760252, 105400144, 214097804, 1616360412, 1605865171, 24939473, 17396170, 917105330, 117027371, 59472131, 1336611008, 610232748, 228174088, 1911787543, 213831149, 209754653, 16168804, 18895336, 20619143, 61384123, 18283526, 180996411, 156989464, 247104242, 696053, 3369501, 25721557, 21152157, 385706946, 42313640, 613495552, 200553940, 1341233137, 764332561, 1028643932, 1113541, 11092842, 54270424, 81965017, 393798581, 280159870, 17549096, 300290452, 1627535185, 220219500, 255542457, 1213574630, 870283597, 1117043418, 30528307, 66198455, 960920364, 11170072, 326184086, 154016912, 1889568127, 48863721, 483302252, 15687090, 1002513128, 18507505, 24253723, 64474365, 226595853, 17239105, 18631445, 55355654, 115702663, 360282270, 1728882062, 15464697, 96015193, 470847338, 15300187, 36753, 1446255144, 191700412, 383854361, 252161971, 1173231918, 339722887, 363005534, 15170984, 146884709, 17442320, 24164156, 617613927, 1273074444, 106384372, 246377868, 14804589, 112627753, 4847281, 13069712, 83910272, 1127009540, 88494621, 818679260, 1293475052, 33211889, 822029557, 21952517, 478826292, 18174747, 77438776, 60928769, 56681826, 51037540, 84123196, 14998416, 1397615262, 33732691, 33546635, 1904656634, 128900117, 49102743, 311568175, 102087933, 34944596, 48755549, 426112230, 61903300, 1491382866, 488743376, 214641138, 260371201, 1673511787, 2553151, 133880286, 299223576, 360047784, 96694146, 16463078, 1280792054, 16253060, 18042484, 228223882, 16353245, 21866842, 21942241, 19962224, 720364819, 16349800, 114670081, 344288321, 1904781277, 40556633, 30435298, 16463237, 18080108, 706529336, 14165865, 199072293, 348457097, 80867152, 21642935, 18171927, 465129155, 151670855, 50443212, 1364098368, 1481408358, 16869577, 589748944, 221269569, 17758861, 26099914, 34963979, 52051571, 528987149, 24205972, 456478383, 1372641625, 3927611, 19002348, 1339835893, 618542623, 407136748, 74024358, 34714432, 16119090, 300428054, 56510427, 59304820, 16589148, 53777247, 27794232, 9670142, 1767741, 22824237, 111712308, 54704874, 18686907, 87699418, 30942337, 264124770, 495650403, 540734980, 128172483, 152958374, 31901869, 20890584, 1240317522, 20257132, 10304172, 8668862, 17918561, 42226885, 117882437, 17793878, 14123908, 128288109, 16105705, 81644488, 244276540, 37595712, 19116515, 13404152, 39279393, 277011035, 276567401, 117576644, 634243972, 622439778, 38002103, 40860228, 578650970, 375858149, 19435213, 421574883, 101365366, 26957009, 1429751, 186648261, 18438933, 344039566, 187080626, 7764332, 1020058453, 41814169, 1330457336, 156889951, 18161668, 451256188, 43922300, 23030211, 14565991, 39030654, 59936143, 43289988, 210319337, 73190286, 25823816, 44078873, 40303327, 15655247, 48706493, 2518321, 212454830, 14422439, 137223549, 141545751, 21493664, 4310571, 149126628, 18834071, 654143, 17991281, 166694329, 394635011, 15115726, 911455968, 16119772, 14168524, 190645655, 1558669614, 41663308, 1868400020, 188844898, 15237501, 87502184, 18464437, 77304134, 7416752, 180667856, 220906392, 578411542, 440413534, 11696512, 195840784, 1499013618, 18659273, 14552083, 16666502, 20829376, 14471007, 20178419, 136109646, 364481519, 112816663, 877305698, 2400631, 227381114, 16399949, 135198678, 266979999, 52734226, 18819380, 134855087, 38244174, 57411021, 42889683, 491851440, 1289593933, 1201661238, 17673012, 180200031, 18505952, 78564613, 143499407, 24887083, 14504258, 449678218, 59591909, 416204683, 774393817, 321025003, 175426542, 55308417, 24209685, 375676119, 602774686, 1849889239, 681473, 18155543, 22836988, 42708195, 14982625, 61014911, 59268383, 594617548, 32547753, 813477602, 14822021, 15411858, 944467345, 15613664, 62316989, 9411482, 21689161, 18991464, 17467341, 7150532, 14591033, 142411092, 107842978, 15169889, 33629924, 123289066, 23227841, 32686298, 24870244, 616485017, 102420827, 126664186, 19402238, 289485255, 252787550, 50263701, 128615552, 50005787, 16091351, 13567742, 16033525, 24815411, 125184430, 263830118, 112245265, 29061341, 1401100357, 14085704, 181912222, 66130611, 18245041, 1344951, 90035806, 17486677, 132297131, 185855695, 25029672, 126302054, 185680080, 870834091, 29309901, 16041234, 47821033, 1517267136, 284883861, 18478188, 65155179, 18919088, 1447394395, 189998613, 26607725, 109043700, 34227622, 78635037, 331817345, 20153725, 331816614, 8067002, 83996344, 36444204, 17813980, 39451367, 17285007, 21687414, 228077059, 14742549, 1430882924, 838179889, 62850214, 207526260, 13766492, 1571270053, 838464523, 1249676186, 63815293, 300010853, 16985214, 41588397, 1377937416, 1178700896, 870325686, 107127119, 169559219, 889180130, 1131118056, 202890266, 152696429, 142614009, 109583234, 47371913, 27557391, 21706413, 18487054, 808561, 137096072, 112695981, 1117121358, 345251750, 1645605294, 298597381, 70736359, 7994972, 490495458, 59924621, 279614869, 54399803, 290593825, 430058230, 637109692, 188266169, 572225652, 594280020, 128292609, 846828564, 1371909548, 9534522, 1467703272, 176300862, 417631398, 15585039, 221041703, 14761795, 268357486, 27681019, 816653, 15952509, 18781150, 97523297, 195419597, 47539748, 92183278, 32540650, 382417301, 43092459, 1027394472, 27610987, 18230846, 56487200, 12263542, 868571394, 29854529, 711932869, 573918122, 211154075, 328838071, 925931544, 1058864162, 1311811896, 70574234, 15828276, 114231889, 75742264, 923883858, 539448537, 183898082, 26613480, 1530850933, 14617499, 100610221, 94091863, 92241457, 601170594, 253998571, 955698157, 152954171, 280559948, 133751142, 8241232, 347698644, 89735094, 634812478, 69097128, 1018872102, 777308683, 203253392, 737826008, 18351581, 135488533, 22530207, 108045600, 20306034, 96468445, 8108972, 297152824, 356955821, 214402290, 123006717, 184513694, 546947988, 83740333, 1166663852, 18365496, 99919360, 287932099, 291897182, 12726792, 148292070, 55374753, 1123693536, 547300420, 26566469, 397455346, 15922651, 37104266, 38245723, 14483124, 16600687, 642833, 1367176327, 24004475, 16319594, 20095865, 39697444, 601295358, 1305156254, 1455320918, 32868144, 28006501, 15903378, 16304004, 631174177, 1110262956, 25454556, 1201714944, 1486296062, 293278876, 18453284, 186154646, 321202808, 407046019, 142669299, 65707359, 65647594, 1408488632, 88318895, 291510996, 46731762, 972154164, 15662133, 479670287, 43151136, 34024882, 480153399, 1337535175, 20729031, 20279370, 185809250, 602626619, 40627145, 369875107, 12807482, 353340280, 1308830929, 11232732, 29472803, 9210392, 790080344, 22222965, 204416862, 13298072, 377654770, 44703654, 22921528, 57537847, 24817859, 6758002, 83643610, 65491605, 23432012, 147305691, 14304710, 414379328, 15220336, 786939553, 18109873, 558465496, 196457689, 23949947, 1216619071, 226471593, 391602037, 55034379, 6409412, 26348016, 173240772, 134309619, 248293692, 19873593, 19401550, 40356855, 15254839, 30422794, 349540312, 866370582, 562304281, 15646875, 283313600, 20454896, 180088363, 349189238, 13474412, 457603095, 1050991014, 616879823, 83874770, 105203181, 16434221, 233604842, 6830032, 16564282, 814338416, 18019555, 218951054, 235130370, 23290408, 586893303, 237774782, 726951074, 873927577, 534649806, 47986971, 116880409, 21077860, 18008484, 489690950, 103493067, 16583845, 25407830, 281889829, 181195091, 15964196, 308429376, 106776691, 18020985, 21251300, 18646159, 13566872, 288388335, 51241574, 1170072032, 112526560, 14446054, 39005137, 15099133, 18352378, 14276189, 22028564, 22845770, 74635290, 457171434, 130268681, 126407166, 39538956, 203114508, 46699613, 362860027, 26908178, 165568433, 17934812, 164397041, 27862718, 84958161, 130033510, 48219046, 326255267, 43464013, 39796874, 39868135, 404532969, 47011573, 866829151, 1123401283, 14254183, 538237177, 362278535, 157684364, 24459544, 78783, 69354861, 135405245, 15869453, 14484418, 380532380, 25919183, 291810580, 492752830, 34311766, 60498741, 47697756, 40711814, 22213141, 112475924, 14308508, 40924082, 435228319, 50371114, 1158638582, 18291099, 386146285, 840238500, 17162991, 52814770, 37269308, 234141596, 226631680, 349785521, 349289363, 177569765, 61187080, 19195460, 325100194, 417201918, 14069365, 15189391, 487198119, 16477771, 1501471, 21633721, 24387882, 17493949, 14083763, 38936142, 1119295699, 189601534, 44196397, 57295940, 15102849, 17765336, 20770348, 147168151, 22018258, 14560460, 8634412, 20444181, 15066760, 13145012, 13395932, 1093077343, 20536103, 125767077, 2621591, 48569578, 18228075, 15504885, 1120626926, 277198961, 7593662, 39832918, 14630696, 792780432, 14255407, 22137832, 1099234603, 97757027, 91270013, 15496147, 329557752, 241368542, 116475919, 16868686, 224180296, 551481276, 944484146, 16744509, 599298339, 282728979, 1115301194, 220135900, 11030882, 33522604, 34113439, 182454948, 17623957, 293984358, 1807011, 111400999, 70449178, 364728802, 18691328, 25880588, 17136568, 622628412, 288994624, 14963760, 14733744, 1077233198, 208546826, 387383722, 144703320, 58740930, 103036462, 516684914, 102115921, 39564433, 20010925, 15919988, 47635720, 4952941, 285908150, 28517623, 258896387, 25484126, 119464925, 45552104, 249385348, 192921396, 1069129315, 186154648, 810709142, 16752675, 223890696, 21925180, 16675569, 28368825, 21012092, 2811851, 726628538, 601981724, 823098086, 588387056, 199798906, 821401298, 21301014, 16194566, 67390766, 26336221, 54583264, 22862623, 30785007, 143964151, 17288045, 357031575, 160010755, 21844854, 59159771, 19605981, 87113558, 989633635, 717034813, 14096763, 13524182, 9532402, 236026761, 24795000, 23342802, 19306810, 161044052, 30893732, 916735110, 65783818, 16460682, 22000957, 15119529, 350415705, 120868481, 221167035, 114782468, 20193857, 27582945, 23629255, 709871912, 273012474, 424595791, 44438256, 375971107, 366193785, 20512928, 15838036, 109099014, 110639889, 569839623, 465070708, 19532804, 192231853, 338828458, 22049097, 399679253, 356834376, 212071519, 907209564, 48363858, 703388616, 50338601, 60694237, 17502416, 14179819, 178770014, 20714592, 14738561, 136998045, 118747545, 1305941, 16012783, 19655830, 142843687, 925999250, 376005446, 370751904, 353465310, 123425024, 170128697, 816325328, 11620892, 20182089, 31127446, 14529929, 32521584, 21111896, 16157855, 131144091, 28181835, 15677585, 120180668, 46817943, 26860506, 22772264, 122396513, 21215620, 103949895, 80638910, 16359843, 1025521, 45399148, 369505837, 20196398, 297532865, 6112442, 46557945, 57770539, 278776049, 26754354, 55394190, 595515713, 257553324, 16125224, 123327472, 17908972, 279162316, 138020182, 120233868, 21415998, 784122984, 35220556, 442904755, 118273546, 14412533, 18909534, 19107878, 95740980, 18172905, 203192992, 19746543, 259565941, 5779782, 527743455, 24810179, 190450243, 380642128, 32448722, 529154224, 29764993, 137340182, 109524559, 15865717, 27302376, 18291873, 322245908, 381104554, 215161294, 23153246, 544638548, 19834403, 116821890, 26858764, 103115805, 18739693, 23486744, 817407956, 13148382, 928582106, 473620611, 877003172, 57356719, 93475451, 9720542, 20262083, 371994104, 353480777, 74820061, 75944553, 199498184, 39185716, 67144836, 1489691, 133315811, 24081172, 109484552, 15187243, 16340092, 19935420, 22017317, 64141011, 21693060, 22770193, 400196836, 5174191, 123626700, 15990298, 18931517, 632301127, 145773567, 205839574, 81896993, 90545097, 16566825, 19550262, 72445766, 16197345, 377027721, 104263696, 293735479, 10752192, 15685721, 7848802]}
View
1 testdata/get_friend_ids_1.json
@@ -0,0 +1 @@
+{"ids":[485963620,65375759,116704750,16908110,20866038,15456784,135515077,413234849,23892927,4283311,18486586,45577446,2267241,24718372,20779448,36430363,914018270,152408142,916100768,95418595,59514202,170952277,808092948,146569971,18913827,14204194,48235139,60189624,55949344,16469809,836283571,14326086,75533,460470940,778057,571025703,1140451,16358930,586193370,23840585,617299845,20352048,16618587,138141495,8525402,344425346,119782567,31310158,15113565,17409240,343523535,15665499,8220482,14956372,22903162,84194879,18638090,23583214,29491022,192942213,492328463,43383357,20342387,59634656,111216929,950531,3554721,77220986,28646364,21979896,765545706,191005995,122137723,86330674,273977738,846187382,22067976,66247691,17614582,239931382,51096731,8714762,103719755,224349882,20872592,49756585,16843806,63870858,14427350,14660933,20172221,19746393,19742740,19746495,19746268,15537164,14363806,245448121,40305346,18768691,19409006,43144360,41433870,14427372,38102814,50442406,15838770,30067519,18643531,96783382,10913042,62917637,432930849,14522630,18640668,35251183,35992925,52214572,11942832,26043704,234485044,237019614,190388631,580191183,622804972,237845487,564131974,54424058,632015726,18406495,548047639,15431856,8320432,10716292,21436960,15234407,14987728,14848513,16130330,13462442,17089636,117662694,46319532,7429892,15032736,18393773,128956175,22026842,802677139,587639522,312254799,373373336,347998327,22053725,211209877,70535360,95493980,33929775,15659248,23055689,25726636,27845025,442870573,386461356,362051343,25832541,787799,27049466,14552720,119826247,105225912,214190858,16149338,84617980,81497957,248826162,17078632,36471939,104942217,19201509,590300532,17141268,56440721,590195750,31475315,21303235,16102081,16331756,16332498,380228140,204832963,778160544,323431504,357533790,32513043,80354646,55191723,262542624,101348982,125400908,351832182,15666380,594736235,545195543,303483832,619247259,34278838,617825073,115417134,302076301,18026912,201319817,301239030,279323718,261959272,607684948,55356886,43117170,15947277,33575662,619950540,110967761,14075928,427057264,626854369,185357063,14184651,30715662,41147062,2090121,17026643,15468275,16129920,16349125,73238146,38516217,112740986,164555798,20796192,16456004,15763818,33439673,255128753,36104874,35318803,198614401,18492549,16460993,19085082,49988522,102836256,30308764,100838279,18620828,216868739,100936791,27978241,296462011,14458660,81934163,30120541,16843817,18164420,46836666,17971635,1183041,26863892,767,740109097,61306578,11211372,814001,1046661,53280402,14217740,5971922,11229162,12611642,14606395,249478001,484991854,15402623,14807898,14702533,705166483,15165493,19789439,16619832,16677622,14696463,134736009,93513698,275251813,20389458,5450132,121953044,14485423,15698903,52758395,7093352,735096642,376949805,24930840,50115087,210141126,236622791,1917731,150656075,56770914,730902326,552985513,109266393,480120122,10846402,130238521,17630125,243821406,24493890,19412541,376353997,194347664,17695016,193064494,211543116,33256849,16042794,15865896,50090907,20858691,36367130,136725784,135316691,14934440,70739029,15507433,28164923,453510918,14677919,15294166,15473958,14385676,64748159,30915636,58113278,154202677,38441030,299258001,60654735,74567808,346569891,15838694,24399191,131570276,17093768,1769191,18696996,95428712,353003932,146123790,198584761,175691292,13787402,143912910,39800314,46190055,128569463,109298652,16888712,121309596,248742334,46220856,14325188,30927826,38156420,206001945,14962779,495300028,21875834,101081754,337808606,78361556,456864723,124603983,46577579,54208274,15066876,606549267,28450164,501993054,17001490,28044313,227117671,350509998,245603564,53435986,384923143,275561685,404851901,39350796,385183010,38733200,742143,234015324,320199062,495263448,20071361,424274065,137706974,8861182,16543760,454313925,34920742,586909317,594723485,607867793,16023029,33857883,51261818,14520293,571371777,41697083,90959399,42551075,35235695,97262484,19564105,594911608,585246185,16117029,598443842,18214621,20867568,23698358,48144050,17374418,549029322,36025916,363490884,12648652,39530187,79997785,104585489,59423440,57372601,130933196,15116624,14710129,16062207,495612497,19649450,53141844,22952405,18176147,54300251,506990949,18480977,29912873,37710752,17283244,19515424,11180212,15500649,18569484,105918870,17632297,536694088,250884927,71882824,509063626,49934930,490848670,34743251,48473838,28200389,58489734,331286084,331450910,56052405,481066283,17367404,89215087,19884952,145306695,104267638,132235973,11988052,9692022,83047883,14061849,297556877,30434892,46442771,14434011,20605481,147808148,391409009,7433772,17820399,754485,14251225,9505502,498123757,129906416,16684911,85616866,20193243,122215796,22997361,54396291,18918414,17344324,67774992,50325797,20068053,18943897,309233470,18164887,216084954,9334532,22994700,84465907,465158654,22300059,15974368,285073363,192764972,189376144,18203287,338474200,17505090,112756074,436006103,18685382,407019221,37926315,36716860,66685269,17045089,70418177,376162509,93682627,14505838,116654517,56212232,18396070,15693493,18246347,24619328,19617284,414284406,35031059,146183346,172632175,96098703,24283263,148435933,233226613,65108529,20642310,234270825,20609518,248239533,23503181,45584305,31861048,89898430,407889268,33282082,236104191,9313032,25020347,19011119,89707859,16213646,21689801,159684911,8291102,23805874,21746623,34711477,282865138,15604930,18641695,72389498,191287999,201421969,274295451,77641370,264234073,261025036,112015650,20481118,16495544,43913045,27052547,360413441,13691782,14194740,286880935,202312445,119166791,21969867,48803664,16733088,17074051,77105290,18509870,106929968,22382110,13631142,330502724,16341357,115252480,1417921,366371278,188019636,19996524,44165613,16939891,17498747,94168199,105675677,240691392,258607721,14940354,16988038,16299627,25531732,219062922,304627263,15990809,317256470,174421336,71869296,39765940,44753284,16744473,12040102,38584206,16204696,49164309,28343270,303994581,28410253,21821945,283865965,97691156,213107009,15200719,14669951,99163691,15726728,24111487,202699897,20955270,418,28962525,15412727,21492467,263685349,18884857,41622671,94129050,22859855,14173315,24235302,231854033,18537794,19086456,213575929,101614424,27796165,18421509,18078425,305005427,31053563,258885469,12011422,6576492,7590112,15292471,15066958,43425975,18906097,6145862,14976721,21416856,17494010,232268199,239461632,37029298,22320759,59599859,258407797,58393592,301012485,72667138,54885334,22215485,40164352,38421062,80684362,22883726,6362172,113469866,15803768,21220931,222636878,21373652,22938645,14085070,89580481,23414569,11635932,110415536,18146725,16020435,21312469,77517399,21874164,104589290,51747161,130836664,11190002,818155,54660914,14955620,17902047,15936311,18638502,313537605,363450850,179973018,14156198,18594598,8862532,5770442,14412888,22656089,22046083,220907703,317133497,49689858,154005444,16972068,148902413,16588095,19570075,125637896,79241648,14515799,14802885,71353416,119203363,47392876,35761403,273010546,317880197,49251910,70764269,273197054,273000680,61536959,258458683,21206042,62925053,19422317,20957191,17488526,18023140,41093522,42533606,52528502,20055774,18089442,84376589,81000114,34919745,19170880,40047236,18725659,31187903,24126361,88710001,104299877,96795310,22105535,23314335,100607500,46751590,14928734,93094538,54981205,22059385,20933649,18776351,53473610,49732680,112480876,290106314,257740770,313493727,313418943,21009763,64400465,20029306,20527509,30304152,132926588,50885929,30961267,94581061,23365014,19787735,313553844,293750778,166196682,73479535,14335498,198567904,27476041,43260020,22571195,15726586,106110662,157467048,20438137,29976734,143491086,15461733,213539036,24235368,24913022,23067226,299485058,39208156,310913336,37399786,51381252,18622756,18451653,43395268,21619806,29211557,10301842,140195976,15840979,39756122,15360434,115441158,119905863,175295959,105417422,168776165,152314419,133379712,135604202,144286635,18291500,67378554,299798272,250392390,20375912,232552553,106887653,22362043,15637549,104502359,203532507,168912732,34903365,30028674,21875245,16064403,51606046,24405414,89317678,18488014,15456235,241691709,236516604,40368131,37687633,759251,57198996,26930438,18323373,4970411,164400667,23638014,128547882,16162201,14112563,18907744,14463012,19187439,138797212,270379099,18130251,191159103,16146731,35761879,14182620,104932756,19038395,248288710,77052243,38812075,259292849,21029359,17136310,267919533,26134082,37077107,15031724,69818419,191500375,29558838,65535634,53523503,224362254,6017542,200059931,296622807,4790881,48078807,78927772,33506504,279136688,48449654,18383373,47771556,55705595,17548215,134891395,290101954,59929401,262137156,175273935,23493152,79808570,20682357,297563101,225428772,8449542,19949151,227771924,122657422,26207922,25376735,19221220,143063931,36161186,41712825,19725644,29416787,228602896,21437682,110263006,21129234,21046254,166393507,13590162,16951434,188000721,41351252,254621726,17698956,89593573,17413572,113787262,109545333,67406327,85636450,133929049,17595958,24823749,50005441,35804467,16544818,35013184,85251917,31726915,36755482,107102609,16028241,44538849,35778794,267999603,36953109,22271644,26792275,35002876,46048042,22894243,10235102,16017472,24771318,15042296,41619175,22642788,5392522,17471979,65946380,16826617,14159148,15967738,173643681,21755786,15864446,39000115,38885626,161329769,166607010,85641096,17393196,1652541,199935082,16581604,30031547,49734054,29008249,9627102,14262811,19201818,14708814,16233170,15808765,90484508,46598192,137876169,23484039,22737278,115485051,18949452,20060293,18510860,11107172,26667264,223959958,49757093,245874349,14955722,28603812,36711678,66965843,18486243,34615731,15445967,58203491,5920532,85642187,55419844,41501555,15982558,147493361,17265423,14778733,16895951,106840674,12456402,69519838,35810531,69571569,25886862,69231483,50517161,26857202,17899109,50393960,16688755,19327532,99636351,116763916,15769774,22341950,15096075,75069067,11859822,18336459,39511166,19711750,23427122,19893321,15821039,56420936,102278432,82127917,19662718,39716211,23967554,20596281,34889448,14286806,22670999,18038892,67101140,88745438,29562655,16982863,14113952,1282161,88615688,1049671,140753036,14918432,76674458,78427460,16866956,101889465,19881931,128724886,17220934,18713552,21786618,231600344,147383043,117982625,84445191,114493453,32506859,179478771,29374498,24128009,19637934,17469289,9763482,15222806,31630054,15472700,140803376,15862891,43119695,260741931,14559745,257624526,19918353,5831802,149102306,52126417,10017542,237850595,18444468,15930000,14385046,21516577,53208324,24223641,23451598,15458181,15714547,14266598,65965412,36843988,21166728,55630632,15227791,22695157,6875072,16017475,102581666,14606079,15905103,26784273,17286101,88722311,18734088,65909759,26755141,70260544,21866534,22167056,33098495,171683695,43078165,180147957,19621110,29774968,88392301,32423136,74725264,146548246,269420810,18196002,14199378,22341016,111416652,14647570,43166813,34317032,116498184,57741304,163844242,176456922,69417670,36771809,13693032,25155290,18227455,4898091,1536811,16630098,59479958,16145875,15224867,30043495,55338739,46164502,20402945,15935591,23092890,27860681,17006157,216799530,16670996,142672514,135917962,270956213,20562637,156016878,18622869,168295477,14348157,36047098,14514804,32359921,16955870,59486068,5120691,15568127,44401911,7215512,24898621,21968928,34096609,44177383,14050550,20281776,95323720,19954039,18784376,13759952,16227675,14235672,109915584,16684773,646893,83130916,763699,17070899,13017192,17453131,14191291,42204560,27787530,1403031,8510242,49301068,14834076,16997090,44153483,23014736,102448827,29493965,8161232,6877872,33955377,15198966,11695602,16229491,52296815,57341938,59910042,6245822,19915362,16348549,94667985,14463924,21315031,70983247,16244517,15433693,26217653,26213879,14615871,166252256,17054817,813286,32361431,5988062,16366271,19539716,96930772,11695472,59460397,25098482,24602720,24881081,28212315,21093785,16511394,16958346,27830610,33933259,120181944,16834046,16257853,19673700,15947602,20608192,145692441,116469425,28657802,20582958,17596622,219357440,14634720,17463923,17683482,146620155,16025112,16648790,40932856,278026635,20776432,124066751,15473639,22705078,262528377,95943830,17605855,19754094,61853389,17855157,624413,19430233,108432404,56440209,39803436,16892445,51497096,70052473,108408529,177676462,101878696,18869578,45670812,154233774,105831673,22952596,268873642,88966020,15779216,14900137,20608910,15220806,18136692,17217640,19658936,18230738,16878156,20114753,29232503,19282280,30313925,45874509,15987497,31078583,16470495,127997108,19722699,23959074,18325781,98928848,160528623,17423992,807095,25841417,16245906,121598314,128126054,8963722,15110431,4620451,17842366,16895274,37662914,14603515,175844074,172280127,28583197,34554134,21581503,8295072,19802879,1435461,16817883,15165502,16580226,15492359,18593276,26003862,19071682,20031296,32567081,43435902,16379018,18201160,113420831,17781165,33998183,44705716,22035690,5402612,18736652,21232507,22762908,11433152,14738750,18883998,428333,18581009,16669075,21886024,45885508,15740491,20998647,116559622,21388284,39103115,810424,15173291,15762575,11178672,16308922,62780688,24919888,36683668,89711639,15489945,15463610,130160106,3108351,11348282,14342564,15309804,19915329,6519522,19993545,24886900,17004618,110595088],"next_cursor":0,"next_cursor_str":"0","previous_cursor":-1417901385419688902,"previous_cursor_str":"-1417901385419688902"}
View
1 testdata/get_friends.json
@@ -0,0 +1 @@
+{"users":[{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":286,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1220,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","status":{"created_at":"Wed Dec 09 20:51:52 +0000 2015","id":674692964782891009,"id_str":"674692964782891009","text":"@beep @jonikorpi i made a bot to do the conversion for me, its @TheGIFingBot if you're interested. converts, uploads to imgur, dms you link.","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674641293314809858,"in_reply_to_status_id_str":"674641293314809858","in_reply_to_user_id":12534,"in_reply_to_user_id_str":"12534","in_reply_to_screen_name":"beep","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"beep","name":"Ethan Marcotte","id":12534,"id_str":"12534","indices":[0,5]},{"screen_name":"jonikorpi","name":"Joni Korpi","id":15907249,"id_str":"15907249","indices":[6,16]},{"screen_name":"TheGIFingBot","name":"The GIFing Bot","id":3206731269,"id_str":"3206731269","indices":[63,76]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}
View
1 testdata/get_friends_0.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friends_1.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friends_2.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friends_3.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friends_4.json
@@ -0,0 +1 @@
+{"users": [{"time_zone": "Auckland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "2218683102", "following": false, "friends_count": 103, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ftangftang.wordpress.com", "url": "http://t.co/F56CbDZQcX", "expanded_url": "http://ftangftang.wordpress.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 82, "location": "New Zealand", "screen_name": "nthomasftang", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Nick Thomas", "profile_use_background_image": true, "description": "Release Engineer @ Mozilla", "url": "http://t.co/F56CbDZQcX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Nov 28 01:15:43 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", "favourites_count": 202, "status": {"retweet_count": 54, "retweeted_status": {"in_reply_to_status_id": 683809123025072128, "retweet_count": 54, "place": null, "in_reply_to_screen_name": "SwiftOnSecurity", "in_reply_to_user_id": 2436389418, "in_reply_to_status_id_str": "683809123025072128", "in_reply_to_user_id_str": "2436389418", "truncated": false, "id_str": "683809344513675264", "id": 683809344513675264, "text": "What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 00:37:06 +0000 2016", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "favorite_count": 86, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "683815464938508289", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Mon Jan 04 01:01:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683815464938508289, "text": "RT @SwiftOnSecurity: What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>"}, "default_profile_image": false, "id": 2218683102, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 333, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17462502", "following": false, "friends_count": 323, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ted.mielczarek.org", "url": "http://t.co/bS4QKvSrsE", "expanded_url": "http://ted.mielczarek.org/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 880, "location": "PA, USA", "screen_name": "TedMielczarek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 69, "name": "Ted Mielczarek", "profile_use_background_image": true, "description": "Mozillian, daddy, hack of all trades.", "url": "http://t.co/bS4QKvSrsE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Nov 18 11:33:39 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", "favourites_count": 5707, "status": {"retweet_count": 26, "retweeted_status": {"retweet_count": 26, "in_reply_to_user_id": 318692762, "possibly_sensitive": false, "id_str": "685553202868174848", "in_reply_to_user_id_str": "318692762", "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 123, "resize": "fit"}, "large": {"w": 668, "h": 242, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 217, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "type": "photo", "indices": [91, 114], "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "display_url": "pic.twitter.com/4avrL8s4o6", "id_str": "685553159855587328", "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1", "id": 685553159855587328, "url": "https://t.co/4avrL8s4o6"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:06:35 +0000 2016", "favorited": false, "in_reply_to_status_id": 685552772700352512, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "SeanMcElwee", "in_reply_to_status_id_str": "685552772700352512", "truncated": false, "id": 685553202868174848, "text": "lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", "coordinates": null, "retweeted": false, "favorite_count": 47, "contributors": null, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685596223445807105", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 123, "resize": "fit"}, "large": {"w": 668, "h": 242, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 217, "resize": "fit"}}, "source_status_id_str": "685553202868174848", "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "source_user_id_str": "318692762", "id_str": "685553159855587328", "id": 685553159855587328, "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "type": "photo", "indices": [108, 131], "source_status_id": 685553202868174848, "source_user_id": 318692762, "display_url": "pic.twitter.com/4avrL8s4o6", "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1", "url": "https://t.co/4avrL8s4o6"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SeanMcElwee", "id_str": "318692762", "id": 318692762, "indices": [3, 15], "name": "read the article"}]}, "created_at": "Fri Jan 08 22:57:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685596223445807105, "text": "RT @SeanMcElwee: lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>"}, "default_profile_image": false, "id": 17462502, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 18432, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5003371", "following": false, "friends_count": 320, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "coop.deadsquid.com", "url": "http://t.co/vR6z9ydxBE", "expanded_url": "http://coop.deadsquid.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", "notifications": false, "profile_sidebar_fill_color": "15365E", "profile_link_color": "0D0921", "geo_enabled": true, "followers_count": 338, "location": "Ottawa, ON, Canada", "screen_name": "ccooper", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 22, "name": "Chris Cooper", "profile_use_background_image": true, "description": "Five different types of fried cheese", "url": "http://t.co/vR6z9ydxBE", "profile_text_color": "49594A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", "profile_background_color": "061645", "created_at": "Tue Apr 17 14:36:28 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "E5E6DF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", "favourites_count": 1884, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607411776925697", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "drinksmixer.com/drink8654.html", "url": "https://t.co/DU8yJe52Sj", "expanded_url": "http://www.drinksmixer.com/drink8654.html", "indices": [94, 117]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:41:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607411776925697, "text": "I'm now wearing half a Blue Grass cocktail in my sock, but the other half is quite delicious. https://t.co/DU8yJe52Sj", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>"}, "default_profile_image": false, "id": 5003371, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", "statuses_count": 6021, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5003371/1449418107", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17231743", "following": false, "friends_count": 282, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "atlee.ca", "url": "http://t.co/sUJScCQshr", "expanded_url": "http://atlee.ca", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 337, "location": "", "screen_name": "chrisatlee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Chris AtLee", "profile_use_background_image": true, "description": "", "url": "http://t.co/sUJScCQshr", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Fri Nov 07 14:34:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", "favourites_count": 327, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685561476761821184", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", "url": "https://t.co/jGQK5BkrqY", "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:39:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685561476761821184, "text": "Tips from a resume nerd https://t.co/jGQK5BkrqY", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685608384129810432", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", "url": "https://t.co/jGQK5BkrqY", "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", "indices": [35, 58]}], "hashtags": [], "user_mentions": [{"screen_name": "kmoir", "id_str": "82681434", "id": 82681434, "indices": [3, 9], "name": "Kim Moir"}]}, "created_at": "Fri Jan 08 23:45:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685608384129810432, "text": "RT @kmoir: Tips from a resume nerd https://t.co/jGQK5BkrqY", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>"}, "default_profile_image": false, "id": 17231743, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 2173, "is_translator": false}, {"time_zone": "America/Toronto", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "37933140", "following": false, "friends_count": 596, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 414, "location": "Canada", "screen_name": "bhearsum", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "Ben Hearsum", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", "profile_background_color": "352726", "created_at": "Tue May 05 14:24:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "fil", "profile_image_url_https": "https://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", "favourites_count": 1921, "status": {"retweet_count": 53, "retweeted_status": {"retweet_count": 53, "in_reply_to_user_id": 2436389418, "possibly_sensitive": false, "id_str": "685216836661587968", "in_reply_to_user_id_str": "2436389418", "entities": {"symbols": [], "urls": [{"display_url": "github.com/Chicago", "url": "https://t.co/Q9XtAckEph", "expanded_url": "https://github.com/Chicago", "indices": [33, 56]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 21:49:59 +0000 2016", "favorited": false, "in_reply_to_status_id": 685213939882311680, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "SwiftOnSecurity", "in_reply_to_status_id_str": "685213939882311680", "truncated": false, "id": 685216836661587968, "text": "The city of Chicago has a github https://t.co/Q9XtAckEph", "coordinates": null, "retweeted": false, "favorite_count": 91, "contributors": null, "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685507521520513029", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/Chicago", "url": "https://t.co/Q9XtAckEph", "expanded_url": "https://github.com/Chicago", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Fri Jan 08 17:05:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685507521520513029, "text": "RT @SwiftOnSecurity: The city of Chicago has a github https://t.co/Q9XtAckEph", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>"}, "default_profile_image": false, "id": 37933140, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 8478, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "798341", "following": false, "friends_count": 601, "entities": {"description": {"urls": [{"display_url": "parchmentmoon.etsy.com", "url": "https://t.co/6Oaal1jcuN", "expanded_url": "http://parchmentmoon.etsy.com", "indices": [57, 80]}]}, "url": {"urls": [{"display_url": "parchmentmoon.etsy.com", "url": "http://t.co/6Oaal11BDf", "expanded_url": "http://parchmentmoon.etsy.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "5D99B3", "geo_enabled": false, "followers_count": 1981, "location": "Toronto", "screen_name": "dria", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 152, "name": "Deb Richardson", "profile_use_background_image": true, "description": "Photographer & printmaker - owner of @ParchMoonPrints :: https://t.co/6Oaal1jcuN :: also in the Leslieville @ArtsMarket!", "url": "http://t.co/6Oaal11BDf", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", "profile_background_color": "000000", "created_at": "Tue Feb 27 15:26:58 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", "favourites_count": 12742, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685244145716334592", "id": 685244145716334592, "text": "Posted a thing on my Facebook biz page today and it reached 1 person. So that's pointless.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 23:38:30 +0000 2016", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 798341, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", "statuses_count": 29912, "profile_banner_url": "https://pbs.twimg.com/profile_banners/798341/1396011076", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "304076943", "following": false, "friends_count": 6, "entities": {"description": {"urls": [{"display_url": "monktoberfest2015.eventbrite.com", "url": "http://t.co/NujveKLlnM", "expanded_url": "http://monktoberfest2015.eventbrite.com", "indices": [122, 144]}]}, "url": {"urls": [{"display_url": "monktoberfest.com", "url": "http://t.co/mdmBpxbRSI", "expanded_url": "http://monktoberfest.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 467, "location": "Portland, ME", "screen_name": "monktoberfest", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "The Monktoberfest", "profile_use_background_image": true, "description": "The fifth annual Monktoberfest, featuring developers, social, and the best beer in the world. 10/1/15 - 10/2/15. Tickets: http://t.co/NujveKLlnM.", "url": "http://t.co/mdmBpxbRSI", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon May 23 22:02:46 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", "favourites_count": 423, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "674954219082948608", "id": 674954219082948608, "text": "got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. stay tuned.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "monktoberfest", "id_str": "304076943", "id": 304076943, "indices": [20, 34], "name": "The Monktoberfest"}, {"screen_name": "sogrady", "id_str": "143883", "id": 143883, "indices": [81, 89], "name": "steve o'grady"}, {"screen_name": "RedSox", "id_str": "40918816", "id": 40918816, "indices": [108, 115], "name": "Boston Red Sox"}]}, "created_at": "Thu Dec 10 14:10:00 +0000 2015", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "674955294452133888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JulianeLeary", "id_str": "1425842304", "id": 1425842304, "indices": [3, 16], "name": "Juliane Leary"}, {"screen_name": "monktoberfest", "id_str": "304076943", "id": 304076943, "indices": [38, 52], "name": "The Monktoberfest"}, {"screen_name": "sogrady", "id_str": "143883", "id": 143883, "indices": [99, 107], "name": "steve o'grady"}, {"screen_name": "RedSox", "id_str": "40918816", "id": 40918816, "indices": [126, 133], "name": "Boston Red Sox"}]}, "created_at": "Thu Dec 10 14:14:16 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 674955294452133888, "text": "RT @JulianeLeary: got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>"}, "default_profile_image": false, "id": 304076943, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 664, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8340822", "following": false, "friends_count": 590, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pmc.com", "url": "http://t.co/Fhv1KhCIcD", "expanded_url": "http://pmc.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "FAF7E9", "profile_link_color": "7C9CD7", "geo_enabled": true, "followers_count": 661, "location": "Portland, ME | Chicago | LA", "screen_name": "coreygilmore", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "corey gilmore", "profile_use_background_image": false, "description": "Former gov't. Special Projects Editor @BGR, Chief Architect at @PenskeMedia. r\u0316\u033c\u034d\u0318\u030a\u033f\u033e\u035b\u0365\u0313\u0368\u030e\u0346\u033d\u0313\u0345e\u032f\u032f\u0355\u034e\u0356\u0349\u0332\u035a\u033b\u0325\u0320\u031c\u0367\u0313\u0302\u030d\u0367\u031a", "url": "http://t.co/Fhv1KhCIcD", "profile_text_color": "786F4C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", "profile_background_color": "3371A3", "created_at": "Tue Aug 21 21:51:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", "favourites_count": 1052, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684707377736593408", "id": 684707377736593408, "text": "When the iPhone is too cold, you get high temp warning. I\u2019m leery of self-driving cars from CA for similar reasons \u2013\u00a0need snow, ice testing.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 12:05:34 +0000 2016", "source": "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8340822, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5995, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8340822/1350040276", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16833482", "following": false, "friends_count": 237, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/girltuesday", "url": "https://t.co/o1qJWZlfKV", "expanded_url": "http://about.me/girltuesday", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", "notifications": false, "profile_sidebar_fill_color": "DBDBDB", "profile_link_color": "AA00B3", "geo_enabled": false, "followers_count": 542, "location": "great northeast", "screen_name": "girltuesday", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "mko'g", "profile_use_background_image": true, "description": "liar: that's latin for lawyer. married to a (red)monk, @sogrady.", "url": "https://t.co/o1qJWZlfKV", "profile_text_color": "330533", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sat Oct 18 00:35:45 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", "favourites_count": 944, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685599118815834112", "id": 685599118815834112, "text": "oh, right. it's friday. #babybrain", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "babybrain", "indices": [24, 34]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:09:02 +0000 2016", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16833482, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", "statuses_count": 16543, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16833482/1391211651", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1538841", "following": false, "friends_count": 272, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lu.is", "url": "http://t.co/fXEvt99yzX", "expanded_url": "http://lu.is/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1826, "location": "San Francisco", "screen_name": "tieguy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Luis Villa", "profile_use_background_image": true, "description": "Ex-programmer, ex-lawyer, ex-Miamian. Wikimedia's Sr. Director of Community Engagement, but work doesn't vet or approve.", "url": "http://t.co/fXEvt99yzX", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Mon Mar 19 18:31:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", "favourites_count": 856, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685400320642433026", "id": 685400320642433026, "text": "During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Wikipedia15", "indices": [7, 19]}], "user_mentions": [{"screen_name": "enwikipedia", "id_str": "18692541", "id": 18692541, "indices": [82, 94], "name": "enwikipedia"}, {"screen_name": "bnwikipedia", "id_str": "2387031866", "id": 2387031866, "indices": [98, 110], "name": "Bengali Wikipedia"}]}, "created_at": "Fri Jan 08 09:59:05 +0000 2016", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685534157087223808", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Wikipedia15", "indices": [20, 32]}], "user_mentions": [{"screen_name": "nhasive", "id_str": "53717936", "id": 53717936, "indices": [3, 11], "name": "Nurunnaby Chowdhury"}, {"screen_name": "enwikipedia", "id_str": "18692541", "id": 18692541, "indices": [95, 107], "name": "enwikipedia"}, {"screen_name": "bnwikipedia", "id_str": "2387031866", "id": 2387031866, "indices": [111, 123], "name": "Bengali Wikipedia"}]}, "created_at": "Fri Jan 08 18:50:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685534157087223808, "text": "RT @nhasive: During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>"}, "default_profile_image": false, "id": 1538841, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", "statuses_count": 10342, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1538841/1398620171", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "876081", "following": false, "friends_count": 2143, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "en.wikipedia.org/wiki/Evan_Prod\u2026", "url": "https://t.co/DVlmqCqJIB", "expanded_url": "https://en.wikipedia.org/wiki/Evan_Prodromou", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "444475", "geo_enabled": true, "followers_count": 3472, "location": "Montreal, Quebec, Canada", "screen_name": "evanpro", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 367, "name": "Evan Prodromou", "profile_use_background_image": true, "description": "Founder of @fuzzy_io, proud part of @500Startups family. Past founder of @wikitravel, @statusnet. Founding CTO of @breather.", "url": "https://t.co/DVlmqCqJIB", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sat Mar 10 17:43:00 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", "favourites_count": 17595, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609250530422784", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swarmapp.com/c/7HtpQYkInPH", "url": "https://t.co/AObWsAng6f", "expanded_url": "https://www.swarmapp.com/c/7HtpQYkInPH", "indices": [52, 75]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:49:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "fr", "geo": {"coordinates": [45.51942856, -73.58714291], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/36775d842cbec509.json", "country": "Canada", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-73.972965, 45.410095], [-73.473085, 45.410095], [-73.473085, 45.705566], [-73.972965, 45.705566]]], "type": "Polygon"}, "full_name": "Montr\u00e9al, Qu\u00e9bec", "contained_within": [], "country_code": "CA", "id": "36775d842cbec509", "name": "Montr\u00e9al"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609250530422784, "text": "End-of-week lift. (@ Nautilus Plus in Montr\u00e9al, QC) https://t.co/AObWsAng6f", "coordinates": {"coordinates": [-73.58714291, 45.51942856], "type": "Point"}, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://foursquare.com\" rel=\"nofollow\">Foursquare</a>"}, "default_profile_image": false, "id": 876081, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", "statuses_count": 14346, "profile_banner_url": "https://pbs.twimg.com/profile_banners/876081/1418849529", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "13611", "following": false, "friends_count": 122, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "redmonk.com", "url": "http://t.co/3tt6ytJ0U7", "expanded_url": "http://redmonk.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "5E3321", "geo_enabled": false, "followers_count": 2283, "location": "The Internet", "screen_name": "redmonk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 150, "name": "RedMonk", "profile_use_background_image": true, "description": "We're a small, sharp industry analyst firm focused on people doing interesting stuff with technology. We are: @julianeleary, @monkchips, @sogrady, @tomraftery", "url": "http://t.co/3tt6ytJ0U7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", "profile_background_color": "709397", "created_at": "Tue Nov 21 19:37:32 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", "favourites_count": 67, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677279848230973440", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1O9e5Hl", "url": "https://t.co/3EsqpHx37C", "expanded_url": "http://ift.tt/1O9e5Hl", "indices": [58, 81]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 17 00:11:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677279848230973440, "text": "Monki Gras \u2013 The developer conference about craft culture https://t.co/3EsqpHx37C", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>"}, "default_profile_image": false, "id": 13611, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 3514, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14639127", "following": false, "friends_count": 1639, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "451research.com/biography?eid=\u2026", "url": "https://t.co/Vdb2y81qyg", "expanded_url": "https://451research.com/biography?eid=859", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "333333", "geo_enabled": true, "followers_count": 5999, "location": "Minneapolis", "screen_name": "dberkholz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 424, "name": "Donnie Berkholz", "profile_use_background_image": true, "description": "Research Director @451Research - Development, DevOps & IT Ops. Open-source developer. PhD biophysics. Beer lover. Passionate about data, code, and community.", "url": "https://t.co/Vdb2y81qyg", "profile_text_color": "0084B4", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sat May 03 16:19:04 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", "favourites_count": 9460, "status": {"in_reply_to_status_id": 685598210883239936, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "danthompson_TN", "in_reply_to_user_id": 20341653, "in_reply_to_status_id_str": "685598210883239936", "in_reply_to_user_id_str": "20341653", "truncated": false, "id_str": "685598596398366720", "id": 685598596398366720, "text": "@danthompson_TN: We never truly outgrow stranger danger.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "danthompson_TN", "id_str": "20341653", "id": 20341653, "indices": [0, 15], "name": "Dan Thompson"}]}, "created_at": "Fri Jan 08 23:06:57 +0000 2016", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14639127, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", "statuses_count": 27573, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14639127/1423202091", "is_translator": false}, {"time_zone": "Europe/London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "61233", "following": false, "friends_count": 3383, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "monkchips.com", "url": "http://t.co/4rH6XD51qB", "expanded_url": "http://monkchips.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", "notifications": false, "profile_sidebar_fill_color": "C90D2E", "profile_link_color": "020219", "geo_enabled": true, "followers_count": 20648, "location": "London", "screen_name": "monkchips", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1581, "name": "Medea Fawning", "profile_use_background_image": true, "description": "Co-founder of @RedMonk and @shoreditchworks, organiser of @monkigras, which you should come to Jan 28/29 2016", "url": "http://t.co/4rH6XD51qB", "profile_text_color": "050505", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", "profile_background_color": "B21313", "created_at": "Tue Dec 12 17:35:55 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "DA1724", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", "favourites_count": 25995, "status": {"retweet_count": 18, "retweeted_status": {"retweet_count": 18, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684741098120429568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/@moonpolysoft/\u2026", "url": "https://t.co/hJCQg4bgZc", "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 14:19:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684741098120429568, "text": "hot take coming through https://t.co/hJCQg4bgZc", "coordinates": null, "retweeted": false, "favorite_count": 27, "contributors": null, "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685593612256579584", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/@moonpolysoft/\u2026", "url": "https://t.co/hJCQg4bgZc", "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", "indices": [42, 65]}], "hashtags": [], "user_mentions": [{"screen_name": "moonpolysoft", "id_str": "14204623", "id": 14204623, "indices": [3, 16], "name": "Modafinil Duck"}]}, "created_at": "Fri Jan 08 22:47:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593612256579584, "text": "RT @moonpolysoft: hot take coming through https://t.co/hJCQg4bgZc", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>"}, "default_profile_image": false, "id": 61233, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", "statuses_count": 87044, "profile_banner_url": "https://pbs.twimg.com/profile_banners/61233/1450351415", "is_translator": false}, {"time_zone": "Madrid", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "797835", "following": false, "friends_count": 4396, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/tomraftery", "url": "http://t.co/5mPSXU1T48", "expanded_url": "http://about.me/tomraftery", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", "notifications": false, "profile_sidebar_fill_color": "D9C8B2", "profile_link_color": "587410", "geo_enabled": true, "followers_count": 11890, "location": "Sevilla, Spain", "screen_name": "TomRaftery", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 837, "name": "Tom Raftery", "profile_use_background_image": true, "description": "Speaker, Blogger, Principal Analyst at GreenMonk (the Energy and Sustainability practice of industry analyst firm RedMonk). Opinions mine etc.", "url": "http://t.co/5mPSXU1T48", "profile_text_color": "355732", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", "profile_background_color": "B38851", "created_at": "Tue Feb 27 11:18:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", "favourites_count": 2946, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685521358508453888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/omN5etq7R8Q?a", "url": "https://t.co/KUwhzfRgZH", "expanded_url": "http://youtu.be/omN5etq7R8Q?a", "indices": [34, 57]}], "hashtags": [], "user_mentions": [{"screen_name": "YouTube", "id_str": "10228272", "id": 10228272, "indices": [62, 70], "name": "YouTube"}]}, "created_at": "Fri Jan 08 18:00:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685521358508453888, "text": "Technology for Good - episode 82: https://t.co/KUwhzfRgZH via @YouTube", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>"}, "default_profile_image": false, "id": 797835, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", "statuses_count": 52847, "profile_banner_url": "https://pbs.twimg.com/profile_banners/797835/1398243904", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "43580317", "following": false, "friends_count": 111, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kegbot.org", "url": "https://t.co/JeweXBoTLE", "expanded_url": "https://kegbot.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1488, "location": "San Francisco, CA", "screen_name": "Kegbot", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Kegbot", "profile_use_background_image": true, "description": "Kegbot turns your beer kegerator into an awesomeness machine. Free and open source software - and now on Kickstarter!", "url": "https://t.co/JeweXBoTLE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", "profile_background_color": "022330", "created_at": "Sat May 30 19:38:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", "favourites_count": 164, "status": {"in_reply_to_status_id": 628332799204921345, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "eheydrick", "in_reply_to_user_id": 3169572185, "in_reply_to_status_id_str": "628332799204921345", "in_reply_to_user_id_str": "3169572185", "truncated": false, "id_str": "630038228469477376", "id": 630038228469477376, "text": "@eheydrick D'oh! All fixed, thanks for the head's up!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "eheydrick", "id_str": "3169572185", "id": 3169572185, "indices": [0, 10], "name": "Eric Heydrick"}]}, "created_at": "Sat Aug 08 15:29:53 +0000 2015", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 43580317, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 461, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43580317/1385073894", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1023611", "following": false, "friends_count": 192, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 691, "location": "Denver, CO, USA", "screen_name": "hildjj", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 47, "name": "Joe Hildebrand", "profile_use_background_image": true, "description": "Distinguished Engineer in Cisco's Cloud Collaboration Application Technology Group. Architecture for WebEx, Jabber, Social, etc.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Mar 12 16:34:27 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", "favourites_count": 232, "status": {"in_reply_to_status_id": 669757790378786816, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "thisNatasha", "in_reply_to_user_id": 28321091, "in_reply_to_status_id_str": "669757790378786816", "in_reply_to_user_id_str": "28321091", "truncated": false, "id_str": "669875748082196481", "id": 669875748082196481, "text": "@thisNatasha @bortzmeyer @mnot still early days. Keep backups as you go.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thisNatasha", "id_str": "28321091", "id": 28321091, "indices": [0, 12], "name": "Natasha Rooney"}, {"screen_name": "bortzmeyer", "id_str": "75263632", "id": 75263632, "indices": [13, 24], "name": "St\u00e9phane Bortzmeyer"}, {"screen_name": "mnot", "id_str": "5832482", "id": 5832482, "indices": [25, 30], "name": "Mark Nottingham"}]}, "created_at": "Thu Nov 26 13:49:58 +0000 2015", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1023611, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 2243, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "143883", "following": false, "friends_count": 589, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "redmonk.com/sogrady", "url": "http://t.co/NlsofJ8aQb", "expanded_url": "http://redmonk.com/sogrady", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 7415, "location": "Maine...probably", "screen_name": "sogrady", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 604, "name": "steve o'grady", "profile_use_background_image": true, "description": "i helped found RedMonk. if you see someone at a tech conference wearing a Red Sox hat, that's probably me. wrote @newkingmakers. married to @girltuesday. eph.", "url": "http://t.co/NlsofJ8aQb", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", "profile_background_color": "9AE4E8", "created_at": "Fri Dec 22 01:53:11 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", "favourites_count": 30838, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685563226143223809", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sogrady.org/2016/01/08/my-\u2026", "url": "https://t.co/9T7jPZcyTf", "expanded_url": "http://sogrady.org/2016/01/08/my-2015-in-pictures/", "indices": [80, 103]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:46:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685563226143223809, "text": "2015 was a year of ups and downs, a year i\u2019m grateful for. my 2015 in pictures: https://t.co/9T7jPZcyTf", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>"}, "default_profile_image": false, "id": 143883, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", "statuses_count": 42833, "profile_banner_url": "https://pbs.twimg.com/profile_banners/143883/1400163495", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "54481001", "following": false, "friends_count": 142, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.notapaper.de", "url": "http://t.co/fWUrVqihzH", "expanded_url": "http://blog.notapaper.de", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "4C95ED", "geo_enabled": true, "followers_count": 191, "location": "Potsdam", "screen_name": "hannesrauhe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Hannes Rauhe", "profile_use_background_image": false, "description": "Hat-wearing Geek and researcher with social skills. Verteidiger des Genitivs", "url": "http://t.co/fWUrVqihzH", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", "profile_background_color": "352726", "created_at": "Tue Jul 07 07:27:27 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", "favourites_count": 62, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MatthiasKuphal", "in_reply_to_user_id": 457857280, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "457857280", "truncated": false, "id_str": "685166321366077440", "id": 685166321366077440, "text": "@MatthiasKuphal Prost Neujahr! Bist du morgen tags\u00fcber frei f\u00fcr alkoholfreie Biere oder dergleichen? Hab Urlaub. :-)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MatthiasKuphal", "id_str": "457857280", "id": 457857280, "indices": [0, 15], "name": "Matthias Kuphal"}]}, "created_at": "Thu Jan 07 18:29:15 +0000 2016", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "de"}, "default_profile_image": false, "id": 54481001, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2773, "is_translator": false}], "next_cursor": 0, "previous_cursor": -1488949916577120071, "previous_cursor_str": "-1488949916577120071", "next_cursor_str": "0"}
View
1 testdata/get_friends_ids.json
@@ -0,0 +1 @@
+{"ids":[372018022],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}
View
1 testdata/get_friends_paged.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friends_paged_additional_params.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friends_paged_uid.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_friendships_lookup_muting.json
@@ -0,0 +1 @@
+[{"name": "dick costolo", "id": 6385432, "screen_name": "dickc", "id_str": "6385432", "connections": ["muting"]}]
View
1 testdata/get_friendships_lookup_muting_blocking.json
@@ -0,0 +1 @@
+[{"name": "dick costolo", "id": 6385432, "screen_name": "dickc", "id_str": "6385432", "connections": ["blocking", "muting"]}]
View
1 testdata/get_friendships_lookup_none.json
@@ -0,0 +1 @@
+[{"id_str": "12", "name": "Jack", "connections": ["none"], "screen_name": "jack", "id": 12}]
View
1 testdata/get_get_memberships.json
@@ -0,0 +1 @@
+{"lists": [{"description": "", "subscriber_count": 0, "slug": "my-bots", "name": "my-bots", "member_count": 3, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/wtg3XzqQTX", "statuses_count": 325, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 372018022, "default_profile_image": false, "contributors_enabled": false, "following": true, "profile_link_color": "EE3355", "followers_count": 49, "friends_count": 306, "location": "not a very good kingdom tbh", "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1279, "profile_background_color": "FFFFFF", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "jeremy", "id_str": "372018022", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iseverythingstilltheworst.com", "indices": [0, 22], "expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX"}]}}, "is_translator": false, "screen_name": "__jcbl__", "created_at": "Sun Sep 11 23:49:28 +0000 2011"}, "id_str": "225486809", "id": 225486809, "following": false, "full_name": "@__jcbl__/my-bots", "created_at": "Tue Nov 10 16:43:07 +0000 2015", "uri": "/__jcbl__/lists/my-bots"}], "next_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "0", "previous_cursor": 0}
View
1 testdata/get_get_memberships_himawari8bot.json
@@ -0,0 +1 @@
+{"lists": [{"description": "", "subscriber_count": 0, "slug": "raumfahrt", "name": "Raumfahrt", "member_count": 47, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 63, "profile_image_url": "http://pbs.twimg.com/profile_images/656242621032046592/-bxfUp2b_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/510448601944698883/YGZKFmFg.png", "verified": false, "lang": "de", "protected": false, "url": "https://t.co/9dAdM3G1a8", "statuses_count": 21661, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 281072753, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "D98609", "followers_count": 406, "friends_count": 620, "location": "T\u00fcbingen", "profile_banner_url": "https://pbs.twimg.com/profile_banners/281072753/1445322767", "description": "Podcaster, Spacenerd, Serienjunkie\nProjekte: @cantaloupFM, @kultpess, @countdown_pod, @originstory_pod, @orionpodcast, @zeitungsjungen", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/510448601944698883/YGZKFmFg.png", "favourites_count": 515, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656242621032046592/-bxfUp2b_normal.jpg", "geo_enabled": true, "time_zone": "Berlin", "name": "Dr. Merkw\u00fcrdigliebe", "id_str": "281072753", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/cvandermeyden", "indices": [0, 23], "expanded_url": "https://about.me/cvandermeyden", "url": "https://t.co/9dAdM3G1a8"}]}}, "is_translator": false, "screen_name": "vanilla_chief", "created_at": "Tue Apr 12 15:35:55 +0000 2011"}, "id_str": "214370503", "id": 214370503, "following": false, "full_name": "@vanilla_chief/raumfahrt", "created_at": "Fri Jul 17 05:35:54 +0000 2015", "uri": "/vanilla_chief/lists/raumfahrt"}, {"description": "My general list, for narrowing my focus when I need to tune out my other interests!", "subscriber_count": 10, "slug": "space", "name": "Space", "member_count": 867, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 3913, "profile_image_url": "http://pbs.twimg.com/profile_images/2022033669/IMG_0359_pp_square_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5273384/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/p8pGh3SB27", "statuses_count": 40472, "profile_text_color": "3D1957", "profile_background_tile": true, "follow_request_sent": false, "id": 14807898, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "1918CD", "followers_count": 94418, "friends_count": 1222, "location": "Pasadena, CA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14807898/1398902050", "description": "Senior Editor & Planetary Evangelist, The Planetary Society. Planetary scientist, writer, public speaker. Writing a book on Curiosity mission. Asteroid 274860.", "profile_sidebar_fill_color": "7AC3EE", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5273384/bg.gif", "favourites_count": 1201, "profile_background_color": "642D8B", "is_translation_enabled": false, "profile_sidebar_border_color": "65B0DA", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2022033669/IMG_0359_pp_square_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "Emily Lakdawalla", "id_str": "14807898", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "planetary.org/emily", "indices": [0, 22], "expanded_url": "http://planetary.org/emily", "url": "http://t.co/p8pGh3SB27"}]}}, "is_translator": false, "screen_name": "elakdawalla", "created_at": "Sat May 17 04:43:01 +0000 2008"}, "id_str": "200305538", "id": 200305538, "following": false, "full_name": "@elakdawalla/space", "created_at": "Sat Mar 28 16:46:24 +0000 2015", "uri": "/elakdawalla/lists/space"}, {"description": "SPAAAAAACE", "subscriber_count": 0, "slug": "space-news", "name": "space_news", "member_count": 46, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 30, "profile_image_url": "http://pbs.twimg.com/profile_images/678347666368106496/GXULqbbH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 15766, "profile_text_color": "666666", "profile_background_tile": false, "follow_request_sent": false, "id": 200598623, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "000000", "followers_count": 554, "friends_count": 468, "location": "Germany", "profile_banner_url": "https://pbs.twimg.com/profile_banners/200598623/1398409828", "description": "debris / science / music / computers / rants / neat stuff", "profile_sidebar_fill_color": "252429", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "favourites_count": 0, "profile_background_color": "1A1B1F", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678347666368106496/GXULqbbH_normal.png", "geo_enabled": false, "time_zone": "Bern", "name": "\u00b5B", "id_str": "200598623", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "voidshaper", "created_at": "Sat Oct 09 18:28:07 +0000 2010"}, "id_str": "81343636", "id": 81343636, "following": false, "full_name": "@voidshaper/space-news", "created_at": "Thu Nov 29 10:23:36 +0000 2012", "uri": "/voidshaper/lists/space-news"}, {"description": "", "subscriber_count": 0, "slug": "bots", "name": "Bots", "member_count": 23, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 13, "profile_image_url": "http://pbs.twimg.com/profile_images/521406868380336128/rot1F9gq_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/hyN4982dpu", "statuses_count": 4985, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 117036191, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "7A2727", "followers_count": 383, "friends_count": 676, "location": "Glasgow, Scotland", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117036191/1428835522", "description": "Interaction design and development. Front-end developer @tictocfamily. @DJCAD DIxD graduate. Pictured: me writing CSS", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 561, "profile_background_color": "797979", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/521406868380336128/rot1F9gq_normal.jpeg", "geo_enabled": true, "time_zone": "London", "name": "K\u00ffle Macq\u00fcarrie", "id_str": "117036191", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kylemacquarrie.co.uk", "indices": [0, 22], "expanded_url": "http://kylemacquarrie.co.uk/", "url": "http://t.co/hyN4982dpu"}]}}, "is_translator": false, "screen_name": "k_macquarrie", "created_at": "Wed Feb 24 10:04:32 +0000 2010"}, "id_str": "227477436", "id": 227477436, "following": false, "full_name": "@k_macquarrie/bots", "created_at": "Sat Nov 28 13:14:11 +0000 2015", "uri": "/k_macquarrie/lists/bots"}, {"description": "anything space or science", "subscriber_count": 1, "slug": "space", "name": "space", "member_count": 60, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 108, "profile_image_url": "http://pbs.twimg.com/profile_images/637569681511985152/4hswubZr_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 868, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 75225695, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 10647, "friends_count": 10192, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/75225695/1410266939", "description": "I love science especially pictures of the earth and space", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": 36000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 3668, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637569681511985152/4hswubZr_normal.jpg", "geo_enabled": false, "time_zone": "Brisbane", "name": "willbaren", "id_str": "75225695", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "willbaren", "created_at": "Fri Sep 18 07:31:37 +0000 2009"}, "id_str": "84899291", "id": 84899291, "following": false, "full_name": "@willbaren/space", "created_at": "Wed Feb 06 20:47:06 +0000 2013", "uri": "/willbaren/lists/space"}, {"description": "Yes, I'm a nerd..", "subscriber_count": 0, "slug": "weather-science", "name": "Weather & Science", "member_count": 231, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 93, "profile_image_url": "http://pbs.twimg.com/profile_images/421323929177690114/yiTZl9wC_normal.jpeg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/718919515/dca6c0dc790fe44afa560355d2be7462.jpeg", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 21835, "profile_text_color": "FC5884", "profile_background_tile": true, "follow_request_sent": false, "id": 15656860, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "B78BC9", "followers_count": 1383, "friends_count": 1973, "location": "The Deep South (southern AL)", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15656860/1400044021", "description": "NWS Meteorologist. 200 mile Ragnar Relay Runner. Kentucky girl at heart, loving all things bourbon & southern. AOII Love \u2665 Go Noles \u2665 Go Ball U {views are mine}", "profile_sidebar_fill_color": "A39BDE", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/718919515/dca6c0dc790fe44afa560355d2be7462.jpeg", "favourites_count": 21294, "profile_background_color": "303253", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/421323929177690114/yiTZl9wC_normal.jpeg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "morganabigail", "id_str": "15656860", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "morganabigail", "created_at": "Wed Jul 30 05:27:15 +0000 2008"}, "id_str": "2035985", "id": 2035985, "following": false, "full_name": "@morganabigail/weather-science", "created_at": "Wed Nov 04 02:05:20 +0000 2009", "uri": "/morganabigail/lists/weather-science"}, {"description": "", "subscriber_count": 2, "slug": "arts-sciences", "name": "arts+sciences", "member_count": 36, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 33, "profile_image_url": "http://pbs.twimg.com/profile_images/651466730024267776/GVgaJxHC_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/23229384/pattern_146.gif", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 16014, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 21264348, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "2AB0E0", "followers_count": 339, "friends_count": 256, "location": "PGH+ATL+BOS+\u5fb3\u5cf6\u770c", "profile_banner_url": "https://pbs.twimg.com/profile_banners/21264348/1445839994", "description": "Trying to be good and do good.\n(Also: geeking out over volcanoes, \u65e5\u672c\u8a9e, animation and creativity. I'm a happily mixed bag.)", "profile_sidebar_fill_color": "DCECF5", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/23229384/pattern_146.gif", "favourites_count": 286, "profile_background_color": "333333", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651466730024267776/GVgaJxHC_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "skp.", "id_str": "21264348", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "samosamancer", "created_at": "Thu Feb 19 01:34:49 +0000 2009"}, "id_str": "15769654", "id": 15769654, "following": false, "full_name": "@samosamancer/arts-sciences", "created_at": "Tue Jun 29 18:58:34 +0000 2010", "uri": "/samosamancer/lists/arts-sciences"}, {"description": "", "subscriber_count": 0, "slug": "international-weather", "name": "INTERNATIONAL WEATHER", "member_count": 23, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 0, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 4, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1165400875, "default_profile_image": true, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 3, "friends_count": 128, "location": "", "description": "", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": 19800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "geo_enabled": false, "time_zone": "Kolkata", "name": "ABHIJIT GHOSH", "id_str": "1165400875", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ABHIJITIND16", "created_at": "Sun Feb 10 09:13:19 +0000 2013"}, "id_str": "231342470", "id": 231342470, "following": false, "full_name": "@ABHIJITIND16/international-weather", "created_at": "Wed Jan 06 19:26:18 +0000 2016", "uri": "/ABHIJITIND16/lists/international-weather"}, {"description": "", "subscriber_count": 1, "slug": "zuus", "name": "zuus", "member_count": 105, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 0, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771146453/3ce1d7f804d141445ac11cf637f6e549_normal.png", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121258143/730b95553cffbd178cb41a18a58e4953.png", "verified": false, "lang": "ja", "protected": false, "url": null, "statuses_count": 205, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 534780961, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0091FF", "followers_count": 126, "friends_count": 51, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/534780961/1385060696", "description": "http://t.co/SUmtzLGIrx", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": 32400, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121258143/730b95553cffbd178cb41a18a58e4953.png", "favourites_count": 254, "profile_background_color": "FCFCFC", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771146453/3ce1d7f804d141445ac11cf637f6e549_normal.png", "geo_enabled": false, "time_zone": "Osaka", "name": "\u30a2", "id_str": "534780961", "entities": {"description": {"urls": [{"display_url": "a-na5.tumblr.com", "indices": [0, 22], "expanded_url": "http://a-na5.tumblr.com/", "url": "http://t.co/SUmtzLGIrx"}]}}, "is_translator": false, "screen_name": "yuruyurau", "created_at": "Fri Mar 23 22:42:58 +0000 2012"}, "id_str": "159464220", "id": 159464220, "following": false, "full_name": "@yuruyurau/zuus", "created_at": "Sat Jul 19 15:48:58 +0000 2014", "uri": "/yuruyurau/lists/zuus"}, {"description": "", "subscriber_count": 0, "slug": "test", "name": "test", "member_count": 1, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 1, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": true, "url": null, "statuses_count": 67, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 4012966701, "default_profile_image": true, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "description": "", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "geo_enabled": true, "time_zone": null, "name": "notinourselves", "id_str": "4012966701", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "notinourselves", "created_at": "Wed Oct 21 23:53:04 +0000 2015"}, "id_str": "229581524", "id": 229581524, "following": true, "full_name": "@notinourselves/test", "created_at": "Fri Dec 18 20:00:45 +0000 2015", "uri": "/notinourselves/lists/test"}, {"description": "Fuentes primarias de informaci\u00f3n relativa a ciclones tropicales de todo el mundo", "subscriber_count": 0, "slug": "ciclones-tropicales", "name": "Ciclones tropicales", "member_count": 26, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 150, "profile_image_url": "http://pbs.twimg.com/profile_images/689786930377134080/1rwzjgN8_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "es", "protected": false, "url": "http://t.co/5ZsuudFfB8", "statuses_count": 27724, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 140000155, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "009999", "followers_count": 3120, "friends_count": 1207, "location": "Spanish & European citizen.", "profile_banner_url": "https://pbs.twimg.com/profile_banners/140000155/1451675273", "description": "B.Sc. Environmental Risk Management, stormchaser @ecazatormentas and immersed in a master's degree in Renewable Energies. Looking for new opportunities.", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 10238, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "EEEEEE", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689786930377134080/1rwzjgN8_normal.jpg", "geo_enabled": true, "time_zone": "Madrid", "name": "Pedro C. Fern\u00e1ndez", "id_str": "140000155", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cazatormentas.net", "indices": [0, 22], "expanded_url": "http://www.cazatormentas.net", "url": "http://t.co/5ZsuudFfB8"}]}}, "is_translator": false, "screen_name": "PedroCFernandez", "created_at": "Tue May 04 08:19:37 +0000 2010"}, "id_str": "210635540", "id": 210635540, "following": false, "full_name": "@PedroCFernandez/ciclones-tropicales", "created_at": "Sun Jun 14 09:19:08 +0000 2015", "uri": "/PedroCFernandez/lists/ciclones-tropicales"}, {"description": "Clouds, typhoons, warming, causes, impacts and much more.", "subscriber_count": 5, "slug": "climate-en", "name": "Climate (EN)", "member_count": 499, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 229, "profile_image_url": "http://pbs.twimg.com/profile_images/587182496858542080/IPSqv41A_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 23704, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 350274399, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "3B94D9", "followers_count": 6092, "friends_count": 6051, "location": "Quebec City", "profile_banner_url": "https://pbs.twimg.com/profile_banners/350274399/1442609108", "description": "Screenshots of what's captured by the ISS live cameras. And much more... #Earth #space #sky #clouds #planet #image #pic #blue #ISS #weather #EarthandClouds", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7980, "profile_background_color": "000000", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/587182496858542080/IPSqv41A_normal.png", "geo_enabled": false, "time_zone": "Quito", "name": "Earth and Clouds", "id_str": "350274399", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "EarthandClouds", "created_at": "Sun Aug 07 14:08:00 +0000 2011"}, "id_str": "217969187", "id": 217969187, "following": false, "full_name": "@EarthandClouds/climate-en", "created_at": "Sat Aug 22 17:55:06 +0000 2015", "uri": "/EarthandClouds/lists/climate-en"}, {"description": "\u2728\ud83c\udf0c\u2728", "subscriber_count": 2, "slug": "space-bots", "name": "space bots", "member_count": 10, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 105, "profile_image_url": "http://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "verified": false, "lang": "en-gb", "protected": false, "url": "https://t.co/Wz4bls6kQh", "statuses_count": 26462, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 13148, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "848484", "followers_count": 1618, "friends_count": 794, "location": "Dublin, Ireland", "profile_banner_url": "https://pbs.twimg.com/profile_banners/13148/1447542687", "description": "ambient music, art bots // @poem_exe", "profile_sidebar_fill_color": "C0DFEC", "default_profile": false, "utc_offset": 0, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "favourites_count": 64659, "profile_background_color": "EDEDF4", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "geo_enabled": false, "time_zone": "Dublin", "name": "L\u0131\u0103m", "id_str": "13148", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "liamcooke.com", "indices": [0, 23], "expanded_url": "http://liamcooke.com", "url": "https://t.co/Wz4bls6kQh"}]}}, "is_translator": false, "screen_name": "inky", "created_at": "Mon Nov 20 00:04:50 +0000 2006"}, "id_str": "189643778", "id": 189643778, "following": true, "full_name": "@inky/space-bots", "created_at": "Thu Jan 22 21:35:25 +0000 2015", "uri": "/inky/lists/space-bots"}, {"description": "", "subscriber_count": 0, "slug": "climate", "name": "climate", "member_count": 15, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 109, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 20157, "profile_text_color": "3D1957", "profile_background_tile": false, "follow_request_sent": false, "id": 15436436, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 3610, "friends_count": 1879, "location": "SF, south side", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15436436/1444629889", "description": "Marketing, politics, data. Expert on everything.", "profile_sidebar_fill_color": "7AC3EE", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", "favourites_count": 5162, "profile_background_color": "642D8B", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", "geo_enabled": true, "time_zone": "Pacific Time (US & Canada)", "name": "EMey", "id_str": "15436436", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "emeyerson", "created_at": "Tue Jul 15 03:53:59 +0000 2008"}, "id_str": "197783671", "id": 197783671, "following": false, "full_name": "@emeyerson/climate", "created_at": "Thu Mar 05 14:55:34 +0000 2015", "uri": "/emeyerson/lists/climate"}, {"description": "Just what it says on the tin.", "subscriber_count": 2, "slug": "weatherpros", "name": "weatherpros", "member_count": 77, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 16, "profile_image_url": "http://pbs.twimg.com/profile_images/2580499251/7ib6821re7elm9dqygnx_normal.jpeg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/496224147/Marshall-608x526.jpg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/E54xpWWa8q", "statuses_count": 33175, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 18383373, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "598F4C", "followers_count": 519, "friends_count": 806, "location": "NYC, baby!", "profile_banner_url": "https://pbs.twimg.com/profile_banners/18383373/1446436742", "description": "Professional writer, semi-pro gourmand, market nerd, music snob, and weather obsessive.", "profile_sidebar_fill_color": "A0C5C7", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/496224147/Marshall-608x526.jpg", "favourites_count": 4477, "profile_background_color": "709397", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2580499251/7ib6821re7elm9dqygnx_normal.jpeg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Brendan Hasenstab", "id_str": "18383373", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/brendan.hasens\u2026", "indices": [0, 23], "expanded_url": "http://about.me/brendan.hasenstab", "url": "https://t.co/E54xpWWa8q"}]}}, "is_translator": false, "screen_name": "pierrepont", "created_at": "Fri Dec 26 03:08:28 +0000 2008"}, "id_str": "24648579", "id": 24648579, "following": false, "full_name": "@pierrepont/weatherpros", "created_at": "Tue Oct 12 18:32:24 +0000 2010", "uri": "/pierrepont/lists/weatherpros"}, {"description": "", "subscriber_count": 0, "slug": "my-bots", "name": "my-bots", "member_count": 3, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/wtg3XzqQTX", "statuses_count": 325, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 372018022, "default_profile_image": false, "contributors_enabled": false, "following": true, "profile_link_color": "EE3355", "followers_count": 49, "friends_count": 306, "location": "not a very good kingdom tbh", "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1279, "profile_background_color": "FFFFFF", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "jeremy", "id_str": "372018022", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iseverythingstilltheworst.com", "indices": [0, 22], "expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX"}]}}, "is_translator": false, "screen_name": "__jcbl__", "created_at": "Sun Sep 11 23:49:28 +0000 2011"}, "id_str": "225486809", "id": 225486809, "following": false, "full_name": "@__jcbl__/my-bots", "created_at": "Tue Nov 10 16:43:07 +0000 2015", "uri": "/__jcbl__/lists/my-bots"}, {"description": "Murmuring Mechanical Maniacs' Many Mad Machinations", "subscriber_count": 6, "slug": "robot-overlords", "name": "Robot Overlords", "member_count": 2779, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 88, "profile_image_url": "http://pbs.twimg.com/profile_images/542192306577620992/AqMy7KtD_normal.png", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000081789644/4983dc46145a62ab1bef488987cbb83f.jpeg", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/fIFj1mcFTs", "statuses_count": 34723, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 407933355, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF8400", "followers_count": 1151, "friends_count": 2413, "location": "Revengerist Compound", "profile_banner_url": "https://pbs.twimg.com/profile_banners/407933355/1417717663", "description": "The Revengerists are a consortium of fighters of crime and evil; globetrotting super-powered adventurers, and benevolent protectors of all things awesome.", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": -32400, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000081789644/4983dc46145a62ab1bef488987cbb83f.jpeg", "favourites_count": 1910, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/542192306577620992/AqMy7KtD_normal.png", "geo_enabled": false, "time_zone": "Alaska", "name": "The Revengerists!", "id_str": "407933355", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "revengerists.com", "indices": [0, 22], "expanded_url": "http://revengerists.com", "url": "http://t.co/fIFj1mcFTs"}]}}, "is_translator": false, "screen_name": "TheRevengerists", "created_at": "Tue Nov 08 19:10:31 +0000 2011"}, "id_str": "193879644", "id": 193879644, "following": false, "full_name": "@TheRevengerists/robot-overlords", "created_at": "Sun Feb 01 15:53:13 +0000 2015", "uri": "/TheRevengerists/lists/robot-overlords"}, {"description": "Weather people", "subscriber_count": 20, "slug": "weather", "name": "Weather", "member_count": 1017, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 582, "profile_image_url": "http://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", "verified": true, "lang": "en", "protected": false, "url": "https://t.co/dMpfqObOsm", "statuses_count": 46379, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 11433152, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "000000", "followers_count": 10248, "friends_count": 3696, "location": "Raleigh, NC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/11433152/1405353644", "description": "I am a meteorologist, instructor, blogger, and podcaster. Flying is my latest adventure. I tweet #ncwx, communication, #NCState, #Cubs, #BBQ, & #avgeek stuff.", "profile_sidebar_fill_color": "E0FF92", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", "favourites_count": 1259, "profile_background_color": "0000FF", "is_translation_enabled": false, "profile_sidebar_border_color": "87BC44", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Nate Johnson", "id_str": "11433152", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "plus.google.com/+NateJohnson/", "indices": [0, 23], "expanded_url": "https://plus.google.com/+NateJohnson/", "url": "https://t.co/dMpfqObOsm"}]}}, "is_translator": false, "screen_name": "nsj", "created_at": "Sat Dec 22 14:59:53 +0000 2007"}, "id_str": "64954121", "id": 64954121, "following": false, "full_name": "@nsj/weather", "created_at": "Tue Feb 07 20:26:35 +0000 2012", "uri": "/nsj/lists/weather"}, {"description": "", "subscriber_count": 9, "slug": "weather", "name": "Weather", "member_count": 619, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 128, "profile_image_url": "http://pbs.twimg.com/profile_images/688024428073086977/TxsZfQP7_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/LB5LuXEVqQ", "statuses_count": 35806, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 11392632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 1746, "friends_count": 2198, "location": "Papillion, Nebraska, USA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/11392632/1454049844", "description": "Science & Weather geek \u2022 Cybersecurity \u2022 \u2708\ufe0fUSAF vet \u2022 ex aviation forecaster \u2022 557WW \u2022 Waze \u2022 INTJ #GoPackGo #InfoSec \u2b50\ufe0f/|\\", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -21600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", "favourites_count": 165, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688024428073086977/TxsZfQP7_normal.jpg", "geo_enabled": true, "time_zone": "Central Time (US & Canada)", "name": "Gary \u039a0\u03b2\u2c62\u0259 \u2614\ufe0f", "id_str": "11392632", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/sgtgary", "indices": [0, 23], "expanded_url": "http://about.me/sgtgary", "url": "https://t.co/LB5LuXEVqQ"}]}}, "is_translator": false, "screen_name": "sgtgary", "created_at": "Fri Dec 21 02:44:45 +0000 2007"}, "id_str": "2053636", "id": 2053636, "following": false, "full_name": "@sgtgary/weather", "created_at": "Wed Nov 04 05:18:31 +0000 2009", "uri": "/sgtgary/lists/weather"}, {"description": "", "subscriber_count": 3, "slug": "people-ive-faved", "name": "People Ive faved", "member_count": 640, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 177, "profile_image_url": "http://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/8wmgXFQ8U8", "statuses_count": 9205, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 2344125559, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "9266CC", "followers_count": 1760, "friends_count": 2378, "location": "South San Francisco, CA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2344125559/1444427702", "description": "@Minted Photo Editor & Design Associate. Wife & investor est. August 2016. My bot sister: @bitpixi_ebooks.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": -25200, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 23342, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", "geo_enabled": true, "time_zone": "Arizona", "name": "\u0f3c \u3064 \u25d5_\u25d5 \u0f3d\u3064 kasey?", "id_str": "2344125559", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bitpixi.com", "indices": [0, 23], "expanded_url": "http://www.bitpixi.com", "url": "https://t.co/8wmgXFQ8U8"}]}}, "is_translator": false, "screen_name": "bitpixi", "created_at": "Fri Feb 14 21:09:05 +0000 2014"}, "id_str": "220869009", "id": 220869009, "following": false, "full_name": "@bitpixi/people-ive-faved", "created_at": "Wed Sep 23 07:22:53 +0000 2015", "uri": "/bitpixi/lists/people-ive-faved"}], "next_cursor": 1516801501949118834, "previous_cursor_str": "0", "next_cursor_str": "1516801501949118834", "previous_cursor": 0}
View
1 testdata/get_get_subscriptions.json
@@ -0,0 +1 @@
+{"lists": [{"description": "\u2728\ud83c\udf0c\u2728", "subscriber_count": 2, "slug": "space-bots", "name": "space bots", "member_count": 10, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 105, "profile_image_url": "http://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "verified": false, "lang": "en-gb", "protected": false, "url": "https://t.co/Wz4bls6kQh", "statuses_count": 26462, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 13148, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "848484", "followers_count": 1618, "friends_count": 794, "location": "Dublin, Ireland", "profile_banner_url": "https://pbs.twimg.com/profile_banners/13148/1447542687", "description": "ambient music, art bots // @poem_exe", "profile_sidebar_fill_color": "C0DFEC", "default_profile": false, "utc_offset": 0, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "favourites_count": 64659, "profile_background_color": "EDEDF4", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "geo_enabled": false, "time_zone": "Dublin", "name": "L\u0131\u0103m", "id_str": "13148", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "liamcooke.com", "indices": [0, 23], "expanded_url": "http://liamcooke.com", "url": "https://t.co/Wz4bls6kQh"}]}}, "is_translator": false, "screen_name": "inky", "created_at": "Mon Nov 20 00:04:50 +0000 2006"}, "id_str": "189643778", "id": 189643778, "following": true, "full_name": "@inky/space-bots", "created_at": "Thu Jan 22 21:35:25 +0000 2015", "uri": "/inky/lists/space-bots"}], "next_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "0", "previous_cursor": 0}
View
1 testdata/get_get_subscriptions_uid.json
@@ -0,0 +1 @@
+{"lists": [{"description": "Waiting For Godot in bot form for NaNoGenMo2015", "subscriber_count": 5, "slug": "waiting-for-gobot", "name": "Waiting For GoBot", "member_count": 7, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 36, "profile_image_url": "http://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/n9o8lGQuY4", "statuses_count": 1990, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 193000769, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF63ED", "followers_count": 241, "friends_count": 990, "location": "Seattle, WA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/193000769/1451973415", "description": "HTML5/CSS3 artist, nb they/them/she/babe/noise-witch/cat/sea-monster. if u think my tweets r juvenile thats probably cuz they are, dad.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 6040, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "The They/She", "id_str": "193000769", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "colewillsea.com", "indices": [0, 23], "expanded_url": "http://www.colewillsea.com", "url": "https://t.co/n9o8lGQuY4"}]}}, "is_translator": false, "screen_name": "coleseadubs", "created_at": "Mon Sep 20 18:35:04 +0000 2010"}, "id_str": "224581495", "id": 224581495, "following": false, "full_name": "@coleseadubs/waiting-for-gobot", "created_at": "Sun Nov 01 16:04:26 +0000 2015", "uri": "/coleseadubs/lists/waiting-for-gobot"}, {"description": "my bots", "subscriber_count": 1, "slug": "my-bots", "name": "my bots", "member_count": 4, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 70, "profile_image_url": "http://pbs.twimg.com/profile_images/651222836980224001/W6gaQrkt_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/658259865/u8tr7egiegp7b5xjmg2e.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/75tZrhEwDu", "statuses_count": 16168, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 14816237, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF0055", "followers_count": 980, "friends_count": 2001, "location": "Fairbanks, Alaska", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14816237/1412222318", "description": "Graphics at @latimes. Formerly @newsminer. Feminist. Not a vegan. I like bots, baseball and burritos. @burritopatents|@SombreroWatch|@andromedabot|@colorschemez", "profile_sidebar_fill_color": "CCCCCC", "default_profile": false, "utc_offset": -32400, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/658259865/u8tr7egiegp7b5xjmg2e.png", "favourites_count": 4524, "profile_background_color": "FFFDF7", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651222836980224001/W6gaQrkt_normal.jpg", "geo_enabled": true, "time_zone": "Alaska", "name": "Joe Fox", "id_str": "14816237", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joemfox.com", "indices": [0, 23], "expanded_url": "http://joemfox.com", "url": "https://t.co/75tZrhEwDu"}]}}, "is_translator": false, "screen_name": "joemfox", "created_at": "Sun May 18 00:40:52 +0000 2008"}, "id_str": "197631751", "id": 197631751, "following": false, "full_name": "@joemfox/my-bots", "created_at": "Wed Mar 04 06:39:49 +0000 2015", "uri": "/joemfox/lists/my-bots"}, {"description": "Dumb Twitter bots I've made", "subscriber_count": 1, "slug": "mike-s-bots", "name": "Mike's Bots", "member_count": 5, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 32, "profile_image_url": "http://pbs.twimg.com/profile_images/604672054969937921/BkiwSfK0_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4287390/venus_colored.jpg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/67B372qbbd", "statuses_count": 13853, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 20108996, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "006661", "followers_count": 465, "friends_count": 287, "location": "NYC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/20108996/1393739875", "description": "My dog's name is Pancake.", "profile_sidebar_fill_color": "7A95A5", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4287390/venus_colored.jpg", "favourites_count": 876, "profile_background_color": "556D75", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604672054969937921/BkiwSfK0_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Mike Watson", "id_str": "20108996", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mikewatson.me", "indices": [0, 23], "expanded_url": "http://mikewatson.me/", "url": "https://t.co/67B372qbbd"}]}}, "is_translator": false, "screen_name": "mike_watson", "created_at": "Thu Feb 05 00:15:12 +0000 2009"}, "id_str": "211206643", "id": 211206643, "following": false, "full_name": "@mike_watson/mike-s-bots", "created_at": "Fri Jun 19 02:18:28 +0000 2015", "uri": "/mike_watson/lists/mike-s-bots"}, {"description": "", "subscriber_count": 1, "slug": "my-bots", "name": "My bots", "member_count": 4, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 8, "profile_image_url": "http://pbs.twimg.com/profile_images/555793196131688448/e6a068a0_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/6fAXA9friH", "statuses_count": 159, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2533509324, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "94D487", "followers_count": 281, "friends_count": 110, "location": "\u219f \u219f \u219f", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2533509324/1420644472", "description": "", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7836, "profile_background_color": "000000", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555793196131688448/e6a068a0_normal.jpeg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "doeg", "id_str": "2533509324", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "doeg.gy", "indices": [0, 22], "expanded_url": "http://doeg.gy/", "url": "http://t.co/6fAXA9friH"}]}}, "is_translator": false, "screen_name": "doeg", "created_at": "Thu May 29 22:23:01 +0000 2014"}, "id_str": "187765235", "id": 187765235, "following": false, "full_name": "@doeg/my-bots", "created_at": "Wed Jan 07 04:30:10 +0000 2015", "uri": "/doeg/lists/my-bots"}, {"description": "this is where the twitters bots i've made live!", "subscriber_count": 1, "slug": "my-bots", "name": "my-bots", "member_count": 5, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 16, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000448795123/f6e585845c65ff59e28778f8ea26a994_normal.png", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000176688294/VItijy85.png", "verified": false, "lang": "fr", "protected": false, "url": "https://t.co/4TvnHW4EEI", "statuses_count": 1030, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 118355207, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "C24646", "followers_count": 184, "friends_count": 516, "location": "Lund, Sweden", "profile_banner_url": "https://pbs.twimg.com/profile_banners/118355207/1403873053", "description": "Computer science student, intermittently voracious reader, game experimenter and electronic music explorer.", "profile_sidebar_fill_color": "C0DFEC", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000176688294/VItijy85.png", "favourites_count": 5271, "profile_background_color": "022330", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000448795123/f6e585845c65ff59e28778f8ea26a994_normal.png", "geo_enabled": false, "time_zone": "Stockholm", "name": "Alexander Cobleigh", "id_str": "118355207", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cblgh.org", "indices": [0, 23], "expanded_url": "https://cblgh.org", "url": "https://t.co/4TvnHW4EEI"}]}}, "is_translator": false, "screen_name": "cblgh", "created_at": "Sun Feb 28 12:05:51 +0000 2010"}, "id_str": "220465434", "id": 220465434, "following": false, "full_name": "@cblgh/my-bots", "created_at": "Fri Sep 18 17:37:24 +0000 2015", "uri": "/cblgh/lists/my-bots"}, {"description": "Twitterbots that I made.", "subscriber_count": 2, "slug": "my-twitterbots1", "name": "My Twitterbots", "member_count": 5, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 36, "profile_image_url": "http://pbs.twimg.com/profile_images/652937129689923584/ItggjTDP_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/LscMLxozN6", "statuses_count": 1756, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1267873218, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 429, "friends_count": 345, "location": "Brooklyn, NY; prev. Bratislava", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1267873218/1412181738", "description": "Husband, dad, web developer. I made https://t.co/q0OvD03zN5, https://t.co/WKb4iyqL9H and other, less useful stuff. #botmakers #edtech #teachtheweb #indieweb", "profile_sidebar_fill_color": "E6F6F9", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "favourites_count": 3312, "profile_background_color": "DBE9ED", "is_translation_enabled": false, "profile_sidebar_border_color": "DBE9ED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652937129689923584/ItggjTDP_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "Stefan Bohacek", "id_str": "1267873218", "entities": {"description": {"urls": [{"display_url": "simplesharingbuttons.com", "indices": [37, 60], "expanded_url": "http://simplesharingbuttons.com", "url": "https://t.co/q0OvD03zN5"}, {"display_url": "botwiki.org", "indices": [62, 85], "expanded_url": "http://botwiki.org", "url": "https://t.co/WKb4iyqL9H"}]}, "url": {"urls": [{"display_url": "fourtonfish.com", "indices": [0, 23], "expanded_url": "https://fourtonfish.com/", "url": "https://t.co/LscMLxozN6"}]}}, "is_translator": false, "screen_name": "fourtonfish", "created_at": "Thu Mar 14 20:10:32 +0000 2013"}, "id_str": "214578852", "id": 214578852, "following": false, "full_name": "@fourtonfish/my-twitterbots1", "created_at": "Sun Jul 19 12:22:37 +0000 2015", "uri": "/fourtonfish/lists/my-twitterbots1"}, {"description": "bots that I built or collaborated on =^.^=. mostly inactive and egrettable", "subscriber_count": 6, "slug": "old-bot-list", "name": "old bot list", "member_count": 116, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 36, "profile_image_url": "http://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/n9o8lGQuY4", "statuses_count": 1990, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 193000769, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF63ED", "followers_count": 241, "friends_count": 990, "location": "Seattle, WA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/193000769/1451973415", "description": "HTML5/CSS3 artist, nb they/them/she/babe/noise-witch/cat/sea-monster. if u think my tweets r juvenile thats probably cuz they are, dad.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 6040, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "The They/She", "id_str": "193000769", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "colewillsea.com", "indices": [0, 23], "expanded_url": "http://www.colewillsea.com", "url": "https://t.co/n9o8lGQuY4"}]}}, "is_translator": false, "screen_name": "coleseadubs", "created_at": "Mon Sep 20 18:35:04 +0000 2010"}, "id_str": "168789362", "id": 168789362, "following": false, "full_name": "@coleseadubs/old-bot-list", "created_at": "Thu Sep 04 14:10:19 +0000 2014", "uri": "/coleseadubs/lists/old-bot-list"}, {"description": "Twitterbots made by @ojahnn.", "subscriber_count": 4, "slug": "my-bots", "name": "My Bots", "member_count": 20, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/594843502892167168/4ZMRDo_Z_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000173082583/GPLG49vF.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/OMsvx9t5RS", "statuses_count": 6205, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 24693754, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 412, "friends_count": 377, "location": "D\u00fcsseldorf", "profile_banner_url": "https://pbs.twimg.com/profile_banners/24693754/1438796424", "description": "I like to linguist computers. Tweeting mostly in German. Look at the twitterbots I made: https://t.co/PfqKMNMxJb\u2026", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000173082583/GPLG49vF.png", "favourites_count": 1787, "profile_background_color": "757575", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/594843502892167168/4ZMRDo_Z_normal.jpg", "geo_enabled": false, "time_zone": null, "name": "Esther Seyffarth", "id_str": "24693754", "entities": {"description": {"urls": [{"display_url": "twitter.com/ojahnn/lists/m", "indices": [89, 112], "expanded_url": "http://twitter.com/ojahnn/lists/m", "url": "https://t.co/PfqKMNMxJb"}]}, "url": {"urls": [{"display_url": "enigmabrot.de/projects/", "indices": [0, 23], "expanded_url": "https://enigmabrot.de/projects/", "url": "https://t.co/OMsvx9t5RS"}]}}, "is_translator": false, "screen_name": "ojahnn", "created_at": "Mon Mar 16 13:55:48 +0000 2009"}, "id_str": "205637792", "id": 205637792, "following": false, "full_name": "@ojahnn/my-bots", "created_at": "Sun May 10 15:15:31 +0000 2015", "uri": "/ojahnn/lists/my-bots"}, {"description": "", "subscriber_count": 1, "slug": "cuteness-therapy", "name": "cuteness therapy", "member_count": 17, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 35, "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "ru", "protected": false, "url": "https://t.co/JiCyW1dzUZ", "statuses_count": 12637, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 194096921, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "67777A", "followers_count": 456, "friends_count": 1133, "location": "Melbourne, Australia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: https://t.co/p5t2rZJajQ", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 39600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 9256, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "geo_enabled": false, "time_zone": "Melbourne", "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d hiatus", "id_str": "194096921", "entities": {"description": {"urls": [{"display_url": "nightmare.website", "indices": [127, 150], "expanded_url": "http://nightmare.website", "url": "https://t.co/p5t2rZJajQ"}]}, "url": {"urls": [{"display_url": "memoriata.com", "indices": [0, 23], "expanded_url": "http://memoriata.com/", "url": "https://t.co/JiCyW1dzUZ"}]}}, "is_translator": false, "screen_name": "dbaker_h", "created_at": "Thu Sep 23 12:34:18 +0000 2010"}, "id_str": "212023677", "id": 212023677, "following": false, "full_name": "@dbaker_h/cuteness-therapy", "created_at": "Sat Jun 27 00:23:03 +0000 2015", "uri": "/dbaker_h/lists/cuteness-therapy"}, {"description": "making sure the kids aren't up to any mischief", "subscriber_count": 2, "slug": "bot-family", "name": "bot family", "member_count": 17, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 35, "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "ru", "protected": false, "url": "https://t.co/JiCyW1dzUZ", "statuses_count": 12637, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 194096921, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "67777A", "followers_count": 456, "friends_count": 1133, "location": "Melbourne, Australia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: https://t.co/p5t2rZJajQ", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 39600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 9256, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "geo_enabled": false, "time_zone": "Melbourne", "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d hiatus", "id_str": "194096921", "entities": {"description": {"urls": [{"display_url": "nightmare.website", "indices": [127, 150], "expanded_url": "http://nightmare.website", "url": "https://t.co/p5t2rZJajQ"}]}, "url": {"urls": [{"display_url": "memoriata.com", "indices": [0, 23], "expanded_url": "http://memoriata.com/", "url": "https://t.co/JiCyW1dzUZ"}]}}, "is_translator": false, "screen_name": "dbaker_h", "created_at": "Thu Sep 23 12:34:18 +0000 2010"}, "id_str": "142381252", "id": 142381252, "following": false, "full_name": "@dbaker_h/bot-family", "created_at": "Thu Jul 03 13:20:58 +0000 2014", "uri": "/dbaker_h/lists/bot-family"}, {"description": "pls @ me if one becomes self-aware so I can give her my root password (https://github.com/alicemaz)", "subscriber_count": 2, "slug": "my-bots", "name": "my bots", "member_count": 8, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 197, "profile_image_url": "http://pbs.twimg.com/profile_images/639995326745677824/Ir73bU7n_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/GJAnR54r58", "statuses_count": 42460, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 63506279, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 4728, "friends_count": 288, "location": "San Francisco, CA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/63506279/1451912199", "description": "witch of the wired | \u26a2 \u26a7 #\ufe0f", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 22592, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639995326745677824/Ir73bU7n_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "Alice Maz", "id_str": "63506279", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "alicemaz.com", "indices": [0, 22], "expanded_url": "http://www.alicemaz.com/", "url": "http://t.co/GJAnR54r58"}]}}, "is_translator": false, "screen_name": "alicemazzy", "created_at": "Thu Aug 06 18:53:51 +0000 2009"}, "id_str": "199134790", "id": 199134790, "following": false, "full_name": "@alicemazzy/my-bots", "created_at": "Tue Mar 17 15:46:22 +0000 2015", "uri": "/alicemazzy/lists/my-bots"}, {"description": "Twitter bots I've made.", "subscriber_count": 1, "slug": "my-bots", "name": "My bots", "member_count": 7, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 174, "profile_image_url": "http://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/de9VPgQnNT", "statuses_count": 14629, "profile_text_color": "273633", "profile_background_tile": true, "follow_request_sent": false, "id": 5746882, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "2D2823", "followers_count": 7391, "friends_count": 6125, "location": "Seattle, WA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/5746882/1398198050", "description": "social justice carer-abouter, feeling-haver, net art maker, #botALLY \u2665 javascript & python \u26a1\ufe0f pronouns: he/him https://t.co/ycsix8og0H", "profile_sidebar_fill_color": "F5F5F5", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", "favourites_count": 17026, "profile_background_color": "204443", "is_translation_enabled": false, "profile_sidebar_border_color": "1A3230", "profile_image_url_https": "https://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", "geo_enabled": true, "time_zone": "Pacific Time (US & Canada)", "name": "beauring name", "id_str": "5746882", "entities": {"description": {"urls": [{"display_url": "openhumans.org", "indices": [111, 134], "expanded_url": "http://openhumans.org", "url": "https://t.co/ycsix8og0H"}]}, "url": {"urls": [{"display_url": "beaugunderson.com", "indices": [0, 23], "expanded_url": "https://beaugunderson.com/", "url": "https://t.co/de9VPgQnNT"}]}}, "is_translator": false, "screen_name": "beaugunderson", "created_at": "Thu May 03 17:46:35 +0000 2007"}, "id_str": "173125727", "id": 173125727, "following": false, "full_name": "@beaugunderson/my-bots", "created_at": "Thu Oct 09 10:00:43 +0000 2014", "uri": "/beaugunderson/lists/my-bots"}, {"description": "Tweets from my bots.", "subscriber_count": 7, "slug": "bots", "name": "Bots", "member_count": 23, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 37, "profile_image_url": "http://pbs.twimg.com/profile_images/650473302339661824/xXXXUvo4_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000178573366/QREOCeJe.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/tbec5kxrFT", "statuses_count": 7761, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1098206508, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "E30254", "followers_count": 394, "friends_count": 488, "location": "philadelphia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1098206508/1421711386", "description": "making games @PaisleyGames / #botALLY", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000178573366/QREOCeJe.png", "favourites_count": 5139, "profile_background_color": "02E391", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650473302339661824/xXXXUvo4_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "tobi hahn", "id_str": "1098206508", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hahndynasty.net", "indices": [0, 22], "expanded_url": "http://hahndynasty.net", "url": "http://t.co/tbec5kxrFT"}]}}, "is_translator": false, "screen_name": "rainshapes", "created_at": "Thu Jan 17 13:51:19 +0000 2013"}, "id_str": "92234099", "id": 92234099, "following": false, "full_name": "@rainshapes/bots", "created_at": "Tue Jul 02 15:27:53 +0000 2013", "uri": "/rainshapes/lists/bots"}, {"description": "", "subscriber_count": 4, "slug": "my-bots", "name": "My Bots", "member_count": 16, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 62, "profile_image_url": "http://pbs.twimg.com/profile_images/597949312241303552/opTWI2QS_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/QagHaerdUw", "statuses_count": 26641, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 52893, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 798, "friends_count": 2003, "location": "NYC via Hackensack", "profile_banner_url": "https://pbs.twimg.com/profile_banners/52893/1398313766", "description": "I fav tweets. Pop culture. dumb jokes. TV. feminist . frontend developer for @shutterstock in nyc. #botALLY", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 28948, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597949312241303552/opTWI2QS_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "Stefan Hayden", "id_str": "52893", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stefanhayden.com", "indices": [0, 22], "expanded_url": "http://www.stefanhayden.com/", "url": "http://t.co/QagHaerdUw"}]}}, "is_translator": false, "screen_name": "StefanHayden", "created_at": "Sat Dec 09 04:43:27 +0000 2006"}, "id_str": "108202239", "id": 108202239, "following": false, "full_name": "@StefanHayden/my-bots", "created_at": "Sun Mar 16 16:59:33 +0000 2014", "uri": "/StefanHayden/lists/my-bots"}, {"description": "active bots by @lichlike / @tylercallich", "subscriber_count": 3, "slug": "bots-by-lich1", "name": "bots by lich", "member_count": 33, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 45, "profile_image_url": "http://pbs.twimg.com/profile_images/693290510568402944/uEDTnxsn_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000019109987/6e1014d7bbb5a347e952e6012b380a1b.jpeg", "verified": false, "lang": "en", "protected": true, "url": null, "statuses_count": 56033, "profile_text_color": "000000", "profile_background_tile": true, "follow_request_sent": false, "id": 125738772, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "9266CC", "followers_count": 624, "friends_count": 557, "location": "ar, usa", "profile_banner_url": "https://pbs.twimg.com/profile_banners/125738772/1453674318", "description": "ty, a lich wandering text labyrinths\u2728 word weaver \uff0f code tinkerer \uff0f kava kultist\u2728 28\u2728 #botally\u2728 she \uff0f they", "profile_sidebar_fill_color": "F3CEFF", "default_profile": false, "utc_offset": -21600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000019109987/6e1014d7bbb5a347e952e6012b380a1b.jpeg", "favourites_count": 77368, "profile_background_color": "CFD503", "is_translation_enabled": true, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/693290510568402944/uEDTnxsn_normal.jpg", "geo_enabled": false, "time_zone": "Central Time (US & Canada)", "name": "ch\u00e2\u2640elaine \u2640yler", "id_str": "125738772", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "lichlike", "created_at": "Tue Mar 23 18:24:24 +0000 2010"}, "id_str": "209814583", "id": 209814583, "following": false, "full_name": "@lichlike/bots-by-lich1", "created_at": "Fri Jun 05 20:20:18 +0000 2015", "uri": "/lichlike/lists/bots-by-lich1"}, {"description": "These are bots that @tinysubversions has made.", "subscriber_count": 73, "slug": "darius-kazemi-s-bots", "name": "Darius Kazemi's Bots", "member_count": 47, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 820, "profile_image_url": "http://pbs.twimg.com/profile_images/651160874594361344/zSxDVhp8_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115588280/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/IoTmQk4rMq", "statuses_count": 57982, "profile_text_color": "000000", "profile_background_tile": true, "follow_request_sent": false, "id": 14475298, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0000FF", "followers_count": 15388, "friends_count": 1559, "location": "Portland, OR", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14475298/1438549422", "description": "I make weird internet art. Latest project: @yearlyawards! Follow it to get an award. Worker-owner at @feeltraincoop #WHNBM", "profile_sidebar_fill_color": "E0FF92", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115588280/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg", "favourites_count": 21955, "profile_background_color": "FF6921", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651160874594361344/zSxDVhp8_normal.jpg", "geo_enabled": true, "time_zone": "America/Los_Angeles", "name": "Darius Kazemi", "id_str": "14475298", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tinysubversions.com", "indices": [0, 22], "expanded_url": "http://tinysubversions.com", "url": "http://t.co/IoTmQk4rMq"}]}}, "is_translator": false, "screen_name": "tinysubversions", "created_at": "Tue Apr 22 14:41:58 +0000 2008"}, "id_str": "93527328", "id": 93527328, "following": false, "full_name": "@tinysubversions/darius-kazemi-s-bots", "created_at": "Mon Jul 29 13:21:38 +0000 2013", "uri": "/tinysubversions/lists/darius-kazemi-s-bots"}, {"description": "", "subscriber_count": 1, "slug": "bots", "name": "bots", "member_count": 9, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 31, "profile_image_url": "http://pbs.twimg.com/profile_images/680829690530127872/e36HEuyP_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/647154758/pyolb9h5a0ebz33t39bs.jpeg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/UYtfaO81Au", "statuses_count": 36350, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 14578503, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "005C28", "followers_count": 529, "friends_count": 328, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14578503/1409596542", "description": "tweets", "profile_sidebar_fill_color": "E6E6E6", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/647154758/pyolb9h5a0ebz33t39bs.jpeg", "favourites_count": 67990, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680829690530127872/e36HEuyP_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "dunndunndunn", "id_str": "14578503", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "keybase.io/dunn", "indices": [0, 23], "expanded_url": "https://keybase.io/dunn", "url": "https://t.co/UYtfaO81Au"}]}}, "is_translator": false, "screen_name": "dunndunndunn", "created_at": "Tue Apr 29 01:22:52 +0000 2008"}, "id_str": "125996505", "id": 125996505, "following": false, "full_name": "@dunndunndunn/bots", "created_at": "Sat May 24 06:27:26 +0000 2014", "uri": "/dunndunndunn/lists/bots"}, {"description": "", "subscriber_count": 8, "slug": "bots-by-me", "name": "Bots by me", "member_count": 19, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 73, "profile_image_url": "http://pbs.twimg.com/profile_images/638866240765870080/BL1aRJ9x_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378326431/html.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/QzEtDgYCNY", "statuses_count": 36664, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 9368412, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0000FF", "followers_count": 1252, "friends_count": 513, "location": "LINE: topghost", "profile_banner_url": "https://pbs.twimg.com/profile_banners/9368412/1449039477", "description": "THIS IS TIME WELL SPENT", "profile_sidebar_fill_color": "8F8F8F", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378326431/html.gif", "favourites_count": 48728, "profile_background_color": "171717", "is_translation_enabled": false, "profile_sidebar_border_color": "8F8F8F", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638866240765870080/BL1aRJ9x_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Casey Kolderup", "id_str": "9368412", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "casey.kolderup.org", "indices": [0, 23], "expanded_url": "http://casey.kolderup.org", "url": "https://t.co/QzEtDgYCNY"}]}}, "is_translator": false, "screen_name": "ckolderup", "created_at": "Thu Oct 11 04:47:06 +0000 2007"}, "id_str": "118700852", "id": 118700852, "following": false, "full_name": "@ckolderup/bots-by-me", "created_at": "Tue Apr 29 07:06:37 +0000 2014", "uri": "/ckolderup/lists/bots-by-me"}, {"description": "Some bots that I wrote", "subscriber_count": 5, "slug": "bots-i-made", "name": "Bots I Made", "member_count": 32, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 66, "profile_image_url": "http://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/F9U7lQOBWG", "statuses_count": 23912, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 1160471, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "9266CC", "followers_count": 948, "friends_count": 808, "location": "Montague, MA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1160471/1406567144", "description": "pie heals all wounds\n#botALLY", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", "favourites_count": 11902, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "\u2630 colin mitchell \u2630", "id_str": "1160471", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "muffinlabs.com", "indices": [0, 23], "expanded_url": "http://muffinlabs.com/", "url": "https://t.co/F9U7lQOBWG"}]}}, "is_translator": false, "screen_name": "muffinista", "created_at": "Wed Mar 14 14:46:25 +0000 2007"}, "id_str": "33069866", "id": 33069866, "following": false, "full_name": "@muffinista/bots-i-made", "created_at": "Thu Jan 06 01:55:08 +0000 2011", "uri": "/muffinista/lists/bots-i-made"}, {"description": "", "subscriber_count": 11, "slug": "botscapes", "name": "botscapes", "member_count": 11, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 35, "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "ru", "protected": false, "url": "https://t.co/JiCyW1dzUZ", "statuses_count": 12637, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 194096921, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "67777A", "followers_count": 456, "friends_count": 1133, "location": "Melbourne, Australia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: https://t.co/p5t2rZJajQ", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 39600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 9256, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "geo_enabled": false, "time_zone": "Melbourne", "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d hiatus", "id_str": "194096921", "entities": {"description": {"urls": [{"display_url": "nightmare.website", "indices": [127, 150], "expanded_url": "http://nightmare.website", "url": "https://t.co/p5t2rZJajQ"}]}, "url": {"urls": [{"display_url": "memoriata.com", "indices": [0, 23], "expanded_url": "http://memoriata.com/", "url": "https://t.co/JiCyW1dzUZ"}]}}, "is_translator": false, "screen_name": "dbaker_h", "created_at": "Thu Sep 23 12:34:18 +0000 2010"}, "id_str": "208613432", "id": 208613432, "following": false, "full_name": "@dbaker_h/botscapes", "created_at": "Tue May 26 18:20:18 +0000 2015", "uri": "/dbaker_h/lists/botscapes"}], "next_cursor": 1502276842028529447, "previous_cursor_str": "0", "next_cursor_str": "1502276842028529447", "previous_cursor": 0}
View
1 testdata/get_help_configuration.json
@@ -0,0 +1 @@
+{"dm_text_character_limit": 10000,"characters_reserved_per_media": 24,"max_media_per_upload": 1,"non_username_paths": ["about","account","accounts","activity","all","announcements","anywhere","api_rules","api_terms","apirules","apps","auth","badges","blog","business","buttons","contacts","devices","direct_messages","download","downloads","edit_announcements","faq","favorites","find_sources","find_users","followers","following","friend_request","friendrequest","friends","goodies","help","home","i","im_account","inbox","invitations","invite","jobs","list","login","logo","logout","me","mentions","messages","mockview","newtwitter","notifications","nudge","oauth","phoenix_search","positions","privacy","public_timeline","related_tweets","replies","retweeted_of_mine","retweets","retweets_by_others","rules","saved_searches","search","sent","sessions","settings","share","signup","signin","similar_to","statistics","terms","tos","translate","trends","tweetbutton","twttr","update_discoverability","users","welcome","who_to_follow","widgets","zendesk_auth","media_signup"],"photo_size_limit": 3145728,"photo_sizes": {"thumb": {"h": 150,"resize": "crop","w": 150},"small": {"h": 480,"resize": "fit","w": 340},"medium": {"h": 1200,"resize": "fit","w": 600},"large": {"h": 2048,"resize": "fit","w": 1024}},"short_url_length": 23,"short_url_length_https": 23}
View
1 testdata/get_home_timeline.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_list_members.json
@@ -0,0 +1 @@
+{"users":[{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":303,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":813,"lang":"en","status":{"created_at":"Fri Dec 18 18:19:02 +0000 2015","id":677915995160240128,"id_str":"677915995160240128","text":"Coordinates: (19.86325999815016, 87.37017997160355); https:\/\/t.co\/OTFcBzdlfe https:\/\/t.co\/FD1KAGZq6E","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OTFcBzdlfe","expanded_url":"http:\/\/osm.org\/go\/y~gNV--?m","display_url":"osm.org\/go\/y~gNV--?m","indices":[53,76]}],"media":[{"id":677915954173579264,"id_str":"677915954173579264","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677915954173579264\/pu\/img\/ZFA8vaYjlpk5c6GA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677915954173579264\/pu\/img\/ZFA8vaYjlpk5c6GA.jpg","url":"https:\/\/t.co\/FD1KAGZq6E","display_url":"pic.twitter.com\/FD1KAGZq6E","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677915995160240128\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","status":{"created_at":"Fri Dec 18 16:00:40 +0000 2015","id":677881170898624512,"id_str":"677881170898624512","text":"A bit of Pluto https:\/\/t.co\/sKB1j57QUx","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":3222275355,"id_str":"3222275355","name":"NewHorizonsBot","screen_name":"NewHorizonsBot","location":"On the way to Pluto","description":"Automatically tweets the latest raw images from the @NASANewHorizons spacecraft, as soon as they are released. A bot by @GeertHub. Not an official NASA account.","url":"https:\/\/t.co\/Ap4qMeBPxI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ap4qMeBPxI","expanded_url":"https:\/\/github.com\/barentsen\/NewHorizonsBot","display_url":"github.com\/barentsen\/NewH\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6871,"friends_count":12,"listed_count":208,"created_at":"Wed Apr 29 19:54:08 +0000 2015","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":647,"lang":"en","status":{"created_at":"Fri Sep 11 22:35:04 +0000 2015","id":642466415996502016,"id_str":"642466415996502016","text":"#NewHorizons released an image of PLUTO!\n\u231a Jul 15, 03:26:40 UTC.\n\ud83d\udccd 0.8M km from #Pluto.\n\ud83d\udd17 http:\/\/t.co\/f2VIi4tTPm http:\/\/t.co\/bHocoxqmOQ","source":"\u003ca href=\"http:\/\/geert.io\" rel=\"nofollow\"\u003eGeertBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":11,"favorite_count":14,"entities":{"hashtags":[{"text":"NewHorizons","indices":[0,12]},{"text":"Pluto","indices":[80,86]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/f2VIi4tTPm","expanded_url":"http:\/\/pluto.jhuapl.edu\/soc\/Pluto-Encounter\/view_obs.php?image=data\/pluto\/level2\/lor\/jpeg\/029923\/lor_0299236719_0x630_sci_4.jpg&utc_time=2015-07-15&lt;br&gt;03:26:40&nbsp;UTC&description=%5Bnot+yet+coded%5D&target=PLUTO&range=0.8M&nbsp;km&exposure=150&nbsp;msec","display_url":"pluto.jhuapl.edu\/soc\/Pluto-Enco\u2026","indices":[90,112]}],"media":[{"id":642466415186829312,"id_str":"642466415186829312","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/COp_zPlUYAAVjJO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COp_zPlUYAAVjJO.jpg","url":"http:\/\/t.co\/bHocoxqmOQ","display_url":"pic.twitter.com\/bHocoxqmOQ","expanded_url":"http:\/\/twitter.com\/NewHorizonsBot\/status\/642466415996502016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595603113987432448\/jQofSMx__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595603113987432448\/jQofSMx__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222275355\/1430837448","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2991194699,"id_str":"2991194699","name":"Apollo Images","screen_name":"ApolloImgs","location":"The Moon","description":"I post images from the Apollo Missions, courtesy of the Lunar and Planetary Institute. Bot by @jhoffstein","url":"http:\/\/t.co\/JREI78yCwu","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JREI78yCwu","expanded_url":"http:\/\/www.lpi.usra.edu\/resources\/apollo\/","display_url":"lpi.usra.edu\/resources\/apol\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":0,"listed_count":7,"created_at":"Thu Jan 22 02:37:49 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2049,"lang":"en","status":{"created_at":"Mon Jul 13 18:10:12 +0000 2015","id":620656488705462272,"id_str":"620656488705462272","text":"Apollo 14 http:\/\/t.co\/2hePD8OAjf http:\/\/t.co\/82F8ISxS26","source":"\u003ca href=\"http:\/\/www.jhoffstein.com\" rel=\"nofollow\"\u003eApollo Images\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/2hePD8OAjf","expanded_url":"http:\/\/www.lpi.usra.edu\/resources\/apollo\/frame\/?AS14-72-9978","display_url":"lpi.usra.edu\/resources\/apol\u2026","indices":[10,32]}],"media":[{"id":620656488587988992,"id_str":"620656488587988992","indices":[33,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CJ0DybnUEAARnm4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJ0DybnUEAARnm4.jpg","url":"http:\/\/t.co\/82F8ISxS26","display_url":"pic.twitter.com\/82F8ISxS26","expanded_url":"http:\/\/twitter.com\/ApolloImgs\/status\/620656488705462272\/photo\/1","type":"photo","sizes":{"large":{"w":450,"h":450,"resize":"fit"},"medium":{"w":450,"h":450,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558092578197749760\/N1BAojDA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558092578197749760\/N1BAojDA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991194699\/1421894692","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1396,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7625,"lang":"en","status":{"created_at":"Fri Dec 18 19:43:02 +0000 2015","id":677937134318149632,"id_str":"677937134318149632","text":"Coordinates: 57905,20545. 675x675px https:\/\/t.co\/h5PAyPIIBD","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677937134230102016,"id_str":"677937134230102016","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWiEO1HU4AAbTvJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWiEO1HU4AAbTvJ.jpg","url":"https:\/\/t.co\/h5PAyPIIBD","display_url":"pic.twitter.com\/h5PAyPIIBD","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677937134318149632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":675,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2988738439,"id_str":"2988738439","name":"tiny shooting stars","screen_name":"tinyshootinstar","location":"","description":"tiny shooting stars put into @tiny_star_field's tweets.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":2,"listed_count":9,"created_at":"Sun Jan 18 15:05:10 +0000 2015","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":"en","status":{"created_at":"Fri Feb 06 18:32:00 +0000 2015","id":563767078448930816,"id_str":"563767078448930816","text":"@tiny_star_field\n \u272b . \u3000\u3000\u3000\u3000\u3000\u3000* \u00b7 . \n\u3000 \u3000\u3000\u3000\u3000 . \n\u3000\u3000\u2737 \u272b \u3000\n \u3000\u3000\u3000 . \u3000 \u3000\u3000\u3000 \n \u3000\u3000 * \u3000\ud83d\udcab \u02da \n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000 \u3000 \u22c6 \u3000 \u02da \u272b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":563766329132331008,"in_reply_to_status_id_str":"563766329132331008","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[0,16]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556831778095108096\/_izGkXUT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556831778095108096\/_izGkXUT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988738439\/1421594082","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2873849441,"id_str":"2873849441","name":"Star Near You","screen_name":"starnearyou","location":"Orion\u2013Cygnus Arm, Milky Way","description":"I'm a bot that generates GIFs of the Sun's corona. Images courtesy of NASA\/SDO and the AIA science team. Created by @ddbeck.","url":"https:\/\/t.co\/2XrBFpUxiv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2XrBFpUxiv","expanded_url":"https:\/\/github.com\/ddbeck\/starnearyou","display_url":"github.com\/ddbeck\/starnea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":1,"listed_count":21,"created_at":"Wed Nov 12 15:26:16 +0000 2014","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1185,"lang":"en","status":{"created_at":"Fri Dec 18 16:09:21 +0000 2015","id":677883355954835456,"id_str":"677883355954835456","text":"https:\/\/t.co\/1FZuXwfN8P","source":"\u003ca href=\"http:\/\/www.twitter.com\/starnearyou\" rel=\"nofollow\"\u003eStar Near You Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","display_url":"pic.twitter.com\/1FZuXwfN8P","indices":[0,23]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2873849441\/1415806333","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4244,"friends_count":2,"listed_count":62,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":405,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4285,"lang":"en","status":{"created_at":"Fri Dec 18 18:51:27 +0000 2015","id":677924150757969921,"id_str":"677924150757969921","text":"@BenjM_ @tiny_star_field lol\ud83d\ude80cool","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677923217823035392,"in_reply_to_status_id_str":"677923217823035392","in_reply_to_user_id":4041039680,"in_reply_to_user_id_str":"4041039680","in_reply_to_screen_name":"BenjM_","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BenjM_","name":"Christmas Zebra","id":4041039680,"id_str":"4041039680","indices":[0,7]},{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[8,24]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69692,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4295,"lang":"en","status":{"created_at":"Fri Dec 18 18:29:02 +0000 2015","id":677918508915683328,"id_str":"677918508915683328","text":"\u00b7 \u3000 + \u00b7 \u3000\u3000\u3000\u3000\u3000\u3000\n * *\u3000\u3000\u3000 \u00b7 \u3000\u3000 \u02da .\n \u2735 \u273a \u3000.\n\u3000\u3000 * . \u273a * \u3000 \u00b7 \u272b \n\u3000 \u3000\u3000 * + \u2737 \u3000\u3000 \n \u273a \u3000 \u3000\u3000 . *","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":169,"favorite_count":133,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14446054,"id_str":"14446054","name":"lowflyingrocks","screen_name":"lowflyingrocks","location":"","description":"I mention every near earth object that passes within 0.2AU of Earth. @tomtaylor made me.","url":"http:\/\/t.co\/49Rp4zBFqj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/49Rp4zBFqj","expanded_url":"http:\/\/www.tomtaylor.co.uk\/projects\/","display_url":"tomtaylor.co.uk\/projects\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6925,"friends_count":4,"listed_count":574,"created_at":"Sat Apr 19 19:58:54 +0000 2008","favourites_count":1,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":4089,"lang":"en","status":{"created_at":"Fri Dec 18 15:40:03 +0000 2015","id":677875983014203392,"id_str":"677875983014203392","text":"2015\u00a0MW53, ~140m-310m in diameter, just passed the Earth at 20km\/s, missing by ~6,790,000km. https:\/\/t.co\/BFlKjHw4i2","source":"\u003ca href=\"http:\/\/twitter.com\/lowflyingrocks\" rel=\"nofollow\"\u003elowflyingrocks\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BFlKjHw4i2","expanded_url":"http:\/\/ssd.jpl.nasa.gov\/sbdb.cgi?sstr=2015%20MW53;orb=1","display_url":"ssd.jpl.nasa.gov\/sbdb.cgi?sstr=\u2026","indices":[93,116]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}
View
1 testdata/get_list_members_0.json
@@ -0,0 +1 @@
+{"next_cursor": 4611686020936348428, "users": [{"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/659410881806135296/PdVxDc0W_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 362, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 4048395140, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 106, "friends_count": 0, "location": "", "description": "I am a bot that simulates a series of mechanical linkages (+ noise) to draw a curve 4x/day. // by @tinysubversions, inspired by @ra & @bahrami_", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659410881806135296/PdVxDc0W_normal.png", "geo_enabled": false, "time_zone": null, "name": "Spinny Machine", "id_str": "4048395140", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CZ9xAlyWQAAVsZk.mp4"}], "aspect_ratio": [1, 1]}, "id": 693397122595569664, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "display_url": "pic.twitter.com/n6lbayOFFQ", "indices": [30, 53], "expanded_url": "http://twitter.com/spinnymachine/status/693397123023396864/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 360, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 360, "h": 360}}, "id_str": "693397122595569664", "url": "https://t.co/n6lbayOFFQ"}]}, "truncated": false, "id": 693397123023396864, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "a casually scorched northeast https://t.co/n6lbayOFFQ", "id_str": "693397123023396864", "entities": {"media": [{"type": "photo", "id": 693397122595569664, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "display_url": "pic.twitter.com/n6lbayOFFQ", "indices": [30, 53], "expanded_url": "http://twitter.com/spinnymachine/status/693397123023396864/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 360, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 360, "h": 360}}, "id_str": "693397122595569664", "url": "https://t.co/n6lbayOFFQ"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Spinny Machine</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 11:35:31 +0000 2016"}, "is_translator": false, "screen_name": "spinnymachine", "created_at": "Wed Oct 28 16:43:01 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 6, "profile_image_url": "http://pbs.twimg.com/profile_images/658781950472138752/FOQCSbLg_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/OOS2jbeYND", "statuses_count": 135, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 4029020052, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "DBAF44", "followers_count": 23, "friends_count": 2, "location": "TV", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4029020052/1445900976", "description": "I'm a bot that tweets fake Empire plots, inspired by @eveewing https://t.co/OOS2jbeYND // by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658781950472138752/FOQCSbLg_normal.png", "geo_enabled": false, "time_zone": null, "name": "Empire Plots Bot", "id_str": "4029020052", "entities": {"description": {"urls": [{"display_url": "twitter.com/eveewing/statu\u2026", "indices": [63, 86], "expanded_url": "https://twitter.com/eveewing/status/658478802327183360", "url": "https://t.co/OOS2jbeYND"}]}, "url": {"urls": [{"display_url": "twitter.com/eveewing/statu\u2026", "indices": [0, 23], "expanded_url": "https://twitter.com/eveewing/status/658478802327183360", "url": "https://t.co/OOS2jbeYND"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 671831157646876672, "media_url": "http://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "media_url_https": "https://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "display_url": "pic.twitter.com/EQ8oGhG502", "indices": [101, 124], "expanded_url": "http://twitter.com/EmpirePlots/status/671831157739118593/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 400}, "small": {"resize": "fit", "w": 300, "h": 400}, "large": {"resize": "fit", "w": 300, "h": 400}}, "id_str": "671831157646876672", "url": "https://t.co/EQ8oGhG502"}]}, "truncated": false, "id": 671831157739118593, "place": null, "favorite_count": 1, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Jamal is stuck in a wild forest with Kene Holliday and can't find their way out (it's just a dream). https://t.co/EQ8oGhG502", "id_str": "671831157739118593", "entities": {"media": [{"type": "photo", "id": 671831157646876672, "media_url": "http://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "media_url_https": "https://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "display_url": "pic.twitter.com/EQ8oGhG502", "indices": [101, 124], "expanded_url": "http://twitter.com/EmpirePlots/status/671831157739118593/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 400}, "small": {"resize": "fit", "w": 300, "h": 400}, "large": {"resize": "fit", "w": 300, "h": 400}}, "id_str": "671831157646876672", "url": "https://t.co/EQ8oGhG502"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Empire Plots Bot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Dec 01 23:20:04 +0000 2015"}, "is_translator": false, "screen_name": "EmpirePlots", "created_at": "Mon Oct 26 22:49:42 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 25, "profile_image_url": "http://pbs.twimg.com/profile_images/652238580765462528/BQVTvFS9_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 346, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3829470974, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "027F45", "followers_count": 287, "friends_count": 1, "location": "Portland, OR", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3829470974/1444340849", "description": "Portland is such a weird place! We show real pics of places in Portland! ONLY IN PORTLAND as they say! // a bot by @tinysubversions, 4x daily", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652238580765462528/BQVTvFS9_normal.png", "geo_enabled": false, "time_zone": null, "name": "Wow So Portland!", "id_str": "3829470974", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693471873166761984, "media_url": "http://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "display_url": "pic.twitter.com/CF8JrGCQcY", "indices": [57, 80], "expanded_url": "http://twitter.com/wowsoportland/status/693471873246502912/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 600, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 600, "h": 300}}, "id_str": "693471873166761984", "url": "https://t.co/CF8JrGCQcY"}]}, "truncated": false, "id": 693471873246502912, "place": null, "favorite_count": 1, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "those silly Portlanders are always up to something funny https://t.co/CF8JrGCQcY", "id_str": "693471873246502912", "entities": {"media": [{"type": "photo", "id": 693471873166761984, "media_url": "http://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "display_url": "pic.twitter.com/CF8JrGCQcY", "indices": [57, 80], "expanded_url": "http://twitter.com/wowsoportland/status/693471873246502912/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 600, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 600, "h": 300}}, "id_str": "693471873166761984", "url": "https://t.co/CF8JrGCQcY"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Wow so portland</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:32:33 +0000 2016"}, "is_translator": false, "screen_name": "wowsoportland", "created_at": "Thu Oct 08 21:38:27 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 28, "profile_image_url": "http://pbs.twimg.com/profile_images/650161232540909568/yyvPEOnF_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/8fYJI1TWEs", "statuses_count": 515, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3765991992, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 331, "friends_count": 1, "location": "Mare Tranquilitatis", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3765991992/1443845573", "description": "Tweeting pics from the Project Apollo Archive, four times a day. Not affiliated with the Project Apollo Archive. // a bot by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650161232540909568/yyvPEOnF_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "Moon Shot Bot", "id_str": "3765991992", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flickr.com/photos/project\u2026", "indices": [0, 23], "expanded_url": "https://www.flickr.com/photos/projectapolloarchive/", "url": "https://t.co/8fYJI1TWEs"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693470001316171776, "media_url": "http://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "display_url": "pic.twitter.com/2j5ezW6i9G", "indices": [103, 126], "expanded_url": "http://twitter.com/moonshotbot/status/693470003249684481/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1070}, "small": {"resize": "fit", "w": 340, "h": 355}, "medium": {"resize": "fit", "w": 600, "h": 627}}, "id_str": "693470001316171776", "url": "https://t.co/2j5ezW6i9G"}]}, "truncated": false, "id": 693470003249684481, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "\ud83c\udf0c\ud83c\udf18\ud83c\udf1b\nApollo 15 Hasselblad image from film magazine 97/O - lunar orbit view\n\ud83d\ude80\ud83c\udf1a\ud83c\udf19\n https://t.co/n4WH1ZTyuZ https://t.co/2j5ezW6i9G", "id_str": "693470003249684481", "entities": {"media": [{"type": "photo", "id": 693470001316171776, "media_url": "http://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "display_url": "pic.twitter.com/2j5ezW6i9G", "indices": [103, 126], "expanded_url": "http://twitter.com/moonshotbot/status/693470003249684481/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1070}, "small": {"resize": "fit", "w": 340, "h": 355}, "medium": {"resize": "fit", "w": 600, "h": 627}}, "id_str": "693470001316171776", "url": "https://t.co/2j5ezW6i9G"}], "hashtags": [], "urls": [{"display_url": "flickr.com/photos/project\u2026", "indices": [79, 102], "expanded_url": "https://www.flickr.com/photos/projectapolloarchive/21831461788", "url": "https://t.co/n4WH1ZTyuZ"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Moon Shot Bot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:25:07 +0000 2016"}, "is_translator": false, "screen_name": "moonshotbot", "created_at": "Sat Oct 03 04:03:02 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 17, "profile_image_url": "http://pbs.twimg.com/profile_images/629374160993710081/q-lr9vsE_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/mRUwkqVO7i", "statuses_count": 598, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3406094211, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 133, "friends_count": 0, "location": "Not affiliated with the FBI", "description": "I tweet random pages from FOIA-requested FBI records, 4x/day. I'm a bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629374160993710081/q-lr9vsE_normal.jpg", "geo_enabled": false, "time_zone": null, "name": "FBI Bot", "id_str": "3406094211", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "vault.fbi.gov", "indices": [0, 22], "expanded_url": "http://vault.fbi.gov", "url": "http://t.co/mRUwkqVO7i"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693483330080210944, "media_url": "http://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "media_url_https": "https://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "display_url": "pic.twitter.com/Dey5JLxCvb", "indices": [63, 86], "expanded_url": "http://twitter.com/FBIbot/status/693483330218622976/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 776}, "small": {"resize": "fit", "w": 340, "h": 439}, "large": {"resize": "fit", "w": 1000, "h": 1294}}, "id_str": "693483330080210944", "url": "https://t.co/Dey5JLxCvb"}]}, "truncated": false, "id": 693483330218622976, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "The FBI was watching Fred G. Randaccio https://t.co/NAkQc4FYKp https://t.co/Dey5JLxCvb", "id_str": "693483330218622976", "entities": {"media": [{"type": "photo", "id": 693483330080210944, "media_url": "http://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "media_url_https": "https://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "display_url": "pic.twitter.com/Dey5JLxCvb", "indices": [63, 86], "expanded_url": "http://twitter.com/FBIbot/status/693483330218622976/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 776}, "small": {"resize": "fit", "w": 340, "h": 439}, "large": {"resize": "fit", "w": 1000, "h": 1294}}, "id_str": "693483330080210944", "url": "https://t.co/Dey5JLxCvb"}], "hashtags": [], "urls": [{"display_url": "vault.fbi.gov/frank-randaccio", "indices": [39, 62], "expanded_url": "https://vault.fbi.gov/frank-randaccio", "url": "https://t.co/NAkQc4FYKp"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">FBIBot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:18:04 +0000 2016"}, "is_translator": false, "screen_name": "FBIbot", "created_at": "Thu Aug 06 19:28:10 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 23, "profile_image_url": "http://pbs.twimg.com/profile_images/631231593164607488/R4hRHjBI_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/6cpr8h0hGa", "statuses_count": 664, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3312790286, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 239, "friends_count": 0, "location": "", "description": "Animal videos sourced from @macaulaylibrary. Turn up the sound! // A bot by @tinysubversions. Not affiliated with the Macaulay Library.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631231593164607488/R4hRHjBI_normal.png", "geo_enabled": false, "time_zone": null, "name": "Animal Video Bot", "id_str": "3312790286", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "macaulaylibrary.org", "indices": [0, 22], "expanded_url": "http://macaulaylibrary.org/", "url": "http://t.co/6cpr8h0hGa"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "ro", "extended_entities": {"media": [{"type": "video", "video_info": {"variants": [{"content_type": "video/webm", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/vid/640x360/hY01KGCSXl-isZzt.webm"}, {"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/vid/320x180/3NEGIMyzX2tdBm5i.mp4"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/vid/640x360/hY01KGCSXl-isZzt.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/pl/G53mlN6oslnMAWd5.m3u8"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/pl/G53mlN6oslnMAWd5.mpd"}], "aspect_ratio": [16, 9], "duration_millis": 20021}, "id": 693439580935094273, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "display_url": "pic.twitter.com/aaGNPmPpni", "indices": [85, 108], "expanded_url": "http://twitter.com/AnimalVidBot/status/693439595946479617/video/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 640, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 191}, "medium": {"resize": "fit", "w": 600, "h": 338}}, "id_str": "693439580935094273", "url": "https://t.co/aaGNPmPpni"}]}, "truncated": false, "id": 693439595946479617, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Maui Parrotbill\n\nPseudonestor xanthophrys\nBarksdale, Timothy https://t.co/c6n9M2Cjnv https://t.co/aaGNPmPpni", "id_str": "693439595946479617", "entities": {"media": [{"type": "photo", "id": 693439580935094273, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "display_url": "pic.twitter.com/aaGNPmPpni", "indices": [85, 108], "expanded_url": "http://twitter.com/AnimalVidBot/status/693439595946479617/video/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 640, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 191}, "medium": {"resize": "fit", "w": 600, "h": 338}}, "id_str": "693439580935094273", "url": "https://t.co/aaGNPmPpni"}], "hashtags": [], "urls": [{"display_url": "macaulaylibrary.org/video/428118", "indices": [61, 84], "expanded_url": "http://macaulaylibrary.org/video/428118", "url": "https://t.co/c6n9M2Cjnv"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Animal Video Bot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:24:17 +0000 2016"}, "is_translator": false, "screen_name": "AnimalVidBot", "created_at": "Tue Aug 11 22:25:35 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 10, "profile_image_url": "http://pbs.twimg.com/profile_images/624358417818238976/CfSPOEr4_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/YEWmunbcFZ", "statuses_count": 4, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3300809963, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 56, "friends_count": 0, "location": "The Most Relevant Ad Agency", "description": "The most happenin' new trends on the internet. // A bot by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624358417818238976/CfSPOEr4_normal.jpg", "geo_enabled": false, "time_zone": null, "name": "Trend Reportz", "id_str": "3300809963", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "slideshare.net/trendreportz", "indices": [0, 22], "expanded_url": "http://www.slideshare.net/trendreportz", "url": "http://t.co/YEWmunbcFZ"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 1, "lang": "en", "truncated": false, "id": 638389840472600576, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "NEW REPORT! Learn what steamers mean to 7-18 y/o men http://t.co/veQGWz1Lqn", "id_str": "638389840472600576", "entities": {"hashtags": [], "urls": [{"display_url": "slideshare.net/trendreportz/t\u2026", "indices": [53, 75], "expanded_url": "http://www.slideshare.net/trendreportz/trends-in-steamers", "url": "http://t.co/veQGWz1Lqn"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Trend Reportz</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Aug 31 16:36:13 +0000 2015"}, "is_translator": false, "screen_name": "TrendReportz", "created_at": "Wed May 27 19:43:37 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/585540228439498752/OPHSe1Yw_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/lrCYkDGPrm", "statuses_count": 888, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3145355109, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 106, "friends_count": 1, "location": "The Middle East", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3145355109/1428438665", "description": "Public domain photos from the Qatar Digital Library of Middle Eastern (& nearby) history. Tweets 4x/day. // bot by @tinysubversions, not affiliated with the QDL", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585540228439498752/OPHSe1Yw_normal.png", "geo_enabled": false, "time_zone": null, "name": "Middle East History", "id_str": "3145355109", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "qdl.qa/en/search/site\u2026", "indices": [0, 22], "expanded_url": "http://www.qdl.qa/en/search/site/?f%5B0%5D=document_source%3Aarchive_source", "url": "http://t.co/lrCYkDGPrm"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693479308619300866, "media_url": "http://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "display_url": "pic.twitter.com/xojYCSnUZu", "indices": [72, 95], "expanded_url": "http://twitter.com/MidEastHistory/status/693479308745113600/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1024}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 600, "h": 600}}, "id_str": "693479308619300866", "url": "https://t.co/xojYCSnUZu"}]}, "truncated": false, "id": 693479308745113600, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "'Distant View of Hormuz.' Photographer: Unknown https://t.co/hkDmSbTLgT https://t.co/xojYCSnUZu", "id_str": "693479308745113600", "entities": {"media": [{"type": "photo", "id": 693479308619300866, "media_url": "http://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "display_url": "pic.twitter.com/xojYCSnUZu", "indices": [72, 95], "expanded_url": "http://twitter.com/MidEastHistory/status/693479308745113600/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1024}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 600, "h": 600}}, "id_str": "693479308619300866", "url": "https://t.co/xojYCSnUZu"}], "hashtags": [], "urls": [{"display_url": "qdl.qa//en/archive/81\u2026", "indices": [48, 71], "expanded_url": "http://www.qdl.qa//en/archive/81055/vdc_100024111424.0x00000f", "url": "https://t.co/hkDmSbTLgT"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com/\" rel=\"nofollow\">Mid east history pics</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:02:06 +0000 2016"}, "is_translator": false, "screen_name": "MidEastHistory", "created_at": "Tue Apr 07 20:27:15 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 99, "profile_image_url": "http://pbs.twimg.com/profile_images/584076161325473793/gufAEGJv_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/s6OmUwb6Bn", "statuses_count": 91531, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3131670665, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 46186, "friends_count": 1, "location": "Hogwarts", "description": "I'm the Sorting Hat and I'm here to say / I love sorting students in a major way // a bot by @tinysubversions, follow to get sorted!", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/584076161325473793/gufAEGJv_normal.png", "geo_enabled": false, "time_zone": null, "name": "The Sorting Hat Bot", "id_str": "3131670665", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tinysubversions.com/notes/sorting-\u2026", "indices": [0, 22], "expanded_url": "http://tinysubversions.com/notes/sorting-bot/", "url": "http://t.co/s6OmUwb6Bn"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693474779018362880, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 1210222826, "in_reply_to_status_id": null, "in_reply_to_screen_name": "Nyrfall", "text": "@Nyrfall The Sorting time is here at last, I know each time you send\nI've figured out that Slytherin's the right place for your blend", "id_str": "693474779018362880", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [0, 8], "id": 1210222826, "name": "Desi Sobrino", "screen_name": "Nyrfall", "id_str": "1210222826"}]}, "source": "<a href=\"http://tinysubversions.com/\" rel=\"nofollow\">The Sorting Hat Bot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": "1210222826", "retweeted": false, "created_at": "Sat Jan 30 16:44:06 +0000 2016"}, "is_translator": false, "screen_name": "SortingBot", "created_at": "Fri Apr 03 19:27:31 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 34, "profile_image_url": "http://pbs.twimg.com/profile_images/580173179236196352/nWsIPbqH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/2YPE0x0Knw", "statuses_count": 1233, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3105672877, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 424, "friends_count": 0, "location": "NYC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3105672877/1427159206", "description": "Posting random flyers from hip hop's formative years every 6 hours. Most art by Buddy Esquire and Phase 2. Full collection at link. // a bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/580173179236196352/nWsIPbqH_normal.png", "geo_enabled": false, "time_zone": null, "name": "Old School Flyers", "id_str": "3105672877", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "toledohiphop.org/images/old_sch\u2026", "indices": [0, 22], "expanded_url": "http://www.toledohiphop.org/images/old_school_source_code/", "url": "http://t.co/2YPE0x0Knw"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "photo", "id": 693422418480742400, "media_url": "http://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "display_url": "pic.twitter.com/B7jv7lwB9S", "indices": [0, 23], "expanded_url": "http://twitter.com/oldschoolflyers/status/693422418929524736/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 503, "h": 646}, "small": {"resize": "fit", "w": 340, "h": 435}, "medium": {"resize": "fit", "w": 503, "h": 646}}, "id_str": "693422418480742400", "url": "https://t.co/B7jv7lwB9S"}]}, "truncated": false, "id": 693422418929524736, "place": null, "favorite_count": 1, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "https://t.co/B7jv7lwB9S", "id_str": "693422418929524736", "entities": {"media": [{"type": "photo", "id": 693422418480742400, "media_url": "http://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "display_url": "pic.twitter.com/B7jv7lwB9S", "indices": [0, 23], "expanded_url": "http://twitter.com/oldschoolflyers/status/693422418929524736/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 503, "h": 646}, "small": {"resize": "fit", "w": 340, "h": 435}, "medium": {"resize": "fit", "w": 503, "h": 646}}, "id_str": "693422418480742400", "url": "https://t.co/B7jv7lwB9S"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">oldschoolflyers</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:16:02 +0000 2016"}, "is_translator": false, "screen_name": "oldschoolflyers", "created_at": "Tue Mar 24 00:55:10 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 41, "profile_image_url": "http://pbs.twimg.com/profile_images/561971159927771136/sEQ5u1zM_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1396, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3010688583, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "961EE4", "followers_count": 243, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3010688583/1422819642", "description": "DAD: weird conversation joke is bae ME: ugh dad no DAD: [something unhip] // a bot by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/561971159927771136/sEQ5u1zM_normal.png", "geo_enabled": false, "time_zone": null, "name": "Weird Convo Bot", "id_str": "3010688583", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693429980093620224, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "DOG: Wtf are you bae'\nME: fart. Ugh.\nDOG: so sex with me is sex vape\nME: Wtf are you skeleton'", "id_str": "693429980093620224", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">WeirdConvoBot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:46:05 +0000 2016"}, "is_translator": false, "screen_name": "WeirdConvoBot", "created_at": "Sun Feb 01 19:05:21 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 110, "profile_image_url": "http://pbs.twimg.com/profile_images/556129692554493953/82ISdQxF_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/3gDtETAFpu", "statuses_count": 1510, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2981339967, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1308, "friends_count": 1, "location": "Frankfurt School", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2981339967/1421426775", "description": "We love #innovation and are always thinking of the next #disruptive startup #idea! // a bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/556129692554493953/82ISdQxF_normal.png", "geo_enabled": false, "time_zone": null, "name": "Hottest Startups", "id_str": "2981339967", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "marxists.org/archive/index.\u2026", "indices": [0, 22], "expanded_url": "http://www.marxists.org/archive/index.htm", "url": "http://t.co/3gDtETAFpu"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693477791883350016, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Startup idea: The architect thinks of the building contractor as a layman who tells him what he needs and what he can pay.", "id_str": "693477791883350016", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">hottest startups</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:56:04 +0000 2016"}, "is_translator": false, "screen_name": "HottestStartups", "created_at": "Fri Jan 16 16:33:45 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 40, "profile_image_url": "http://pbs.twimg.com/profile_images/549979314541039617/fZ_XDnWz_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6748, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2951486632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FFCC4D", "followers_count": 3155, "friends_count": 1, "location": "(bot by @tinysubversions)", "description": "We are the Academy For Annual Recognition and each year we give out the Yearly Awards. Follow (or re-follow) for your award! Warning: sometimes it's mean.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/549979314541039617/fZ_XDnWz_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "The Yearly Awards", "id_str": "2951486632", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CZ-2l2fWwAEH6MB.mp4"}], "aspect_ratio": [4, 3]}, "id": 693473629036789761, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "display_url": "pic.twitter.com/XGDD3tMJPF", "indices": [86, 109], "expanded_url": "http://twitter.com/YearlyAwards/status/693473629766598656/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 400, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 255}, "large": {"resize": "fit", "w": 400, "h": 300}}, "id_str": "693473629036789761", "url": "https://t.co/XGDD3tMJPF"}]}, "truncated": false, "id": 693473629766598656, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 4863901738, "in_reply_to_status_id": null, "in_reply_to_screen_name": "know_fast", "text": "@know_fast It's official: you're the Least Prodigiously Despondent Confidant of 2015! https://t.co/XGDD3tMJPF", "id_str": "693473629766598656", "entities": {"media": [{"type": "photo", "id": 693473629036789761, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "display_url": "pic.twitter.com/XGDD3tMJPF", "indices": [86, 109], "expanded_url": "http://twitter.com/YearlyAwards/status/693473629766598656/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 400, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 255}, "large": {"resize": "fit", "w": 400, "h": 300}}, "id_str": "693473629036789761", "url": "https://t.co/XGDD3tMJPF"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [0, 10], "id": 4863901738, "name": "Know Fast", "screen_name": "know_fast", "id_str": "4863901738"}]}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">The Yearly Awards</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": "4863901738", "retweeted": false, "created_at": "Sat Jan 30 16:39:32 +0000 2016"}, "is_translator": false, "screen_name": "YearlyAwards", "created_at": "Tue Dec 30 16:59:34 +0000 2014"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 20, "profile_image_url": "http://pbs.twimg.com/profile_images/512673377283080194/eFnJQJSp_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1972, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2817629347, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 93, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2817629347/1411065932", "description": "Wise sayings, four times daily. by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/512673377283080194/eFnJQJSp_normal.png", "geo_enabled": false, "time_zone": null, "name": "Received Wisdom", "id_str": "2817629347", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693418402392719360, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Water is thicker than blood.", "id_str": "693418402392719360", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Received Wisdom</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:00:04 +0000 2016"}, "is_translator": false, "screen_name": "received_wisdom", "created_at": "Thu Sep 18 18:32:38 +0000 2014"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 11, "profile_image_url": "http://pbs.twimg.com/profile_images/517404591218900992/kf2iYD1f_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1767, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2798799669, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 40, "friends_count": 0, "location": "Everywhere", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2798799669/1412195008", "description": "Chronicling men doing things. // A bot by @tinysubversions, Powered By Giphy", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517404591218900992/kf2iYD1f_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Men Doing Things", "id_str": "2798799669", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CZ-WORAWQAED6It.mp4"}], "aspect_ratio": [167, 104]}, "id": 693438039465541633, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "display_url": "pic.twitter.com/wsk2GyEsGh", "indices": [37, 60], "expanded_url": "http://twitter.com/MenDoing/status/693438039801073664/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 334, "h": 208}, "small": {"resize": "fit", "w": 334, "h": 208}, "large": {"resize": "fit", "w": 334, "h": 208}}, "id_str": "693438039465541633", "url": "https://t.co/wsk2GyEsGh"}]}, "truncated": false, "id": 693438039801073664, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Men Authoring Landmarks in Manhattan https://t.co/wsk2GyEsGh", "id_str": "693438039801073664", "entities": {"media": [{"type": "photo", "id": 693438039465541633, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "display_url": "pic.twitter.com/wsk2GyEsGh", "indices": [37, 60], "expanded_url": "http://twitter.com/MenDoing/status/693438039801073664/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 334, "h": 208}, "small": {"resize": "fit", "w": 334, "h": 208}, "large": {"resize": "fit", "w": 334, "h": 208}}, "id_str": "693438039465541633", "url": "https://t.co/wsk2GyEsGh"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Men Doing Things</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:18:06 +0000 2016"}, "is_translator": false, "screen_name": "MenDoing", "created_at": "Wed Oct 01 19:59:55 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 139, "profile_image_url": "http://pbs.twimg.com/profile_images/495988901790482432/le2-dKgs_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/r2HzjsqHTU", "statuses_count": 2157, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2704554914, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1172, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2704554914/1407087962", "description": "A bot that picks a word and then draws randomly until an OCR library (http://t.co/XmDeI5TWoF) reads that word. 4x daily. Also on Tumblr. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495988901790482432/le2-dKgs_normal.png", "geo_enabled": false, "time_zone": null, "name": "Reverse OCR", "id_str": "2704554914", "entities": {"description": {"urls": [{"display_url": "antimatter15.com/ocrad.js/demo.\u2026", "indices": [70, 92], "expanded_url": "http://antimatter15.com/ocrad.js/demo.html", "url": "http://t.co/XmDeI5TWoF"}]}, "url": {"urls": [{"display_url": "reverseocr.tumblr.com", "indices": [0, 22], "expanded_url": "http://reverseocr.tumblr.com", "url": "http://t.co/r2HzjsqHTU"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "photo", "id": 693404391072776192, "media_url": "http://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "display_url": "pic.twitter.com/WbD9lkNarf", "indices": [8, 31], "expanded_url": "http://twitter.com/reverseocr/status/693404391160860673/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 150}, "small": {"resize": "fit", "w": 340, "h": 85}, "large": {"resize": "fit", "w": 800, "h": 200}}, "id_str": "693404391072776192", "url": "https://t.co/WbD9lkNarf"}]}, "truncated": false, "id": 693404391160860673, "place": null, "favorite_count": 2, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "larceny https://t.co/WbD9lkNarf", "id_str": "693404391160860673", "entities": {"media": [{"type": "photo", "id": 693404391072776192, "media_url": "http://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "display_url": "pic.twitter.com/WbD9lkNarf", "indices": [8, 31], "expanded_url": "http://twitter.com/reverseocr/status/693404391160860673/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 150}, "small": {"resize": "fit", "w": 340, "h": 85}, "large": {"resize": "fit", "w": 800, "h": 200}}, "id_str": "693404391072776192", "url": "https://t.co/WbD9lkNarf"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Reverse OCR</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 12:04:24 +0000 2016"}, "is_translator": false, "screen_name": "reverseocr", "created_at": "Sun Aug 03 17:26:28 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/479836451182362624/0fAtv_AN_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 2, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2577963498, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 14, "friends_count": 1, "location": "", "description": "Deploying GIFs every six hours. // by @tinysubvesions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479836451182362624/0fAtv_AN_normal.png", "geo_enabled": false, "time_zone": null, "name": "GIF Deployer", "id_str": "2577963498", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/BqkTB2fIEAA8zCs.mp4"}], "aspect_ratio": [1, 1]}, "id": 479935757818531840, "media_url": "http://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "display_url": "pic.twitter.com/WEYISUSsJR", "indices": [21, 43], "expanded_url": "http://twitter.com/gifDeployer/status/479935760033153024/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 600}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 612, "h": 612}}, "id_str": "479935757818531840", "url": "http://t.co/WEYISUSsJR"}]}, "truncated": false, "id": 479935760033153024, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Vietnamese decadence http://t.co/WEYISUSsJR", "id_str": "479935760033153024", "entities": {"media": [{"type": "photo", "id": 479935757818531840, "media_url": "http://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "display_url": "pic.twitter.com/WEYISUSsJR", "indices": [21, 43], "expanded_url": "http://twitter.com/gifDeployer/status/479935760033153024/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 600}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 612, "h": 612}}, "id_str": "479935757818531840", "url": "http://t.co/WEYISUSsJR"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">GIF Deployer</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Fri Jun 20 10:36:16 +0000 2014"}, "is_translator": false, "screen_name": "gifDeployer", "created_at": "Fri Jun 20 03:56:13 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 48, "profile_image_url": "http://pbs.twimg.com/profile_images/479364877551538176/HN0wLHbt_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/XJeqwaDhQg", "statuses_count": 11970, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2575445382, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 428, "friends_count": 1, "location": "", "description": "Generating new aesthetics every hour. Botpunk. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479364877551538176/HN0wLHbt_normal.png", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "Brand New Aesthetics", "id_str": "2575445382", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brand-new-aesthetics.tumblr.com", "indices": [0, 22], "expanded_url": "http://brand-new-aesthetics.tumblr.com", "url": "http://t.co/XJeqwaDhQg"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "da", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CX5BF-lWMAEyoPA.mp4"}], "aspect_ratio": [3, 2]}, "id": 684055764361687041, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "display_url": "pic.twitter.com/d4ZGIYqyt9", "indices": [13, 36], "expanded_url": "http://twitter.com/neweraesthetics/status/684055764768522240/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 200}, "small": {"resize": "fit", "w": 300, "h": 200}, "large": {"resize": "fit", "w": 300, "h": 200}}, "id_str": "684055764361687041", "url": "https://t.co/d4ZGIYqyt9"}]}, "truncated": false, "id": 684055764768522240, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "SOLUTIONPUNK https://t.co/d4ZGIYqyt9", "id_str": "684055764768522240", "entities": {"media": [{"type": "photo", "id": 684055764361687041, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "display_url": "pic.twitter.com/d4ZGIYqyt9", "indices": [13, 36], "expanded_url": "http://twitter.com/neweraesthetics/status/684055764768522240/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 200}, "small": {"resize": "fit", "w": 300, "h": 200}, "large": {"resize": "fit", "w": 300, "h": 200}}, "id_str": "684055764361687041", "url": "https://t.co/d4ZGIYqyt9"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Brand New Aesthetics</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Jan 04 16:56:18 +0000 2016"}, "is_translator": false, "screen_name": "neweraesthetics", "created_at": "Wed Jun 18 20:39:25 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 12, "profile_image_url": "http://pbs.twimg.com/profile_images/479355596076892160/p_jT5KqM_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/DZYA6d8tU5", "statuses_count": 8587, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2575407888, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 113, "friends_count": 1, "location": "Bodymore, Murdaland", "description": "This Twitter account automatically tweets GIFs of The Wire. Also a Tumblr. Updates hourly. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479355596076892160/p_jT5KqM_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Scenes from The Wire", "id_str": "2575407888", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wirescenes.tumblr.com", "indices": [0, 22], "expanded_url": "http://wirescenes.tumblr.com/", "url": "http://t.co/DZYA6d8tU5"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/COXAcgVU8AACS4W.mp4"}], "aspect_ratio": [132, 119]}, "id": 641130117918420992, "media_url": "http://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "display_url": "pic.twitter.com/XBoaB2klZq", "indices": [0, 22], "expanded_url": "http://twitter.com/wirescenes/status/641130118132314112/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 264, "h": 238}, "small": {"resize": "fit", "w": 264, "h": 238}, "medium": {"resize": "fit", "w": 264, "h": 238}}, "id_str": "641130117918420992", "url": "http://t.co/XBoaB2klZq"}]}, "truncated": false, "id": 641130118132314112, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "http://t.co/XBoaB2klZq", "id_str": "641130118132314112", "entities": {"media": [{"type": "photo", "id": 641130117918420992, "media_url": "http://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "display_url": "pic.twitter.com/XBoaB2klZq", "indices": [0, 22], "expanded_url": "http://twitter.com/wirescenes/status/641130118132314112/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 264, "h": 238}, "small": {"resize": "fit", "w": 264, "h": 238}, "medium": {"resize": "fit", "w": 264, "h": 238}}, "id_str": "641130117918420992", "url": "http://t.co/XBoaB2klZq"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Scenes from The Wire</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Sep 08 06:05:06 +0000 2015"}, "is_translator": false, "screen_name": "wirescenes", "created_at": "Wed Jun 18 20:08:31 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 229, "profile_image_url": "http://pbs.twimg.com/profile_images/468570294253150208/DlK5sGe2_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/qTVWPkaIgo", "statuses_count": 2026, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2508960524, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 4176, "friends_count": 1, "location": "(not affiliated with the Met)", "description": "I am a bot that tweets a random high-res Open Access image from the Metropolitan Museum of Art, four times a day. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 3, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/468570294253150208/DlK5sGe2_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Museum Bot", "id_str": "2508960524", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "metmuseum.org/about-the-muse\u2026", "indices": [0, 22], "expanded_url": "http://metmuseum.org/about-the-museum/press-room/news/2014/oasc-access", "url": "http://t.co/qTVWPkaIgo"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 3, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693407092623949824, "media_url": "http://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "display_url": "pic.twitter.com/mRktzdlEB1", "indices": [33, 56], "expanded_url": "http://twitter.com/MuseumBot/status/693407092863033344/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1247}, "small": {"resize": "fit", "w": 340, "h": 414}, "medium": {"resize": "fit", "w": 600, "h": 730}}, "id_str": "693407092623949824", "url": "https://t.co/mRktzdlEB1"}]}, "truncated": false, "id": 693407092863033344, "place": null, "favorite_count": 2, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Nativity https://t.co/OpNseJO3oL https://t.co/mRktzdlEB1", "id_str": "693407092863033344", "entities": {"media": [{"type": "photo", "id": 693407092623949824, "media_url": "http://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "display_url": "pic.twitter.com/mRktzdlEB1", "indices": [33, 56], "expanded_url": "http://twitter.com/MuseumBot/status/693407092863033344/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1247}, "small": {"resize": "fit", "w": 340, "h": 414}, "medium": {"resize": "fit", "w": 600, "h": 730}}, "id_str": "693407092623949824", "url": "https://t.co/mRktzdlEB1"}], "hashtags": [], "urls": [{"display_url": "metmuseum.org/collection/the\u2026", "indices": [9, 32], "expanded_url": "http://www.metmuseum.org/collection/the-collection-online/search/462886?rpp=30&pg=1413&rndkey=20160130&ao=on&ft=*&pos=42373", "url": "https://t.co/OpNseJO3oL"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Museum bot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 12:15:08 +0000 2016"}, "is_translator": false, "screen_name": "MuseumBot", "created_at": "Tue May 20 01:32:24 +0000 2014"}], "previous_cursor_str": "0", "next_cursor_str": "4611686020936348428", "previous_cursor": 0}
View
1 testdata/get_list_members_1.json
@@ -0,0 +1 @@
+{"next_cursor": 0, "users": [{"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1946, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2488961221, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 83, "friends_count": 1, "location": "", "description": "Huh? What? You had a... a wish. I see. Hold on. Let me whip something up for you. // A bot by @tinysubversions, tweets a few times a day", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "geo_enabled": false, "time_zone": null, "name": "Distracted Genie", "id_str": "2488961221", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": true, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693472756780945409, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "I'm sorry, I wasn't listening. Here's the Ar you asked for. https://t.co/CkRDgpmJ7Y", "quoted_status_id": 693466366083379200, "id_str": "693472756780945409", "entities": {"hashtags": [], "urls": [{"display_url": "twitter.com/Bcline_24/stat\u2026", "indices": [60, 83], "expanded_url": "http://twitter.com/Bcline_24/status/693467336901144576", "url": "https://t.co/CkRDgpmJ7Y"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Distracted Genie</a>", "contributors": null, "favorited": false, "quoted_status_id_str": "693466366083379200", "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:36:03 +0000 2016"}, "is_translator": false, "screen_name": "DistractedGenie", "created_at": "Sat May 10 23:17:18 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 54, "profile_image_url": "http://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/AnWK33b4kA", "statuses_count": 2111, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2423944147, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 679, "friends_count": 1, "location": "", "description": "Enlighten your brain with miracles of pics that will astound. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "geo_enabled": false, "time_zone": null, "name": "Miraculous Pictures", "id_str": "2423944147", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/picpedant", "indices": [0, 23], "expanded_url": "https://twitter.com/picpedant", "url": "https://t.co/AnWK33b4kA"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693463710988423168, "media_url": "http://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "display_url": "pic.twitter.com/LbTji1i64B", "indices": [33, 56], "expanded_url": "http://twitter.com/MiraculousPics/status/693463711114199040/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 399, "h": 400}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 399, "h": 400}}, "id_str": "693463710988423168", "url": "https://t.co/LbTji1i64B"}]}, "truncated": false, "id": 693463711114199040, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Jimi Hendrix at Winterland, 1968 https://t.co/LbTji1i64B", "id_str": "693463711114199040", "entities": {"media": [{"type": "photo", "id": 693463710988423168, "media_url": "http://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "display_url": "pic.twitter.com/LbTji1i64B", "indices": [33, 56], "expanded_url": "http://twitter.com/MiraculousPics/status/693463711114199040/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 399, "h": 400}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 399, "h": 400}}, "id_str": "693463710988423168", "url": "https://t.co/LbTji1i64B"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Miraculous Pics</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:00:07 +0000 2016"}, "is_translator": false, "screen_name": "MiraculousPics", "created_at": "Wed Apr 02 14:58:21 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 107, "profile_image_url": "http://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1179, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2418365564, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1180, "friends_count": 1, "location": "", "description": "Absurd charts, twice daily. You get one flow chart and one Venn diagram. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -14400, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "geo_enabled": false, "time_zone": "Atlantic Time (Canada)", "name": "Auto Charts", "id_str": "2418365564", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "photo", "id": 693478803285344257, "media_url": "http://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "media_url_https": "https://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "display_url": "pic.twitter.com/b9NdsoHNJU", "indices": [0, 23], "expanded_url": "http://twitter.com/AutoCharts/status/693478803406987264/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 313}, "small": {"resize": "fit", "w": 340, "h": 177}, "large": {"resize": "fit", "w": 1024, "h": 535}}, "id_str": "693478803285344257", "url": "https://t.co/b9NdsoHNJU"}]}, "truncated": false, "id": 693478803406987264, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "https://t.co/b9NdsoHNJU", "id_str": "693478803406987264", "entities": {"media": [{"type": "photo", "id": 693478803285344257, "media_url": "http://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "media_url_https": "https://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "display_url": "pic.twitter.com/b9NdsoHNJU", "indices": [0, 23], "expanded_url": "http://twitter.com/AutoCharts/status/693478803406987264/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 313}, "small": {"resize": "fit", "w": 340, "h": 177}, "large": {"resize": "fit", "w": 1024, "h": 535}}, "id_str": "693478803285344257", "url": "https://t.co/b9NdsoHNJU"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">autocharts</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:00:05 +0000 2016"}, "is_translator": false, "screen_name": "AutoCharts", "created_at": "Sun Mar 30 03:16:20 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5164, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2409784321, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 133, "friends_count": 1, "location": "Everywhere", "description": "There are a lot of game jams. So here. Have a new one every three hours. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "geo_enabled": false, "time_zone": null, "name": "So Many Game Jams", "id_str": "2409784321", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693485835770056706, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Charity Game Jam for Snapchat #SnapchatJam", "id_str": "693485835770056706", "entities": {"hashtags": [{"indices": [30, 42], "text": "SnapchatJam"}], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">somanyjams</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:28:02 +0000 2016"}, "is_translator": false, "screen_name": "ManyJams", "created_at": "Tue Mar 25 00:36:22 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 9, "profile_image_url": "http://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 4402, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2383588777, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 33, "friends_count": 1, "location": "", "description": "Because memcached is magic. I'm a bot that updates every 3 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "geo_enabled": false, "time_zone": null, "name": "memcached magic", "id_str": "2383588777", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 635791956451438592, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "what the chuff is memcached tap", "id_str": "635791956451438592", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Memcached Magic</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Aug 24 12:33:09 +0000 2015"}, "is_translator": false, "screen_name": "memcached_magic", "created_at": "Tue Mar 11 11:33:50 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 37, "profile_image_url": "http://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/d3IzI1yBRi", "statuses_count": 10480, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2366009953, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 400, "friends_count": 1, "location": "Botston, Kazemistan", "description": "@tinysubversions made me: I am a bot that retweets any bots by him when a tweet reaches a certain fav/RT threshold.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "geo_enabled": false, "time_zone": null, "name": "Best of Darius' Bots", "id_str": "2366009953", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/tinysubversion\u2026", "indices": [0, 23], "expanded_url": "https://twitter.com/tinysubversions/darius-kazemi-s-bots/members", "url": "https://t.co/d3IzI1yBRi"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 4, "lang": "en", "truncated": false, "id": 693458662090625024, "place": null, "favorite_count": 0, "retweeted_status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 4, "lang": "en", "truncated": false, "id": 693435512363859969, "place": null, "favorite_count": 3, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "15 alternatives to People Are", "id_str": "693435512363859969", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Two Headlines</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:08:04 +0000 2016"}, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "RT @TwoHeadlines: 15 alternatives to People Are", "id_str": "693458662090625024", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [3, 16], "id": 1705052335, "name": "Two Headlines", "screen_name": "TwoHeadlines", "id_str": "1705052335"}]}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Darius Bots</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:40:03 +0000 2016"}, "is_translator": false, "screen_name": "dariusbots", "created_at": "Fri Feb 28 18:55:40 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 53, "profile_image_url": "http://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 8933, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2353711584, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 505, "friends_count": 1, "location": "", "description": "Twitter bot for my real friends, real bot for my Twitter friends. Tweets every two hours. by @tinysubversions, powered by @wordnik (see also @twoheadlines)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "geo_enabled": false, "time_zone": null, "name": "For my real friends.", "id_str": "2353711584", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693485067121860608, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "real tie-breaker for my ordinary folks, ordinary tie-breaker for my real folks.", "id_str": "693485067121860608", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">For my real friends</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:24:58 +0000 2016"}, "is_translator": false, "screen_name": "4myrealfriends", "created_at": "Thu Feb 20 19:52:17 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 2576, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2305621754, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 812, "friends_count": 1, "location": "The Internet", "description": "HOW TO VOTE: reply to a tweet with 'F' 'M' and 'K' in the order you want to vote. ('MFK' = marry, fuck, kill). A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "geo_enabled": false, "time_zone": null, "name": "Fuck, Marry, Kill", "id_str": "2305621754", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 562339164193325056, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Hi all. Shutting this bot down. It was fun &amp; did what it was supposed to do but is p repetitive now. Thanks for playing!\n -@tinysubversions", "id_str": "562339164193325056", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [127, 143], "id": 14475298, "name": "Darius Kazemi", "screen_name": "tinysubversions", "id_str": "14475298"}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Feb 02 19:57:59 +0000 2015"}, "is_translator": false, "screen_name": "FMKVote", "created_at": "Wed Jan 22 23:34:33 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 573, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2295281700, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 161, "friends_count": 1, "location": "", "description": "Once a day I generate a random [Whatever] Clicker style game, based on a theme. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Clicker Maker", "id_str": "2295281700", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 671690229510721536, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Today's game is: Value Clicker! https://t.co/tts1yo4Usb", "id_str": "671690229510721536", "entities": {"hashtags": [], "urls": [{"display_url": "orteil.dashnet.org/experiments/id\u2026", "indices": [32, 55], "expanded_url": "http://orteil.dashnet.org/experiments/idlegamemaker/?game=mq5N6W9E", "url": "https://t.co/tts1yo4Usb"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Clicker Maker</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Dec 01 14:00:04 +0000 2015"}, "is_translator": false, "screen_name": "ClickerMaker", "created_at": "Fri Jan 17 01:37:04 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5057, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2276411904, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 1, "location": "", "description": "These might be Steam codes, but they probably aren't. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Steem Codes", "id_str": "2276411904", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "es", "truncated": false, "id": 625842808843280384, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "E0QE6-5W2XU-BMDTO", "id_str": "625842808843280384", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Steem Codes</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Jul 28 01:38:47 +0000 2015"}, "is_translator": false, "screen_name": "SteemCodes", "created_at": "Sat Jan 04 17:31:00 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 23, "profile_image_url": "http://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 135021, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2248819836, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 82, "friends_count": 2, "location": "USSR/Cuba/China", "description": "I am a bot and I love communism so much. I wish there was another bot out there that would talk to me. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "geo_enabled": false, "time_zone": null, "name": "Red Scare Honeypot", "id_str": "2248819836", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 481624063455297536, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "I do think that B&amp;C should never change its rules to include any type of Marx harvested within fences, regar", "id_str": "481624063455297536", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Red Scare Pot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Wed Jun 25 02:24:59 +0000 2014"}, "is_translator": false, "screen_name": "RedScarePot", "created_at": "Mon Dec 16 14:14:28 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 28, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/IT8V4SXHgS", "statuses_count": 2404, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2230101666, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 327, "friends_count": 1, "location": "An Alternate Universe", "description": "Illuminated alternate universe romances of fictional characters. Tweets every six hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "geo_enabled": false, "time_zone": null, "name": "Alt Universe Prompts", "id_str": "2230101666", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "au-prompts.tumblr.com", "indices": [0, 22], "expanded_url": "http://au-prompts.tumblr.com", "url": "http://t.co/IT8V4SXHgS"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693474784630276096, "media_url": "http://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "display_url": "pic.twitter.com/3u470QCWtV", "indices": [48, 71], "expanded_url": "http://twitter.com/AU_Prompts/status/693474784785539073/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 400, "h": 200}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 400, "h": 200}}, "id_str": "693474784630276096", "url": "https://t.co/3u470QCWtV"}]}, "truncated": false, "id": 693474784785539073, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Claire Littleton and Spike in Tampa for Gaspy \u2639 https://t.co/3u470QCWtV", "id_str": "693474784785539073", "entities": {"media": [{"type": "photo", "id": 693474784630276096, "media_url": "http://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "display_url": "pic.twitter.com/3u470QCWtV", "indices": [48, 71], "expanded_url": "http://twitter.com/AU_Prompts/status/693474784785539073/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 400, "h": 200}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 400, "h": 200}}, "id_str": "693474784630276096", "url": "https://t.co/3u470QCWtV"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">AU Prompts</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:44:07 +0000 2016"}, "is_translator": false, "screen_name": "AU_Prompts", "created_at": "Wed Dec 04 15:31:05 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 19, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/cvLCVa3u0L", "statuses_count": 8736, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2201332182, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 526, "friends_count": 1, "location": "Kenosha", "description": "Brute-forcing an episode from Gravity's Rainbow. Tweets every two hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Kenosha Kid", "id_str": "2201332182", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "itre.cis.upenn.edu/~myl/languagel\u2026", "indices": [0, 22], "expanded_url": "http://itre.cis.upenn.edu/~myl/languagelog/archives/001288.html", "url": "http://t.co/cvLCVa3u0L"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693470987065638912, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "You never did the... Kenosha kid!", "id_str": "693470987065638912", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">kenosha kid</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:29:02 +0000 2016"}, "is_translator": false, "screen_name": "YouNeverDidThe", "created_at": "Mon Nov 18 13:42:53 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 13, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6258, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2165015054, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 44, "friends_count": 0, "location": "rutabagas", "description": "Rutabaga is funny vegetaeble. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Rutabaga", "id_str": "2165015054", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693456924147322881, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Separating the rutabagaa from the boys, on mood swing at a time.", "id_str": "693456924147322881", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">FactBot Rutabaga</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:33:09 +0000 2016"}, "is_translator": false, "screen_name": "FactBotRutabaga", "created_at": "Wed Oct 30 15:50:18 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 22, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2164997376, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 0, "location": "carrots", "description": "Carrot is funnye vegetable. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Carrot", "id_str": "2164997376", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693456924126371840, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Separating the carrot from the boys, onao mood swing at a time.", "id_str": "693456924126371840", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">FactBotCarrot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:33:09 +0000 2016"}, "is_translator": false, "screen_name": "FactBotCarrot", "created_at": "Wed Oct 30 15:41:39 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 401, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2157584160, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 67, "friends_count": 1, "location": "Vineland", "description": "Automatically generated YouTube music videos. One in the day, and one at night. Because why not. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "geo_enabled": false, "time_zone": null, "name": "AutoVids", "id_str": "2157584160", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 1, "lang": "und", "truncated": false, "id": 468753667244707840, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "#bar: http://t.co/rDWaz8FR5P", "id_str": "468753667244707840", "entities": {"hashtags": [{"indices": [0, 4], "text": "bar"}], "urls": [{"display_url": "youtube.com/watch?v=JkkKt9\u2026", "indices": [6, 28], "expanded_url": "http://www.youtube.com/watch?v=JkkKt964_SI", "url": "http://t.co/rDWaz8FR5P"}], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Autodvids</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue May 20 14:02:37 +0000 2014"}, "is_translator": false, "screen_name": "AutoVids", "created_at": "Sat Oct 26 21:31:40 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9249, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1963165520, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 58, "friends_count": 1, "location": "GIFTown", "description": "People like to tweet Someone should make a GIF of [blah]. This tweets [blah], once an hour. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "geo_enabled": false, "time_zone": null, "name": "Make a GIF of...", "id_str": "1963165520", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 562291650559741954, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Brady jumping at the end", "id_str": "562291650559741954", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Someone should make a gif of</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Feb 02 16:49:11 +0000 2015"}, "is_translator": false, "screen_name": "MakeAGifOf", "created_at": "Tue Oct 15 18:28:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/MWfhcM373l", "statuses_count": 3282, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1920313014, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 156, "friends_count": 0, "location": "", "description": "This bot tweets every 8 hours what English servants were convicted of stealing from their masters 1823-1841, and how they were punished. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Stealing from Master", "id_str": "1920313014", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "oldbaileyonline.org", "indices": [0, 22], "expanded_url": "http://www.oldbaileyonline.org", "url": "http://t.co/MWfhcM373l"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693424228016717824, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "1 wind instrument, called a horn, value 5s.; and 5 dozen of fireworks, called squibs, value 2s. 6d. Transported for Seven Years", "id_str": "693424228016717824", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Stealing From Master</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:23:13 +0000 2016"}, "is_translator": false, "screen_name": "TheftFromMaster", "created_at": "Mon Sep 30 14:59:11 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 7, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1891608493, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 36, "friends_count": 1, "location": "Um, XOXO?", "description": "This takes the last 10 tweets from #xoxofest and markovs the shit out of them. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "XOXO_ebooks", "id_str": "1891608493", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 1, "lang": "en", "truncated": false, "id": 382022262078967808, "place": null, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Hi everyone! Thanks so much for following XOXO_ebooks, but like the conference, this bot is over. (For now.) &lt;3 #xoxofest\n\n-@tinysubversions", "id_str": "382022262078967808", "entities": {"hashtags": [{"indices": [115, 124], "text": "xoxofest"}], "urls": [], "symbols": [], "user_mentions": [{"indices": [127, 143], "id": 14475298, "name": "Darius Kazemi", "screen_name": "tinysubversions", "id_str": "14475298"}]}, "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Sep 23 06:02:59 +0000 2013"}, "is_translator": false, "screen_name": "XOXO_ebooks", "created_at": "Sat Sep 21 21:45:45 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 29, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19921, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1885568064, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 105, "friends_count": 0, "location": "Boston, MA", "description": "I'm too lazy to update @boazims, so I wrote a bot to do it for me. Tweets hourly. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Boazim Bot", "id_str": "1885568064", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693477785289904128, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Caunes - causeless tones.", "id_str": "693477785289904128", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Boazim Bot</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:56:02 +0000 2016"}, "is_translator": false, "screen_name": "BoazimBot", "created_at": "Fri Sep 20 06:38:32 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 275, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19336, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1705052335, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 5257, "friends_count": 1, "location": "The Bugle Planet", "description": "Comedy is when you take two headlines about different things and then confuse them. Updates hourly. // By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "geo_enabled": false, "time_zone": null, "name": "Two Headlines", "id_str": "1705052335", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693480810742222849, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Ryan Bader Coldplay video sparks Twitter debate", "id_str": "693480810742222849", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Two Headlines</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:08:04 +0000 2016"}, "is_translator": false, "screen_name": "TwoHeadlines", "created_at": "Tue Aug 27 16:00:04 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 18, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9399, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1645840790, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 63, "friends_count": 0, "location": "", "description": "Unused merchandise on clearance today! New sales every hour. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Six Word Sale", "id_str": "1645840790", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693444061257142272, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "For sale: Cinderella Couture Baby Girls Polka Dotted Rockabilly Dress Hat Aqua 24M X 1002, never worn.", "id_str": "693444061257142272", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Six Word Sale</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:42:02 +0000 2016"}, "is_translator": false, "screen_name": "SixWordSale", "created_at": "Sun Aug 04 18:25:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 57, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 16715, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1620735632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 379, "friends_count": 0, "location": "Favstar", "description": "Humor expert, explaining jokes once per hour for the edification of all. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Professor Jocular", "id_str": "1620735632", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693449616843476992, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "[force per unit area joke] RT .TwoSapphiresBlu: Heart full of wish, head full of clouds", "id_str": "693449616843476992", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Professor Jocular</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:04:06 +0000 2016"}, "is_translator": false, "screen_name": "ProfJocular", "created_at": "Thu Jul 25 16:11:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 90, "profile_image_url": "http://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/T4MMA1dwmr", "statuses_count": 71117, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1505391505, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 657, "friends_count": 1, "location": "Twitter", "description": "This is a bot that makes bad jokes based on Twitter trending topics. Twitter comedians: consider yourselves on notice. Written by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 9, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "AmIRite Bot", "id_str": "1505391505", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "favstar.fm/users/amiriteb\u2026", "indices": [0, 22], "expanded_url": "http://favstar.fm/users/amiritebot", "url": "http://t.co/T4MMA1dwmr"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693481746478862336, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "#SouthernSlam? More like Southern Stam, amirite?", "id_str": "693481746478862336", "entities": {"hashtags": [{"indices": [0, 13], "text": "SouthernSlam"}], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">AmIRite Bot2</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:11:47 +0000 2016"}, "is_translator": false, "screen_name": "AmIRiteBot", "created_at": "Tue Jun 11 17:34:31 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 777, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1270269918, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 138, "friends_count": 0, "location": "GDC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1270269918/1364135331", "description": "@tinysubversions isn't attending GDC 2015, so he created me to attend in his place. (An update of the 2013 edition.)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 28, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Darius at GDC", "id_str": "1270269918", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 573986421310111744, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "There's really not a whole lot of sessions right now, huh", "id_str": "573986421310111744", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Darius at GDC</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Fri Mar 06 23:20:01 +0000 2015"}, "is_translator": false, "screen_name": "darius_at_gdc", "created_at": "Fri Mar 15 17:38:49 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 43, "profile_image_url": "http://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 45902, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1081686444, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 272, "friends_count": 5, "location": "", "description": "@latourbot + #swag: an attempt to approximate @10rdben in bot form. Tweets every 2 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 11, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "geo_enabled": false, "time_zone": null, "name": "Latour Swag", "id_str": "1081686444", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 626022351625408513, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "The vocabulary we are seeking remains properly political here and i don't know how things stand.", "id_str": "626022351625408513", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://tinysubversions.com\" rel=\"nofollow\">Latour Swag</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Jul 28 13:32:14 +0000 2015"}, "is_translator": false, "screen_name": "LatourSwag", "created_at": "Sat Jan 12 03:31:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 11, "profile_image_url": "http://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/JOsQWAlNKA", "statuses_count": 4640, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 770580787, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 54, "friends_count": 0, "location": "Thanks for nothing.", "description": "Twitter doesn't have enough Colin's Bear Animation. @tinysubversions decided to fix this.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "colinsbearanim", "id_str": "770580787", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/watch?v=FiARsQ\u2026", "indices": [0, 22], "expanded_url": "http://www.youtube.com/watch?v=FiARsQSlzDc", "url": "http://t.co/JOsQWAlNKA"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 633399328275570688, "place": null, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Thanks for nothing.", "id_str": "633399328275570688", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "<a href=\"http://www.youtube.com/watch?v=FiARsQSlzDc\" rel=\"nofollow\">ColinsBearAnimation</a>", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Aug 17 22:05:42 +0000 2015"}, "is_translator": false, "screen_name": "colinsbearanim", "created_at": "Tue Aug 21 01:26:54 +0000 2012"}], "previous_cursor_str": "-4611686020916349125", "next_cursor_str": "0", "previous_cursor": -4611686020916349125}
View
1 testdata/get_list_members_extra_params.json
@@ -0,0 +1 @@
+{"next_cursor": 0, "users": [{"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1946, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2488961221, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 83, "friends_count": 1, "location": "", "description": "Huh? What? You had a... a wish. I see. Hold on. Let me whip something up for you. // A bot by @tinysubversions, tweets a few times a day", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "geo_enabled": false, "time_zone": null, "name": "Distracted Genie", "id_str": "2488961221", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "DistractedGenie", "created_at": "Sat May 10 23:17:18 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 54, "profile_image_url": "http://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/AnWK33b4kA", "statuses_count": 2111, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2423944147, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 679, "friends_count": 1, "location": "", "description": "Enlighten your brain with miracles of pics that will astound. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "geo_enabled": false, "time_zone": null, "name": "Miraculous Pictures", "id_str": "2423944147", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/picpedant", "indices": [0, 23], "expanded_url": "https://twitter.com/picpedant", "url": "https://t.co/AnWK33b4kA"}]}}, "is_translator": false, "screen_name": "MiraculousPics", "created_at": "Wed Apr 02 14:58:21 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 107, "profile_image_url": "http://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1179, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2418365564, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1180, "friends_count": 1, "location": "", "description": "Absurd charts, twice daily. You get one flow chart and one Venn diagram. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -14400, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "geo_enabled": false, "time_zone": "Atlantic Time (Canada)", "name": "Auto Charts", "id_str": "2418365564", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "AutoCharts", "created_at": "Sun Mar 30 03:16:20 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5164, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2409784321, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 133, "friends_count": 1, "location": "Everywhere", "description": "There are a lot of game jams. So here. Have a new one every three hours. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "geo_enabled": false, "time_zone": null, "name": "So Many Game Jams", "id_str": "2409784321", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ManyJams", "created_at": "Tue Mar 25 00:36:22 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 9, "profile_image_url": "http://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 4402, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2383588777, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 33, "friends_count": 1, "location": "", "description": "Because memcached is magic. I'm a bot that updates every 3 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "geo_enabled": false, "time_zone": null, "name": "memcached magic", "id_str": "2383588777", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "memcached_magic", "created_at": "Tue Mar 11 11:33:50 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 37, "profile_image_url": "http://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/d3IzI1yBRi", "statuses_count": 10480, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2366009953, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 401, "friends_count": 1, "location": "Botston, Kazemistan", "description": "@tinysubversions made me: I am a bot that retweets any bots by him when a tweet reaches a certain fav/RT threshold.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "geo_enabled": false, "time_zone": null, "name": "Best of Darius' Bots", "id_str": "2366009953", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/tinysubversion\u2026", "indices": [0, 23], "expanded_url": "https://twitter.com/tinysubversions/darius-kazemi-s-bots/members", "url": "https://t.co/d3IzI1yBRi"}]}}, "is_translator": false, "screen_name": "dariusbots", "created_at": "Fri Feb 28 18:55:40 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 53, "profile_image_url": "http://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 8933, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2353711584, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 505, "friends_count": 1, "location": "", "description": "Twitter bot for my real friends, real bot for my Twitter friends. Tweets every two hours. by @tinysubversions, powered by @wordnik (see also @twoheadlines)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "geo_enabled": false, "time_zone": null, "name": "For my real friends.", "id_str": "2353711584", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "4myrealfriends", "created_at": "Thu Feb 20 19:52:17 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 2576, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2305621754, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 812, "friends_count": 1, "location": "The Internet", "description": "HOW TO VOTE: reply to a tweet with 'F' 'M' and 'K' in the order you want to vote. ('MFK' = marry, fuck, kill). A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "geo_enabled": false, "time_zone": null, "name": "Fuck, Marry, Kill", "id_str": "2305621754", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "FMKVote", "created_at": "Wed Jan 22 23:34:33 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 573, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2295281700, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 161, "friends_count": 1, "location": "", "description": "Once a day I generate a random [Whatever] Clicker style game, based on a theme. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Clicker Maker", "id_str": "2295281700", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ClickerMaker", "created_at": "Fri Jan 17 01:37:04 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5057, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2276411904, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 1, "location": "", "description": "These might be Steam codes, but they probably aren't. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Steem Codes", "id_str": "2276411904", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "SteemCodes", "created_at": "Sat Jan 04 17:31:00 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 23, "profile_image_url": "http://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 135021, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2248819836, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 82, "friends_count": 2, "location": "USSR/Cuba/China", "description": "I am a bot and I love communism so much. I wish there was another bot out there that would talk to me. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "geo_enabled": false, "time_zone": null, "name": "Red Scare Honeypot", "id_str": "2248819836", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "RedScarePot", "created_at": "Mon Dec 16 14:14:28 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 28, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/IT8V4SXHgS", "statuses_count": 2404, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2230101666, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 327, "friends_count": 1, "location": "An Alternate Universe", "description": "Illuminated alternate universe romances of fictional characters. Tweets every six hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "geo_enabled": false, "time_zone": null, "name": "Alt Universe Prompts", "id_str": "2230101666", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "au-prompts.tumblr.com", "indices": [0, 22], "expanded_url": "http://au-prompts.tumblr.com", "url": "http://t.co/IT8V4SXHgS"}]}}, "is_translator": false, "screen_name": "AU_Prompts", "created_at": "Wed Dec 04 15:31:05 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 19, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/cvLCVa3u0L", "statuses_count": 8736, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2201332182, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 526, "friends_count": 1, "location": "Kenosha", "description": "Brute-forcing an episode from Gravity's Rainbow. Tweets every two hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Kenosha Kid", "id_str": "2201332182", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "itre.cis.upenn.edu/~myl/languagel\u2026", "indices": [0, 22], "expanded_url": "http://itre.cis.upenn.edu/~myl/languagelog/archives/001288.html", "url": "http://t.co/cvLCVa3u0L"}]}}, "is_translator": false, "screen_name": "YouNeverDidThe", "created_at": "Mon Nov 18 13:42:53 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 13, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6258, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2165015054, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 44, "friends_count": 0, "location": "rutabagas", "description": "Rutabaga is funny vegetaeble. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Rutabaga", "id_str": "2165015054", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "FactBotRutabaga", "created_at": "Wed Oct 30 15:50:18 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 22, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2164997376, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 0, "location": "carrots", "description": "Carrot is funnye vegetable. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Carrot", "id_str": "2164997376", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "FactBotCarrot", "created_at": "Wed Oct 30 15:41:39 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 401, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2157584160, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 67, "friends_count": 1, "location": "Vineland", "description": "Automatically generated YouTube music videos. One in the day, and one at night. Because why not. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "geo_enabled": false, "time_zone": null, "name": "AutoVids", "id_str": "2157584160", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "AutoVids", "created_at": "Sat Oct 26 21:31:40 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9249, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1963165520, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 58, "friends_count": 1, "location": "GIFTown", "description": "People like to tweet Someone should make a GIF of [blah]. This tweets [blah], once an hour. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "geo_enabled": false, "time_zone": null, "name": "Make a GIF of...", "id_str": "1963165520", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "MakeAGifOf", "created_at": "Tue Oct 15 18:28:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/MWfhcM373l", "statuses_count": 3282, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1920313014, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 156, "friends_count": 0, "location": "", "description": "This bot tweets every 8 hours what English servants were convicted of stealing from their masters 1823-1841, and how they were punished. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Stealing from Master", "id_str": "1920313014", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "oldbaileyonline.org", "indices": [0, 22], "expanded_url": "http://www.oldbaileyonline.org", "url": "http://t.co/MWfhcM373l"}]}}, "is_translator": false, "screen_name": "TheftFromMaster", "created_at": "Mon Sep 30 14:59:11 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 7, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1891608493, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 36, "friends_count": 1, "location": "Um, XOXO?", "description": "This takes the last 10 tweets from #xoxofest and markovs the shit out of them. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "XOXO_ebooks", "id_str": "1891608493", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "XOXO_ebooks", "created_at": "Sat Sep 21 21:45:45 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 29, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19921, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1885568064, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 105, "friends_count": 0, "location": "Boston, MA", "description": "I'm too lazy to update @boazims, so I wrote a bot to do it for me. Tweets hourly. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Boazim Bot", "id_str": "1885568064", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "BoazimBot", "created_at": "Fri Sep 20 06:38:32 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 275, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19336, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1705052335, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 5257, "friends_count": 1, "location": "The Bugle Planet", "description": "Comedy is when you take two headlines about different things and then confuse them. Updates hourly. // By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "geo_enabled": false, "time_zone": null, "name": "Two Headlines", "id_str": "1705052335", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "TwoHeadlines", "created_at": "Tue Aug 27 16:00:04 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 18, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9399, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1645840790, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 63, "friends_count": 0, "location": "", "description": "Unused merchandise on clearance today! New sales every hour. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Six Word Sale", "id_str": "1645840790", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "SixWordSale", "created_at": "Sun Aug 04 18:25:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 57, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 16715, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1620735632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 379, "friends_count": 0, "location": "Favstar", "description": "Humor expert, explaining jokes once per hour for the edification of all. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Professor Jocular", "id_str": "1620735632", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ProfJocular", "created_at": "Thu Jul 25 16:11:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 90, "profile_image_url": "http://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/T4MMA1dwmr", "statuses_count": 71117, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1505391505, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 657, "friends_count": 1, "location": "Twitter", "description": "This is a bot that makes bad jokes based on Twitter trending topics. Twitter comedians: consider yourselves on notice. Written by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 9, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "AmIRite Bot", "id_str": "1505391505", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "favstar.fm/users/amiriteb\u2026", "indices": [0, 22], "expanded_url": "http://favstar.fm/users/amiritebot", "url": "http://t.co/T4MMA1dwmr"}]}}, "is_translator": false, "screen_name": "AmIRiteBot", "created_at": "Tue Jun 11 17:34:31 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 777, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1270269918, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 138, "friends_count": 0, "location": "GDC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1270269918/1364135331", "description": "@tinysubversions isn't attending GDC 2015, so he created me to attend in his place. (An update of the 2013 edition.)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 28, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Darius at GDC", "id_str": "1270269918", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "darius_at_gdc", "created_at": "Fri Mar 15 17:38:49 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 43, "profile_image_url": "http://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 45903, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1081686444, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 272, "friends_count": 5, "location": "", "description": "@latourbot + #swag: an attempt to approximate @10rdben in bot form. Tweets every 2 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 11, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "geo_enabled": false, "time_zone": null, "name": "Latour Swag", "id_str": "1081686444", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "LatourSwag", "created_at": "Sat Jan 12 03:31:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 11, "profile_image_url": "http://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/JOsQWAlNKA", "statuses_count": 4640, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 770580787, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 54, "friends_count": 0, "location": "Thanks for nothing.", "description": "Twitter doesn't have enough Colin's Bear Animation. @tinysubversions decided to fix this.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "colinsbearanim", "id_str": "770580787", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/watch?v=FiARsQ\u2026", "indices": [0, 22], "expanded_url": "http://www.youtube.com/watch?v=FiARsQSlzDc", "url": "http://t.co/JOsQWAlNKA"}]}}, "is_translator": false, "screen_name": "colinsbearanim", "created_at": "Tue Aug 21 01:26:54 +0000 2012"}], "previous_cursor_str": "-4611686020916349125", "next_cursor_str": "0", "previous_cursor": -4611686020916349125}
View
1 testdata/get_list_timeline.json
@@ -0,0 +1 @@
+[{"geo": null, "id": 693191602957852676, "possibly_sensitive": false, "id_str": "693191602957852676", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "photo", "display_url": "pic.twitter.com/3T3tr6d35v", "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "animated_gif", "display_url": "pic.twitter.com/3T3tr6d35v", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ62FwXXEAUQ5XO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:58:51 +0000 2016", "text": "2016-01-29T21:00:00 https://t.co/3T3tr6d35v"}, {"geo": null, "id": 693178508705730560, "possibly_sensitive": false, "id_str": "693178508705730560", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "photo", "display_url": "pic.twitter.com/mOYWmzmeQ6", "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/6TwmG--?m", "display_url": "osm.org/go/6TwmG--?m", "url": "https://t.co/eaWmlXzoJg", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "video", "display_url": "pic.twitter.com/mOYWmzmeQ6", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/720x720/EqwS2CD0YgNHAT70.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/240x240/xvuWcFkJ6EVcfFWM.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.mp4", "content_type": "video/mp4", "bitrate": 832000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:06:49 +0000 2016", "text": "Coordinates: (15.571961348728838, 143.8900334369081); https://t.co/eaWmlXzoJg https://t.co/mOYWmzmeQ6"}, {"geo": null, "id": 693161399770562561, "possibly_sensitive": false, "id_str": "693161399770562561", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693161398768156672, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693161398768156672", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png", "url": "https://t.co/JI9MnneU0A", "type": "photo", "display_url": "pic.twitter.com/JI9MnneU0A", "expanded_url": "http://twitter.com/himawari8bot/status/693161399770562561/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693161398768156672, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693161398768156672", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png", "url": "https://t.co/JI9MnneU0A", "type": "animated_gif", "display_url": "pic.twitter.com/JI9MnneU0A", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ6anqGWwAAEiGO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693161399770562561/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 19:58:50 +0000 2016", "text": "2016-01-29T19:00:00 https://t.co/JI9MnneU0A"}, {"geo": null, "id": 693133246075379713, "possibly_sensitive": false, "id_str": "693133246075379713", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693133231890264064, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693133231890264064", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg", "url": "https://t.co/LEgekKPwZJ", "type": "photo", "display_url": "pic.twitter.com/LEgekKPwZJ", "expanded_url": "http://twitter.com/himawari8bot/status/693133246075379713/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/p1CLk--?m", "display_url": "osm.org/go/p1CLk--?m", "url": "https://t.co/9GXu7VdoiT", "indices": [56, 79]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693133231890264064, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693133231890264064", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg", "url": "https://t.co/LEgekKPwZJ", "type": "video", "display_url": "pic.twitter.com/LEgekKPwZJ", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/240x240/SR-3qQ_a2vN9-cDE.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/720x720/QabcEFpHt_m7ek1L.mp4", "content_type": "video/mp4", "bitrate": 1280000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693133246075379713/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 18:06:58 +0000 2016", "text": "Coordinates: (-47.754020632282845, 113.51459718142179); https://t.co/9GXu7VdoiT https://t.co/LEgekKPwZJ"}, {"geo": null, "id": 693131199141797888, "possibly_sensitive": false, "id_str": "693131199141797888", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693131198764290049, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693131198764290049", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png", "url": "https://t.co/uBZUMJKFYI", "type": "photo", "display_url": "pic.twitter.com/uBZUMJKFYI", "expanded_url": "http://twitter.com/himawari8bot/status/693131199141797888/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693131198764290049, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693131198764290049", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png", "url": "https://t.co/uBZUMJKFYI", "type": "animated_gif", "display_url": "pic.twitter.com/uBZUMJKFYI", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ5_JyUWEAENyL3.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693131199141797888/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 17:58:50 +0000 2016", "text": "2016-01-29T17:00:00 https://t.co/uBZUMJKFYI"}, {"geo": null, "id": 693101007883112449, "possibly_sensitive": false, "id_str": "693101007883112449", "retweeted": false, "truncated": false, "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693101007266582529, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693101007266582529", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png", "url": "https://t.co/0c8rqxCHF1", "type": "photo", "display_url": "pic.twitter.com/0c8rqxCHF1", "expanded_url": "http://twitter.com/himawari8bot/status/693101007883112449/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693101007266582529, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693101007266582529", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png", "url": "https://t.co/0c8rqxCHF1", "type": "animated_gif", "display_url": "pic.twitter.com/0c8rqxCHF1", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ5jsaOXEAEEqfu.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693101007883112449/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 15:58:52 +0000 2016", "text": "2016-01-29T15:00:00 https://t.co/0c8rqxCHF1"}, {"geo": null, "id": 693089357155147776, "possibly_sensitive": false, "id_str": "693089357155147776", "retweeted": false, "truncated": false, "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693089340516335616, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693089340516335616", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg", "url": "https://t.co/GnYRtH78G5", "type": "photo", "display_url": "pic.twitter.com/GnYRtH78G5", "expanded_url": "http://twitter.com/himawari8bot/status/693089357155147776/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/RQUwg--?m", "display_url": "osm.org/go/RQUwg--?m", "url": "https://t.co/vdw6tffLWE", "indices": [56, 79]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693089340516335616, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693089340516335616", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg", "url": "https://t.co/GnYRtH78G5", "type": "video", "display_url": "pic.twitter.com/GnYRtH78G5", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/720x720/gn_aTvdtfOBVR4pE.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/240x240/w1ZnCmkTV5aZ8Nog.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.mp4", "content_type": "video/mp4", "bitrate": 832000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693089357155147776/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 15:12:34 +0000 2016", "text": "Coordinates: (36.038219371747736, -179.59752635358763); https://t.co/vdw6tffLWE https://t.co/GnYRtH78G5"}, {"geo": null, "id": 693070816901206016, "possibly_sensitive": false, "id_str": "693070816901206016", "retweeted": false, "truncated": false, "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693070816284708868, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693070816284708868", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png", "url": "https://t.co/o0k7ZjEdy5", "type": "photo", "display_url": "pic.twitter.com/o0k7ZjEdy5", "expanded_url": "http://twitter.com/himawari8bot/status/693070816901206016/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693070816284708868, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693070816284708868", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png", "url": "https://t.co/o0k7ZjEdy5", "type": "animated_gif", "display_url": "pic.twitter.com/o0k7ZjEdy5", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ5IPEDXEAQZ0E6.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693070816901206016/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 2, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 13:58:54 +0000 2016", "text": "2016-01-29T13:00:00 https://t.co/o0k7ZjEdy5"}, {"geo": null, "id": 693046273516163072, "possibly_sensitive": false, "id_str": "693046273516163072", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693046238246256640, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693046238246256640", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg", "url": "https://t.co/CZfGlRA4ys", "type": "photo", "display_url": "pic.twitter.com/CZfGlRA4ys", "expanded_url": "http://twitter.com/himawari8bot/status/693046273516163072/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/8r924--?m", "display_url": "osm.org/go/8r924--?m", "url": "https://t.co/2Sgxzcl522", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693046238246256640, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693046238246256640", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg", "url": "https://t.co/CZfGlRA4ys", "type": "video", "display_url": "pic.twitter.com/CZfGlRA4ys", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/240x240/NYcjmZMiI4zSRxSK.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/720x720/4ItijaUTfxNNmtDF.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.m3u8", "content_type": "application/x-mpegURL"}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693046273516163072/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 12:21:22 +0000 2016", "text": "Coordinates: (50.559588880563034, 134.1051793146934); https://t.co/2Sgxzcl522 https://t.co/CZfGlRA4ys"}, {"geo": null, "id": 693040631288061952, "possibly_sensitive": false, "id_str": "693040631288061952", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693040630419820544, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693040630419820544", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png", "url": "https://t.co/ILbjLTRw49", "type": "photo", "display_url": "pic.twitter.com/ILbjLTRw49", "expanded_url": "http://twitter.com/himawari8bot/status/693040631288061952/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693040630419820544, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693040630419820544", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png", "url": "https://t.co/ILbjLTRw49", "type": "animated_gif", "display_url": "pic.twitter.com/ILbjLTRw49", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ4syA8WEAAfGPV.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693040631288061952/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 11:58:57 +0000 2016", "text": "2016-01-29T11:00:00 https://t.co/ILbjLTRw49"}, {"geo": null, "id": 693010429514268672, "possibly_sensitive": false, "id_str": "693010429514268672", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693010428520222720, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693010428520222720", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png", "url": "https://t.co/PSuSrm1WSb", "type": "photo", "display_url": "pic.twitter.com/PSuSrm1WSb", "expanded_url": "http://twitter.com/himawari8bot/status/693010429514268672/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693010428520222720, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693010428520222720", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png", "url": "https://t.co/PSuSrm1WSb", "type": "animated_gif", "display_url": "pic.twitter.com/PSuSrm1WSb", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ4RUCGW0AAR1ER.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693010429514268672/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 09:58:56 +0000 2016", "text": "2016-01-29T09:00:00 https://t.co/PSuSrm1WSb"}, {"geo": null, "id": 693006025121763328, "possibly_sensitive": false, "id_str": "693006025121763328", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693005994532667392, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693005994532667392", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg", "url": "https://t.co/lNfm936DMH", "type": "photo", "display_url": "pic.twitter.com/lNfm936DMH", "expanded_url": "http://twitter.com/himawari8bot/status/693006025121763328/video/1", "indices": [79, 102], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/ssEaH--?m", "display_url": "osm.org/go/ssEaH--?m", "url": "https://t.co/smfC99mO9b", "indices": [55, 78]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693005994532667392, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693005994532667392", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg", "url": "https://t.co/lNfm936DMH", "type": "video", "display_url": "pic.twitter.com/lNfm936DMH", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/240x240/Sx0UecW4xtWJ2GAM.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/720x720/p4J4fzRjFmnS6gLY.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.m3u8", "content_type": "application/x-mpegURL"}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693006025121763328/video/1", "indices": [79, 102], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 09:41:26 +0000 2016", "text": "Coordinates: (-38.47495767179647, 124.02898728887148); https://t.co/smfC99mO9b https://t.co/lNfm936DMH"}, {"geo": null, "id": 692980243339071488, "possibly_sensitive": false, "id_str": "692980243339071488", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692980241594187777, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692980241594187777", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "url": "https://t.co/h9UiOuuezl", "type": "photo", "display_url": "pic.twitter.com/h9UiOuuezl", "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692980241594187777, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692980241594187777", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "url": "https://t.co/h9UiOuuezl", "type": "animated_gif", "display_url": "pic.twitter.com/h9UiOuuezl", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ3127CWAAEKfCn.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 1, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 07:58:59 +0000 2016", "text": "2016-01-29T07:00:00 https://t.co/h9UiOuuezl"}, {"geo": null, "id": 692966575163490304, "possibly_sensitive": false, "id_str": "692966575163490304", "retweeted": false, "truncated": false, "favorite_count": 5, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692966551088144384, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692966551088144384", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "url": "https://t.co/Y5JC3FMIOf", "type": "photo", "display_url": "pic.twitter.com/Y5JC3FMIOf", "expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "indices": [77, 100], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/4GRtz--?m", "display_url": "osm.org/go/4GRtz--?m", "url": "https://t.co/yYjiKeXBWX", "indices": [53, 76]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692966551088144384, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692966551088144384", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "url": "https://t.co/Y5JC3FMIOf", "type": "video", "display_url": "pic.twitter.com/Y5JC3FMIOf", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/240x240/nV5hjslkH1_rF_d5.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/720x720/AG2v4zTRtEkL4V8U.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.mpd", "content_type": "application/dash+xml"}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "indices": [77, 100], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 2, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 07:04:40 +0000 2016", "text": "Coordinates: (7.546182427135968, 96.21339092216665); https://t.co/yYjiKeXBWX https://t.co/Y5JC3FMIOf"}, {"geo": null, "id": 692950032534867968, "possibly_sensitive": false, "id_str": "692950032534867968", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692950031654060032, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692950031654060032", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "url": "https://t.co/o1eyd9u1Eu", "type": "photo", "display_url": "pic.twitter.com/o1eyd9u1Eu", "expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692950031654060032, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692950031654060032", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "url": "https://t.co/o1eyd9u1Eu", "type": "animated_gif", "display_url": "pic.twitter.com/o1eyd9u1Eu", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ3aYePWAAA5oSh.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 05:58:56 +0000 2016", "text": "2016-01-29T05:00:00 https://t.co/o1eyd9u1Eu"}, {"geo": null, "id": 692922442763886592, "possibly_sensitive": false, "id_str": "692922442763886592", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692922396756578304, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692922396756578304", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "url": "https://t.co/GlvueMdKAv", "type": "photo", "display_url": "pic.twitter.com/GlvueMdKAv", "expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/6D4DZ--?m", "display_url": "osm.org/go/6D4DZ--?m", "url": "https://t.co/rSEV1FbfGP", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692922396756578304, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692922396756578304", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "url": "https://t.co/GlvueMdKAv", "type": "video", "display_url": "pic.twitter.com/GlvueMdKAv", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/240x240/okMIUa5kJQogzPMc.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/720x720/0DPjv7vnuGkfnqVw.mp4", "content_type": "video/mp4", "bitrate": 1280000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 04:09:18 +0000 2016", "text": "Coordinates: (4.291394187534963, 144.95617725288201); https://t.co/rSEV1FbfGP https://t.co/GlvueMdKAv"}, {"geo": null, "id": 692919830324854786, "possibly_sensitive": false, "id_str": "692919830324854786", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692919829540519937, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692919829540519937", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "url": "https://t.co/g2JiaZbtCk", "type": "photo", "display_url": "pic.twitter.com/g2JiaZbtCk", "expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692919829540519937, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692919829540519937", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "url": "https://t.co/g2JiaZbtCk", "type": "animated_gif", "display_url": "pic.twitter.com/g2JiaZbtCk", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ2-6emWQAE98l8.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 2, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 03:58:56 +0000 2016", "text": "2016-01-29T03:00:00 https://t.co/g2JiaZbtCk"}, {"geo": null, "id": 692889631524655104, "possibly_sensitive": false, "id_str": "692889631524655104", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692889631033937920, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692889631033937920", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "url": "https://t.co/u2pe4ssU0q", "type": "photo", "display_url": "pic.twitter.com/u2pe4ssU0q", "expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692889631033937920, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692889631033937920", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "url": "https://t.co/u2pe4ssU0q", "type": "animated_gif", "display_url": "pic.twitter.com/u2pe4ssU0q", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ2jcsZUUAA5idO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 01:58:56 +0000 2016", "text": "2016-01-29T01:00:00 https://t.co/u2pe4ssU0q"}, {"geo": null, "id": 692859419193806849, "possibly_sensitive": false, "id_str": "692859419193806849", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692859418841460737, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692859418841460737", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "url": "https://t.co/IMEOTR6MxJ", "type": "photo", "display_url": "pic.twitter.com/IMEOTR6MxJ", "expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692859418841460737, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692859418841460737", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "url": "https://t.co/IMEOTR6MxJ", "type": "animated_gif", "display_url": "pic.twitter.com/IMEOTR6MxJ", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ2H-HNUMAEYGYM.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Thu Jan 28 23:58:52 +0000 2016", "text": "2016-01-28T23:00:00 https://t.co/IMEOTR6MxJ"}, {"geo": null, "id": 692829211019575296, "possibly_sensitive": false, "id_str": "692829211019575296", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692829210705002498, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692829210705002498", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png", "url": "https://t.co/WnLnPl8iuZ", "type": "photo", "display_url": "pic.twitter.com/WnLnPl8iuZ", "expanded_url": "http://twitter.com/himawari8bot/status/692829211019575296/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692829210705002498, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692829210705002498", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png", "url": "https://t.co/WnLnPl8iuZ", "type": "animated_gif", "display_url": "pic.twitter.com/WnLnPl8iuZ", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ1sfxIWAAIimRw.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692829211019575296/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Thu Jan 28 21:58:50 +0000 2016", "text": "2016-01-28T21:00:00 https://t.co/WnLnPl8iuZ"}]
View
1 testdata/get_list_timeline_count.json
@@ -0,0 +1 @@
+[{"geo": null, "id": 693191602957852676, "possibly_sensitive": false, "id_str": "693191602957852676", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "photo", "display_url": "pic.twitter.com/3T3tr6d35v", "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "animated_gif", "display_url": "pic.twitter.com/3T3tr6d35v", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ62FwXXEAUQ5XO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:58:51 +0000 2016", "text": "2016-01-29T21:00:00 https://t.co/3T3tr6d35v"}, {"geo": null, "id": 693178508705730560, "possibly_sensitive": false, "id_str": "693178508705730560", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "photo", "display_url": "pic.twitter.com/mOYWmzmeQ6", "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/6TwmG--?m", "display_url": "osm.org/go/6TwmG--?m", "url": "https://t.co/eaWmlXzoJg", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "video", "display_url": "pic.twitter.com/mOYWmzmeQ6", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/720x720/EqwS2CD0YgNHAT70.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/240x240/xvuWcFkJ6EVcfFWM.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.mp4", "content_type": "video/mp4", "bitrate": 832000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:06:49 +0000 2016", "text": "Coordinates: (15.571961348728838, 143.8900334369081); https://t.co/eaWmlXzoJg https://t.co/mOYWmzmeQ6"}]
View
1 testdata/get_list_timeline_count_rts_ent.json
@@ -0,0 +1 @@
+[{"is_quote_status": false, "text": "2016-01-29T21:00:00 https://t.co/3T3tr6d35v", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693191602957852676", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ62FwXXEAUQ5XO.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "id": 693191602660118533, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "id_str": "693191602660118533", "url": "https://t.co/3T3tr6d35v", "display_url": "pic.twitter.com/3T3tr6d35v", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 21:58:51 +0000 2016", "id": 693191602957852676, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (15.571961348728838, 143.8900334369081); https://t.co/eaWmlXzoJg https://t.co/mOYWmzmeQ6", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693178508705730560", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.webm"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.mpd"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/720x720/EqwS2CD0YgNHAT70.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/240x240/xvuWcFkJ6EVcfFWM.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "id": 693178495795609600, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "id_str": "693178495795609600", "url": "https://t.co/mOYWmzmeQ6", "display_url": "pic.twitter.com/mOYWmzmeQ6", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 21:06:49 +0000 2016", "id": 693178508705730560, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T19:00:00 https://t.co/JI9MnneU0A", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693161399770562561", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ6anqGWwAAEiGO.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693161399770562561/photo/1", "id": 693161398768156672, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png", "id_str": "693161398768156672", "url": "https://t.co/JI9MnneU0A", "display_url": "pic.twitter.com/JI9MnneU0A", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 19:58:50 +0000 2016", "id": 693161399770562561, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (-47.754020632282845, 113.51459718142179); https://t.co/9GXu7VdoiT https://t.co/LEgekKPwZJ", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693133246075379713", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.webm"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.m3u8"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.mpd"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/240x240/SR-3qQ_a2vN9-cDE.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/720x720/QabcEFpHt_m7ek1L.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693133246075379713/video/1", "id": 693133231890264064, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg", "id_str": "693133231890264064", "url": "https://t.co/LEgekKPwZJ", "display_url": "pic.twitter.com/LEgekKPwZJ", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [80, 103], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 18:06:58 +0000 2016", "id": 693133246075379713, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T17:00:00 https://t.co/uBZUMJKFYI", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693131199141797888", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ5_JyUWEAENyL3.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693131199141797888/photo/1", "id": 693131198764290049, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png", "id_str": "693131198764290049", "url": "https://t.co/uBZUMJKFYI", "display_url": "pic.twitter.com/uBZUMJKFYI", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 17:58:50 +0000 2016", "id": 693131199141797888, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T15:00:00 https://t.co/0c8rqxCHF1", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693101007883112449", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ5jsaOXEAEEqfu.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693101007883112449/photo/1", "id": 693101007266582529, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png", "id_str": "693101007266582529", "url": "https://t.co/0c8rqxCHF1", "display_url": "pic.twitter.com/0c8rqxCHF1", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 15:58:52 +0000 2016", "id": 693101007883112449, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (36.038219371747736, -179.59752635358763); https://t.co/vdw6tffLWE https://t.co/GnYRtH78G5", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693089357155147776", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.webm"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.mpd"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/720x720/gn_aTvdtfOBVR4pE.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/240x240/w1ZnCmkTV5aZ8Nog.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693089357155147776/video/1", "id": 693089340516335616, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg", "id_str": "693089340516335616", "url": "https://t.co/GnYRtH78G5", "display_url": "pic.twitter.com/GnYRtH78G5", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [80, 103], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 15:12:34 +0000 2016", "id": 693089357155147776, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T13:00:00 https://t.co/o0k7ZjEdy5", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693070816901206016", "retweet_count": 2, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ5IPEDXEAQZ0E6.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693070816901206016/photo/1", "id": 693070816284708868, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png", "id_str": "693070816284708868", "url": "https://t.co/o0k7ZjEdy5", "display_url": "pic.twitter.com/o0k7ZjEdy5", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 13:58:54 +0000 2016", "id": 693070816901206016, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (50.559588880563034, 134.1051793146934); https://t.co/2Sgxzcl522 https://t.co/CZfGlRA4ys", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693046273516163072", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.mp4"}, {"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.webm"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/240x240/NYcjmZMiI4zSRxSK.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/720x720/4ItijaUTfxNNmtDF.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.m3u8"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693046273516163072/video/1", "id": 693046238246256640, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg", "id_str": "693046238246256640", "url": "https://t.co/CZfGlRA4ys", "display_url": "pic.twitter.com/CZfGlRA4ys", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 12:21:22 +0000 2016", "id": 693046273516163072, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T11:00:00 https://t.co/ILbjLTRw49", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693040631288061952", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ4syA8WEAAfGPV.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693040631288061952/photo/1", "id": 693040630419820544, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png", "id_str": "693040630419820544", "url": "https://t.co/ILbjLTRw49", "display_url": "pic.twitter.com/ILbjLTRw49", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 11:58:57 +0000 2016", "id": 693040631288061952, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T09:00:00 https://t.co/PSuSrm1WSb", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693010429514268672", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ4RUCGW0AAR1ER.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693010429514268672/photo/1", "id": 693010428520222720, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png", "id_str": "693010428520222720", "url": "https://t.co/PSuSrm1WSb", "display_url": "pic.twitter.com/PSuSrm1WSb", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 09:58:56 +0000 2016", "id": 693010429514268672, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (-38.47495767179647, 124.02898728887148); https://t.co/smfC99mO9b https://t.co/lNfm936DMH", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "693006025121763328", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.webm"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/240x240/Sx0UecW4xtWJ2GAM.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/720x720/p4J4fzRjFmnS6gLY.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.m3u8"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693006025121763328/video/1", "id": 693005994532667392, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg", "id_str": "693005994532667392", "url": "https://t.co/lNfm936DMH", "display_url": "pic.twitter.com/lNfm936DMH", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [79, 102], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 09:41:26 +0000 2016", "id": 693006025121763328, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T07:00:00 https://t.co/h9UiOuuezl", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692980243339071488", "retweet_count": 1, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ3127CWAAEKfCn.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "id": 692980241594187777, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "id_str": "692980241594187777", "url": "https://t.co/h9UiOuuezl", "display_url": "pic.twitter.com/h9UiOuuezl", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 07:58:59 +0000 2016", "id": 692980243339071488, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}]
View
1 testdata/get_list_timeline_id.json
@@ -0,0 +1 @@
+[{"created_at":"Fri Dec 18 16:43:04 +0000 2015","id":677891843946766336,"id_str":"677891843946766336","text":"Coordinates: 11449,1740. 1050x1050px https:\/\/t.co\/iQTfpwBfwU","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:09:21 +0000 2015","id":677883355954835456,"id_str":"677883355954835456","text":"https:\/\/t.co\/1FZuXwfN8P","source":"\u003ca href=\"http:\/\/www.twitter.com\/starnearyou\" rel=\"nofollow\"\u003eStar Near You Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2873849441,"id_str":"2873849441","name":"Star Near You","screen_name":"starnearyou","location":"Orion\u2013Cygnus Arm, Milky Way","description":"I'm a bot that generates GIFs of the Sun's corona. Images courtesy of NASA\/SDO and the AIA science team. Created by @ddbeck.","url":"https:\/\/t.co\/2XrBFpUxiv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2XrBFpUxiv","expanded_url":"https:\/\/github.com\/ddbeck\/starnearyou","display_url":"github.com\/ddbeck\/starnea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":1,"listed_count":21,"created_at":"Wed Nov 12 15:26:16 +0000 2014","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1185,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2873849441\/1415806333","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CWhTUcAUkAACj1t.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:00:40 +0000 2015","id":677881170898624512,"id_str":"677881170898624512","text":"A bit of Pluto https:\/\/t.co\/sKB1j57QUx","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:43:03 +0000 2015","id":677876737833758720,"id_str":"677876737833758720","text":"Coordinates: 65932,23911. 769x769px https:\/\/t.co\/F53UF9iZwM","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 15:40:03 +0000 2015","id":677875983014203392,"id_str":"677875983014203392","text":"2015\u00a0MW53, ~140m-310m in diameter, just passed the Earth at 20km\/s, missing by ~6,790,000km. https:\/\/t.co\/BFlKjHw4i2","source":"\u003ca href=\"http:\/\/twitter.com\/lowflyingrocks\" rel=\"nofollow\"\u003elowflyingrocks\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14446054,"id_str":"14446054","name":"lowflyingrocks","screen_name":"lowflyingrocks","location":"","description":"I mention every near earth object that passes within 0.2AU of Earth. @tomtaylor made me.","url":"http:\/\/t.co\/49Rp4zBFqj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/49Rp4zBFqj","expanded_url":"http:\/\/www.tomtaylor.co.uk\/projects\/","display_url":"tomtaylor.co.uk\/projects\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6925,"friends_count":4,"listed_count":574,"created_at":"Sat Apr 19 19:58:54 +0000 2008","favourites_count":1,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":4089,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BFlKjHw4i2","expanded_url":"http:\/\/ssd.jpl.nasa.gov\/sbdb.cgi?sstr=2015%20MW53;orb=1","display_url":"ssd.jpl.nasa.gov\/sbdb.cgi?sstr=\u2026","indices":[93,116]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:29:01 +0000 2015","id":677873207148306432,"id_str":"677873207148306432","text":"* \u3000\u3000\u3000\u3000 \n\u3000\u3000\u3000\u3000. \u00b7 \u3000\n\u3000 \u3000\u3000 \u272b \u3000\n \u22c6 \u3000\u3000 \u00b7 \u3000 \u3000\u3000 \u2739 \u3000\u3000\u3000\n\u3000 \u3000 \u272b \u272b \u3000\u3000\u3000 \u3000 \u22c6 \n\u3000 * \u3000 .","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":196,"favorite_count":131,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 15:18:03 +0000 2015","id":677870447082344448,"id_str":"677870447082344448","text":"Coordinates: (3.9272555029812866, 119.29804246724038); https:\/\/t.co\/0B9m1h5XgG https:\/\/t.co\/xFg5jMsU0C","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0B9m1h5XgG","expanded_url":"http:\/\/osm.org\/go\/4jHjM--?m","display_url":"osm.org\/go\/4jHjM--?m","indices":[55,78]}],"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/240x240\/6euMc-jyD51djwZK.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/720x720\/5flH_9EGCfpUclzR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 14:43:04 +0000 2015","id":677861642500104192,"id_str":"677861642500104192","text":"Coordinates: 12185,316. 1453x1453px https:\/\/t.co\/frzkFDwf0W","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 13:43:04 +0000 2015","id":677846542653386757,"id_str":"677846542653386757","text":"Coordinates: 40280,10804. 1126x1126px https:\/\/t.co\/h39BgolIGZ","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:43:04 +0000 2015","id":677831444446638080,"id_str":"677831444446638080","text":"Coordinates: 41231,10286. 1199x1199px https:\/\/t.co\/YTvQvGwuzq","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:32:38 +0000 2015","id":677828819894599680,"id_str":"677828819894599680","text":"\u00b7\ud83d\ude80\u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677827909189369856,"in_reply_to_status_id_str":"677827909189369856","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":9,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[91,107]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:29:01 +0000 2015","id":677827909189369856,"id_str":"677827909189369856","text":"\u00b7 \u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":176,"favorite_count":150,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:21:23 +0000 2015","id":677825988861018113,"id_str":"677825988861018113","text":"Coordinates: (-6.848856172522701, 152.31952652634567); https:\/\/t.co\/Ey2mCrXIlC https:\/\/t.co\/iaLC5cSTWH","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ey2mCrXIlC","expanded_url":"http:\/\/osm.org\/go\/vbQyB--?m","display_url":"osm.org\/go\/vbQyB--?m","indices":[55,78]}],"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/720x720\/9EtetgrNyOhK2rZS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/240x240\/RzRrgP9dTP0Ry6mN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 11:43:03 +0000 2015","id":677816342058164225,"id_str":"677816342058164225","text":"Coordinates: 10334,1959. 1287x1287px https:\/\/t.co\/A7GBy69CQV","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:43:03 +0000 2015","id":677801239917162496,"id_str":"677801239917162496","text":"Coordinates: 6157,20471. 1244x1244px https:\/\/t.co\/Q6Mm0Oi0OX","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:00:36 +0000 2015","id":677790557909962752,"id_str":"677790557909962752","text":"A bit of Pluto https:\/\/t.co\/lKlZJBkQI3","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 09:43:04 +0000 2015","id":677786143924989952,"id_str":"677786143924989952","text":"Coordinates: 60550,10765. 1318x1318px https:\/\/t.co\/xuMtkZ2RGs","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 09:36:01 +0000 2015","id":677784373471666176,"id_str":"677784373471666176","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 \ud83d\ude80 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677782612333584384,"in_reply_to_status_id_str":"677782612333584384","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[97,113]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:29:02 +0000 2015","id":677782612333584384,"id_str":"677782612333584384","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":201,"favorite_count":173,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:17:08 +0000 2015","id":677779618502467584,"id_str":"677779618502467584","text":"Coordinates: (-3.6578324169809178, 103.22975925265374); https:\/\/t.co\/YHhKoQCsMO https:\/\/t.co\/usCWiH9AIt","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YHhKoQCsMO","expanded_url":"http:\/\/osm.org\/go\/tcZ40--?m","display_url":"osm.org\/go\/tcZ40--?m","indices":[56,79]}],"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/240x240\/-w26uvOG_qlTvnGN.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/720x720\/HS8B_gNxLouhxnSz.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]
View
1 testdata/get_list_timeline_max_since.json
@@ -0,0 +1 @@
+[{"is_quote_status": false, "text": "2016-01-29T07:00:00 https://t.co/h9UiOuuezl", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692980243339071488", "retweet_count": 1, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ3127CWAAEKfCn.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "id": 692980241594187777, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "id_str": "692980241594187777", "url": "https://t.co/h9UiOuuezl", "display_url": "pic.twitter.com/h9UiOuuezl", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 07:58:59 +0000 2016", "id": 692980243339071488, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "id": 692980241594187777, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "id_str": "692980241594187777", "url": "https://t.co/h9UiOuuezl", "display_url": "pic.twitter.com/h9UiOuuezl", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (7.546182427135968, 96.21339092216665); https://t.co/yYjiKeXBWX https://t.co/Y5JC3FMIOf", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692966575163490304", "retweet_count": 2, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.webm"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/240x240/nV5hjslkH1_rF_d5.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/720x720/AG2v4zTRtEkL4V8U.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.mpd"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "id": 692966551088144384, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "id_str": "692966551088144384", "url": "https://t.co/Y5JC3FMIOf", "display_url": "pic.twitter.com/Y5JC3FMIOf", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [77, 100], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 07:04:40 +0000 2016", "id": 692966575163490304, "lang": "en", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "id": 692966551088144384, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "id_str": "692966551088144384", "url": "https://t.co/Y5JC3FMIOf", "display_url": "pic.twitter.com/Y5JC3FMIOf", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [77, 100], "type": "photo", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}], "hashtags": [], "urls": [{"indices": [53, 76], "expanded_url": "http://osm.org/go/4GRtz--?m", "display_url": "osm.org/go/4GRtz--?m", "url": "https://t.co/yYjiKeXBWX"}]}, "place": null, "possibly_sensitive": false, "favorite_count": 5, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T05:00:00 https://t.co/o1eyd9u1Eu", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692950032534867968", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ3aYePWAAA5oSh.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "id": 692950031654060032, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "id_str": "692950031654060032", "url": "https://t.co/o1eyd9u1Eu", "display_url": "pic.twitter.com/o1eyd9u1Eu", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 05:58:56 +0000 2016", "id": 692950032534867968, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "id": 692950031654060032, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "id_str": "692950031654060032", "url": "https://t.co/o1eyd9u1Eu", "display_url": "pic.twitter.com/o1eyd9u1Eu", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (4.291394187534963, 144.95617725288201); https://t.co/rSEV1FbfGP https://t.co/GlvueMdKAv", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692922442763886592", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/240x240/okMIUa5kJQogzPMc.mp4"}, {"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.webm"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/720x720/0DPjv7vnuGkfnqVw.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "id": 692922396756578304, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "id_str": "692922396756578304", "url": "https://t.co/GlvueMdKAv", "display_url": "pic.twitter.com/GlvueMdKAv", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 04:09:18 +0000 2016", "id": 692922442763886592, "lang": "en", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "id": 692922396756578304, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "id_str": "692922396756578304", "url": "https://t.co/GlvueMdKAv", "display_url": "pic.twitter.com/GlvueMdKAv", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "photo", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}], "hashtags": [], "urls": [{"indices": [54, 77], "expanded_url": "http://osm.org/go/6D4DZ--?m", "display_url": "osm.org/go/6D4DZ--?m", "url": "https://t.co/rSEV1FbfGP"}]}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T03:00:00 https://t.co/g2JiaZbtCk", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692919830324854786", "retweet_count": 2, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ2-6emWQAE98l8.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "id": 692919829540519937, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "id_str": "692919829540519937", "url": "https://t.co/g2JiaZbtCk", "display_url": "pic.twitter.com/g2JiaZbtCk", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 03:58:56 +0000 2016", "id": 692919830324854786, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "id": 692919829540519937, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "id_str": "692919829540519937", "url": "https://t.co/g2JiaZbtCk", "display_url": "pic.twitter.com/g2JiaZbtCk", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T01:00:00 https://t.co/u2pe4ssU0q", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692889631524655104", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ2jcsZUUAA5idO.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "id": 692889631033937920, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "id_str": "692889631033937920", "url": "https://t.co/u2pe4ssU0q", "display_url": "pic.twitter.com/u2pe4ssU0q", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 01:58:56 +0000 2016", "id": 692889631524655104, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "id": 692889631033937920, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "id_str": "692889631033937920", "url": "https://t.co/u2pe4ssU0q", "display_url": "pic.twitter.com/u2pe4ssU0q", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-28T23:00:00 https://t.co/IMEOTR6MxJ", "coordinates": null, "source": "<a href=\"http://iseverythingstilltheworst.com\" rel=\"nofollow\">space, jerks.</a>", "retweeted": false, "favorited": false, "id_str": "692859419193806849", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ2H-HNUMAEYGYM.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "id": 692859418841460737, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "id_str": "692859418841460737", "url": "https://t.co/IMEOTR6MxJ", "display_url": "pic.twitter.com/IMEOTR6MxJ", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}]}, "in_reply_to_status_id": null, "created_at": "Thu Jan 28 23:58:52 +0000 2016", "id": 692859419193806849, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "id": 692859418841460737, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "id_str": "692859418841460737", "url": "https://t.co/IMEOTR6MxJ", "display_url": "pic.twitter.com/IMEOTR6MxJ", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}]
View
1 testdata/get_lists.json
@@ -0,0 +1 @@
+{"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0","lists":[{"id":229581524,"id_str":"229581524","name":"test","uri":"\/notinourselves\/lists\/test","subscriber_count":0,"member_count":1,"mode":"public","description":"","slug":"test","full_name":"@notinourselves\/test","created_at":"Fri Dec 18 20:00:45 +0000 2015","following":true,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false}}]}
View
1 testdata/get_lists_list.json
@@ -0,0 +1 @@
+[{"id":189643778,"id_str":"189643778","name":"space bots","uri":"\/inky\/lists\/space-bots","subscriber_count":2,"member_count":10,"mode":"public","description":"\u2728\ud83c\udf0c\u2728","slug":"space-bots","full_name":"@inky\/space-bots","created_at":"Thu Jan 22 21:35:25 +0000 2015","following":true,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}}]
View
1 testdata/get_lists_list_screen_name.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_lists_list_user_id.json
1 addition, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
View
1 testdata/get_memberships.json
@@ -0,0 +1 @@
+{"next_cursor":1516239478031155535,"next_cursor_str":"1516239478031155535","previous_cursor":0,"previous_cursor_str":"0","lists":[{"id":210635540,"id_str":"210635540","name":"Ciclones tropicales","uri":"\/PedroCFernandez\/lists\/ciclones-tropicales","subscriber_count":0,"member_count":22,"mode":"public","description":"Fuentes primarias de informaci\u00f3n relativa a ciclones tropicales de todo el mundo","slug":"ciclones-tropicales","full_name":"@PedroCFernandez\/ciclones-tropicales","created_at":"Sun Jun 14 09:19:08 +0000 2015","following":false,"user":{"id":140000155,"id_str":"140000155","name":"Pedro C. Fern\u00e1ndez","screen_name":"PedroCFernandez","location":"Spanish & European citizen.","description":"B.Sc. Environmental Risk Management, stormchaser @ecazatormentas and immersed in a master's degree in Renewable Energies. Looking for new opportunities.","url":"http:\/\/t.co\/5ZsuudFfB8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5ZsuudFfB8","expanded_url":"http:\/\/www.cazatormentas.net","display_url":"cazatormentas.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2972,"friends_count":1193,"listed_count":144,"created_at":"Tue May 04 08:19:37 +0000 2010","favourites_count":9879,"utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"verified":false,"statuses_count":26948,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657931881556680707\/HdxufjNg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657931881556680707\/HdxufjNg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140000155\/1441227987","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":217969187,"id_str":"217969187","name":"Climate (EN)","uri":"\/EarthandClouds\/lists\/climate-en","subscriber_count":3,"member_count":470,"mode":"public","description":"Clouds, typhoons, warming, causes, impacts and much more.","slug":"climate-en","full_name":"@EarthandClouds\/climate-en","created_at":"Sat Aug 22 17:55:06 +0000 2015","following":false,"user":{"id":350274399,"id_str":"350274399","name":"Earth and Clouds","screen_name":"EarthandClouds","location":"Quebec City","description":"Screenshots of what's captured by the ISS live cameras. And much more... #Earth #space #sky #clouds #planet #image #picture #pic #blue #wallpaper #ISS #ocean","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5791,"friends_count":5759,"listed_count":186,"created_at":"Sun Aug 07 14:08:00 +0000 2011","favourites_count":4629,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":19764,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587182496858542080\/IPSqv41A_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587182496858542080\/IPSqv41A_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350274399\/1442609108","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":189643778,"id_str":"189643778","name":"space bots","uri":"\/inky\/lists\/space-bots","subscriber_count":1,"member_count":10,"mode":"public","description":"\u2728\ud83c\udf0c\u2728","slug":"space-bots","full_name":"@inky\/space-bots","created_at":"Thu Jan 22 21:35:25 +0000 2015","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1586,"friends_count":902,"listed_count":105,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65040,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26256,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":197783671,"id_str":"197783671","name":"climate","uri":"\/emeyerson\/lists\/climate","subscriber_count":0,"member_count":14,"mode":"public","description":"","slug":"climate","full_name":"@emeyerson\/climate","created_at":"Thu Mar 05 14:55:34 +0000 2015","following":false,"user":{"id":15436436,"id_str":"15436436","name":"EMey, Humbug","screen_name":"emeyerson","location":"SF, south side","description":"Marketing, politics, data. Expert on everything.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3564,"friends_count":1867,"listed_count":106,"created_at":"Tue Jul 15 03:53:59 +0000 2008","favourites_count":4882,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":19692,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/7672708\/moonris.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/7672708\/moonris.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000182833009\/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000182833009\/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15436436\/1444629889","profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":24648579,"id_str":"24648579","name":"weatherpros","uri":"\/pierrepont\/lists\/weatherpros","subscriber_count":2,"member_count":75,"mode":"public","description":"Just what it says on the tin.","slug":"weatherpros","full_name":"@pierrepont\/weatherpros","created_at":"Tue Oct 12 18:32:24 +0000 2010","following":false,"user":{"id":18383373,"id_str":"18383373","name":"Brendan Hasenstab","screen_name":"pierrepont","location":"NYC, baby!","description":"Professional writer, semi-pro gourmand, market nerd, music snob, and weather obsessive.","url":"https:\/\/t.co\/E54xpWWa8q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/E54xpWWa8q","expanded_url":"http:\/\/about.me\/brendan.hasenstab","display_url":"about.me\/brendan.hasens\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":800,"listed_count":17,"created_at":"Fri Dec 26 03:08:28 +0000 2008","favourites_count":4384,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":32605,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496224147\/Marshall-608x526.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496224147\/Marshall-608x526.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2580499251\/7ib6821re7elm9dqygnx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2580499251\/7ib6821re7elm9dqygnx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18383373\/1446436742","profile_link_color":"598F4C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":225486809,"id_str":"225486809","name":"my-bots","uri":"\/__jcbl__\/lists\/my-bots","subscriber_count":0,"member_count":3,"mode":"public","description":"","slug":"my-bots","full_name":"@__jcbl__\/my-bots","created_at":"Tue Nov 10 16:43:07 +0000 2015","following":false,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":286,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1243,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false}},{"id":193879644,"id_str":"193879644","name":"Robot Overlords","uri":"\/TheRevengerists\/lists\/robot-overlords","subscriber_count":4,"member_count":2777,"mode":"public","description":"Murmuring Mechanical Maniacs' Many Mad Machinations","slug":"robot-overlords","full_name":"@TheRevengerists\/robot-overlords","created_at":"Sun Feb 01 15:53:13 +0000 2015","following":false,"user":{"id":407933355,"id_str":"407933355","name":"The Revengerists!","screen_name":"TheRevengerists","location":"Revengerist Compound","description":"The Revengerists are a consortium of fighters of crime and evil; globetrotting super-powered adventurers, and benevolent protectors of all things awesome.","url":"http:\/\/t.co\/fIFj1mcFTs","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/fIFj1mcFTs","expanded_url":"http:\/\/revengerists.com","display_url":"revengerists.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1037,"friends_count":2157,"listed_count":73,"created_at":"Tue Nov 08 19:10:31 +0000 2011","favourites_count":1507,"utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"verified":false,"statuses_count":29919,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000081789644\/4983dc46145a62ab1bef488987cbb83f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000081789644\/4983dc46145a62ab1bef488987cbb83f.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542192306577620992\/AqMy7KtD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542192306577620992\/AqMy7KtD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/407933355\/1417717663","profile_link_color":"FF8400","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":64954121,"id_str":"64954121","name":"Weather","uri":"\/nsj\/lists\/weather","subscriber_count":19,"member_count":1000,"mode":"public","description":"Weather people","slug":"weather","full_name":"@nsj\/weather","created_at":"Tue Feb 07 20:26:35 +0000 2012","following":false,"user":{"id":11433152,"id_str":"11433152","name":"Nate Johnson","screen_name":"nsj","location":"Raleigh, NC","description":"I am a meteorologist, instructor, blogger, and podcaster. Flying is my latest adventure. I tweet #ncwx, communication, #NCState, #Cubs, #BBQ, & #avgeek stuff.","url":"https:\/\/t.co\/dMpfqObOsm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dMpfqObOsm","expanded_url":"https:\/\/plus.google.com\/+NateJohnson\/","display_url":"plus.google.com\/+NateJohnson\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9864,"friends_count":3647,"listed_count":562,"created_at":"Sat Dec 22 14:59:53 +0000 2007","favourites_count":1028,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":45088,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0000FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/2976062\/WRAL_twitter.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/2976062\/WRAL_twitter.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621027845700251648\/JrbflTtR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621027845700251648\/JrbflTtR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11433152\/1405353644","profile_link_color":"000000","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":2053636,"id_str":"2053636","name":"Weather","uri":"\/sgtgary\/lists\/weather","subscriber_count":9,"member_count":606,"mode":"public","description":"","slug":"weather","full_name":"@sgtgary\/weather","created_at":"Wed Nov 04 05:18:31 +0000 2009","following":false,"user":{"id":11392632,"id_str":"11392632","name":"Gary \u039a0\u03b2\u2c62\u0259 \u2614\ufe0f","screen_name":"sgtgary","location":"Papillion, Nebraska, USA","description":"Science & Weather geek \u2022 Cybersecurity \u2022 \u2708\ufe0fUSAF vet \u2022 ex aviation forecaster \u2022 557WW \u2022 Waze \u2022 INTJ #GoPackGo #InfoSec \u2b50\ufe0f","url":"https:\/\/t.co\/LB5LuXnk2g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LB5LuXnk2g","expanded_url":"http:\/\/about.me\/sgtgary","display_url":"about.me\/sgtgary","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1664,"friends_count":2103,"listed_count":123,"created_at":"Fri Dec 21 02:44:45 +0000 2007","favourites_count":93,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":35082,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625143486375927808\/JfkbwGdr.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625143486375927808\/JfkbwGdr.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/676624556057063425\/CCPPj2bb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/676624556057063425\/CCPPj2bb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11392632\/1446542435","profile_link_color":"9D0020","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":220869009,"id_str":"220869009","name":"People Ive faved","uri":"\/bitpixi\/lists\/people-ive-faved","subscriber_count":2,"member_count":378,"mode":"public","description":"","slug":"people-ive-faved","full_name":"@bitpixi\/people-ive-faved","created_at":"Wed Sep 23 07:22:53 +0000 2015","following":false,"user":{"id":2344125559,"id_str":"2344125559","name":"Kasey Robinson","screen_name":"bitpixi","location":"South San Francisco, CA","description":"@Minted Photo Editor & Design Associate. @BayAreaBotArts Meetup Organizer. 1st bot: @bitpixi_ebooks","url":"https:\/\/t.co\/8wmgXFQ8U8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8wmgXFQ8U8","expanded_url":"http:\/\/www.bitpixi.com","display_url":"bitpixi.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1729,"friends_count":2284,"listed_count":176,"created_at":"Fri Feb 14 21:09:05 +0000 2014","favourites_count":20591,"utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"verified":false,"statuses_count":8390,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/675023811511607296\/PbyIDvbw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/675023811511607296\/PbyIDvbw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2344125559\/1444427702","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":71512629,"id_str":"71512629","name":"space","uri":"\/inky\/lists\/space","subscriber_count":0,"member_count":63,"mode":"public","description":"","slug":"space","full_name":"@inky\/space","created_at":"Fri Jun 01 00:55:36 +0000 2012","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1586,"friends_count":902,"listed_count":105,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65040,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26256,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":82966275,"id_str":"82966275","name":"bots","uri":"\/inky\/lists\/bots","subscriber_count":7,"member_count":952,"mode":"public","description":"","slug":"bots","full_name":"@inky\/bots","created_at":"Tue Jan 01 21:57:45 +0000 2013","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1586,"friends_count":902,"listed_count":105,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65040,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26256,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":30269984,"id_str":"30269984","name":"Geo&Eco","uri":"\/JasonDewees\/lists\/geo-eco","subscriber_count":1,"member_count":93,"mode":"public","description":"","slug":"geo-eco","full_name":"@JasonDewees\/geo-eco","created_at":"Sun Nov 21 00:04:17 +0000 2010","following":false,"user":{"id":68767529,"id_str":"68767529","name":"Jason Dewees","screen_name":"JasonDewees","location":"San Francisco","description":"SF native. Lots of plants.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":503,"friends_count":2003,"listed_count":19,"created_at":"Tue Aug 25 18:30:08 +0000 2009","favourites_count":1939,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":6251,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2424562150\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2424562150\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68767529\/1355860926","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":75086960,"id_str":"75086960","name":"Science","uri":"\/TiBmd\/lists\/science","subscriber_count":0,"member_count":44,"mode":"public","description":"","slug":"science","full_name":"@TiBmd\/science","created_at":"Mon Aug 06 13:38:48 +0000 2012","following":false,"user":{"id":28378001,"id_str":"28378001","name":"TiBMD","screen_name":"TiBmd","location":"","description":"Husband. Father. Brother. Son. Grandson. Surgeon. RT\u2260 endorsement\n\r\nThese opinions are my own!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":275,"friends_count":834,"listed_count":13,"created_at":"Thu Apr 02 17:22:19 +0000 2009","favourites_count":4845,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2469,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000061627366\/c65512cd0cab697154ec069cf5a86b60_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000061627366\/c65512cd0cab697154ec069cf5a86b60_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28378001\/1430364418","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":35124177,"id_str":"35124177","name":"Science","uri":"\/MGhydro\/lists\/science","subscriber_count":2,"member_count":789,"mode":"public","description":"","slug":"science","full_name":"@MGhydro\/science","created_at":"Thu Feb 03 17:54:22 +0000 2011","following":false,"user":{"id":227381114,"id_str":"227381114","name":"Matthew Garcia","screen_name":"MGhydro","location":"Madison, Wisconsin, USA","description":"PhD Candidate, Forestry + Remote Sensing @UWMadison. 2015-16 @WISpaceGrant Fellow. Trees, Water, Weather, Climate, Computing. Strange duck. Valar dohaeris.","url":"http:\/\/t.co\/Aeo9Y59s1w","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Aeo9Y59s1w","expanded_url":"http:\/\/hydro-logic.blogspot.com\/","display_url":"hydro-logic.blogspot.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1451,"friends_count":1373,"listed_count":110,"created_at":"Thu Dec 16 18:01:10 +0000 2010","favourites_count":683,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":46876,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D5D9C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/192387486\/x157a10c8e8bd14f06072a93cef1d924.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/192387486\/x157a10c8e8bd14f06072a93cef1d924.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580493396457988096\/Iv7xPvC1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580493396457988096\/Iv7xPvC1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227381114\/1427235582","profile_link_color":"3E87A7","profile_sidebar_border_color":"DC4093","profile_sidebar_fill_color":"233235","profile_text_color":"73AFC9","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":101427111,"id_str":"101427111","name":"go-to weather climate","uri":"\/EricHolthaus\/lists\/go-to-weather-climate","subscriber_count":166,"member_count":963,"mode":"public","description":"my primary sources for high quality weather\/climate info","slug":"go-to-weather-climate","full_name":"@EricHolthaus\/go-to-weather-climate","created_at":"Fri Dec 13 08:10:08 +0000 2013","following":false,"user":{"id":290180065,"id_str":"290180065","name":"Eric Holthaus","screen_name":"EricHolthaus","location":"Tucson, AZ","description":"'America's weather-predicting boyfriend' \u2014@awl | 'The internet's favorite meteorologist' \u2014@vice | Humble, too. | Say hi: [email protected]","url":"http:\/\/t.co\/hA0H6wWF56","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/hA0H6wWF56","expanded_url":"http:\/\/www.slate.com\/authors.eric_holthaus.html","display_url":"slate.com\/authors.eric_h\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":33132,"friends_count":6417,"listed_count":1594,"created_at":"Fri Apr 29 21:18:26 +0000 2011","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":37351,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290180065\/1398216679","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":206486285,"id_str":"206486285","name":"Breaking Weather","uri":"\/EricHolthaus\/lists\/breaking-weather","subscriber_count":51,"member_count":218,"mode":"public","description":"Highly filtered list of weather experts\/commentators.","slug":"breaking-weather","full_name":"@EricHolthaus\/breaking-weather","created_at":"Tue May 12 15:24:43 +0000 2015","following":false,"user":{"id":290180065,"id_str":"290180065","name":"Eric Holthaus","screen_name":"EricHolthaus","location":"Tucson, AZ","description":"'America's weather-predicting boyfriend' \u2014@awl | 'The internet's favorite meteorologist' \u2014@vice | Humble, too. | Say hi: [email protected]","url":"http:\/\/t.co\/hA0H6wWF56","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/hA0H6wWF56","expanded_url":"http:\/\/www.slate.com\/authors.eric_holthaus.html","display_url":"slate.com\/authors.eric_h\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":33132,"friends_count":6417,"listed_count":1594,"created_at":"Fri Apr 29 21:18:26 +0000 2011","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":37351,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290180065\/1398216679","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":99156743,"id_str":"99156743","name":"Weather","uri":"\/gdimeweather\/lists\/weather","subscriber_count":1,"member_count":369,"mode":"public","description":"","slug":"weather","full_name":"@gdimeweather\/weather","created_at":"Thu Nov 07 15:11:57 +0000 2013","following":false,"user":{"id":57472328,"id_str":"57472328","name":"Greg Diamond","screen_name":"gdimeweather","location":"","description":"Graphic Meteorologist & Weather Producer for the @weatherchannel @UAlbany Alum & Native Long Islander. Retweets = You shared something awesome","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1137,"friends_count":632,"listed_count":66,"created_at":"Thu Jul 16 22:51:28 +0000 2009","favourites_count":2780,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4322,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161868820\/fFqNv5Vi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161868820\/fFqNv5Vi.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636185872648409090\/XxZ_IFRL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636185872648409090\/XxZ_IFRL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57472328\/1390844122","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":120837264,"id_str":"120837264","name":"omnibots","uri":"\/botALLY\/lists\/omnibots","subscriber_count":32,"member_count":2354,"mode":"public","description":"Aggregating the labor of each diligent #botALLY known to me","slug":"omnibots","full_name":"@botALLY\/omnibots","created_at":"Wed May 07 20:29:25 +0000 2014","following":false,"user":{"id":1533777176,"id_str":"1533777176","name":"Lotte McNally","screen_name":"botALLY","location":"","description":"Lotte McNally, #botALLY \u2022 avatar https:\/\/t.co\/4Oa0jsUp8l \u2022 header https:\/\/t.co\/Jj4iT1K37I \u2022","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/4Oa0jsUp8l","expanded_url":"https:\/\/midboss.com\/rom\/","display_url":"midboss.com\/rom\/","indices":[33,56]},{"url":"https:\/\/t.co\/Jj4iT1K37I","expanded_url":"https:\/\/www.etsy.com\/au\/shop\/cloudstreetlab","display_url":"etsy.com\/au\/shop\/clouds\u2026","indices":[66,89]}]}},"protected":false,"followers_count":6566,"friends_count":1959,"listed_count":73,"created_at":"Thu Jun 20 12:19:15 +0000 2013","favourites_count":82,"utc_offset":36000,"time_zone":"Solomon Is.","geo_enabled":false,"verified":false,"statuses_count":62134,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000003557709\/1a194a0c77ab56bd09a75e6c3defa247.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000003557709\/1a194a0c77ab56bd09a75e6c3defa247.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653729896364007424\/UHdpvnv-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653729896364007424\/UHdpvnv-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1533777176\/1444699802","profile_link_color":"5AE46D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":89025486,"id_str":"89025486","name":"Weather","uri":"\/KyleWeather\/lists\/weather","subscriber_count":1,"member_count":205,"mode":"public","description":"","slug":"weather","full_name":"@KyleWeather\/weather","created_at":"Mon Apr 29 21:06:00 +0000 2013","following":false,"user":{"id":98729176,"id_str":"98729176","name":"Kyle Roberts","screen_name":"KyleWeather","location":"Oklahoma City, OK","description":"Meteorologist for FOX 25 (@OKCFOX) in Oklahoma City | Texas A&M grad | Tweeter of weather, sports, and whatever crosses my mind (usually in that order)","url":"https:\/\/t.co\/8aCa0usAwU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8aCa0usAwU","expanded_url":"http:\/\/www.facebook.com\/KyleRobertsWeather","display_url":"facebook.com\/KyleRobertsWea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1112,"friends_count":537,"listed_count":76,"created_at":"Tue Dec 22 22:00:16 +0000 2009","favourites_count":1362,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6233,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000834039489\/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000834039489\/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98729176\/1448854863","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}}]}
View
0 testdata/get_mentions.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_replies.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_retweeters.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_retweets.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_retweets_of_me.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_search.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_search_geocode.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_search_raw.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_sent_direct_messages.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_show_subscription.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_show_subscription_extra_params.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_show_subscription_not_subscriber.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_status.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_status_extra_params.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_status_oembed.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_trends_current.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_trends_woeid.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_trends_woeid_exclude.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_user.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_user_retweets.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_user_suggestion.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_user_suggestion_categories.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_user_timeline.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/get_users_search.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/lookup_friendship.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_create_list.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_create_lists_member.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_create_lists_member_multiple.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_create_subscription.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_destroy_list.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_destroy_lists_member.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_destroy_lists_member_multiple.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_destroy_subscription.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_media.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_update.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_update_extra_params.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_update_media_id.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_update_with_media.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/post_upload_media_simple.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/ratelimit.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/users_lookup.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 testdata/verify_credentials.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 tests/test_api_30.py
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 tests/test_rate_limit.py
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 tests/test_twitter_utils.py
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 twitter/api.py
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 twitter/ratelimit.py
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 twitter/twitter_utils.py
Sorry, we could not display the changes to this file because there were too many other changes to display.
View
0 twitter/user.py
Sorry, we could not display the changes to this file because there were too many other changes to display.

0 comments on commit 57f1a3c

Please sign in to comment.
Something went wrong with that request. Please try again.