diff --git a/CHANGES.rst b/CHANGES.rst index ed334612b..9d92309b7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -31,6 +31,10 @@ Unreleased * The parameter ``text`` for methods :meth:`.SubredditLinkFlairTemplates.update` and :meth:`.SubredditRedditorFlairTemplates.update` is no longer required. +* Subreddit streams streaming from r/all can use a new streamer class that will + auto-fill items that aren't yielded from Reddit. However, there are + problems with the new stream, so usage of the stream requires the parameter + ``use_new_stream`` to be set to True (False by default). **Removed** diff --git a/praw/models/helpers.py b/praw/models/helpers.py index 1afbbc3db..9fd0aef91 100644 --- a/praw/models/helpers.py +++ b/praw/models/helpers.py @@ -177,10 +177,14 @@ def create( class SubredditHelper(PRAWBase): """Provide a set of functions to interact with Subreddits.""" - def __call__(self, display_name: str) -> Subreddit: + def __call__( + self, display_name: str, use_new_stream: bool = False + ) -> Subreddit: """Return a lazy instance of :class:`~.Subreddit`. :param display_name: The name of the subreddit. + :param use_new_stream: Use the new subreddit stream. Please read the + note on :class:`.Subreddit` before setting this parameter to True. """ lower_name = display_name.lower() @@ -189,7 +193,11 @@ def __call__(self, display_name: str) -> Subreddit: if lower_name == "randnsfw": return self._reddit.random_subreddit(nsfw=True) - return Subreddit(self._reddit, display_name=display_name) + return Subreddit( + self._reddit, + display_name=display_name, + use_new_stream=use_new_stream, + ) def create( self, diff --git a/praw/models/reddit/subreddit.py b/praw/models/reddit/subreddit.py index 2f8611767..2ca0e5ec4 100644 --- a/praw/models/reddit/subreddit.py +++ b/praw/models/reddit/subreddit.py @@ -20,7 +20,7 @@ from ...util.cache import cachedproperty from ..listing.generator import ListingGenerator from ..listing.mixins import SubredditListingMixin -from ..util import permissions_string, stream_generator +from ..util import permissions_string, stream_generator, r_all_streamer from .base import RedditBase from .emoji import SubredditEmoji from .mixins import FullnameMixin, MessageableMixin @@ -481,11 +481,21 @@ def wiki(self): """ return SubredditWiki(self) - def __init__(self, reddit, display_name=None, _data=None): + def __init__( + self, reddit, display_name=None, _data=None, use_new_stream=False + ): """Initialize a Subreddit instance. :param reddit: An instance of :class:`~.Reddit`. :param display_name: The name of the subreddit. + :param use_new_stream: Use the new SubredditStreams. + + .. note:: The new streams will provide lazy comments that were not sent + by Reddit's API, and therefore will not be pre-filled like normal + comments. This will lead to extra API requests, and also include + comments that have been automatically removed by AutoModerator. + Any bot built with the new stream will have to handle this. + Therefore, the streams will only be used when explicitly asked for. .. note:: This class should not be initialized directly. Instead obtain an instance via: ``reddit.subreddit('subreddit_name')`` @@ -498,6 +508,7 @@ def __init__(self, reddit, display_name=None, _data=None): super().__init__(reddit, _data=_data) if display_name: self.display_name = display_name + self._use_new_stream = use_new_stream self._path = API_PATH["subreddit"].format(subreddit=self) def _fetch_info(self): @@ -2850,7 +2861,14 @@ def comments(self, **stream_options): print(comment) """ - return stream_generator(self.subreddit.comments, **stream_options) + return ( + stream_generator(self.subreddit.comments, **stream_options) + if ( + self.subreddit.__dict__.get("display_name", "None") != "all" + or not self.subreddit.__dict__.get("_use_new_stream", False) + ) + else r_all_streamer(self.subreddit.comments, **stream_options) + ) def submissions(self, **stream_options): """Yield new submissions as they become available. @@ -2872,7 +2890,14 @@ def submissions(self, **stream_options): print(submission) """ - return stream_generator(self.subreddit.new, **stream_options) + return ( + stream_generator(self.subreddit.new, **stream_options) + if ( + self.subreddit.__dict__.get("display_name", "None") != "all" + or not self.subreddit.__dict__.get("_use_new_stream", False) + ) + else r_all_streamer(self.subreddit.new, **stream_options) + ) class SubredditStylesheet: diff --git a/praw/models/util.py b/praw/models/util.py index 501db1321..31ef3abfe 100644 --- a/praw/models/util.py +++ b/praw/models/util.py @@ -3,6 +3,8 @@ import time from typing import Any, Callable, Generator, List, Optional, Set +from ..util import int_to_base36 + class BoundedSet: """A set with a maximum size that evicts the oldest items when necessary. @@ -207,3 +209,38 @@ def stream_generator( yield None else: time.sleep(exponential_counter.counter()) + + +def r_all_streamer( + function: Callable[[Any], Any], + pause_after: Optional[int] = None, + skip_existing: bool = False, + attribute_name: str = "fullname", + exclude_before: bool = False, + **function_kwargs: Any +) -> Generator[Any, None, None]: + """Stream class that handles r/all streams. + + Please refer to the documentation for :func:`.stream_generator`. + """ + prev = 0 + stream = stream_generator( + function, + pause_after=pause_after, + skip_existing=skip_existing, + attribute_name=attribute_name, + exclude_before=exclude_before, + **function_kwargs + ) + for item in stream: + if hasattr(item, "id"): + if prev == 0: + prev = int(item.id, base=36) + cur = int(item.id, base=36) + if cur - prev > 1: + for idnum in range(prev + 1, cur): + reddit = item._reddit + itemtype = item.__class__ + yield itemtype(reddit, id=int_to_base36(idnum)) + prev = cur + yield item diff --git a/praw/util/__init__.py b/praw/util/__init__.py index 5435415b1..fe0435ff9 100644 --- a/praw/util/__init__.py +++ b/praw/util/__init__.py @@ -2,3 +2,4 @@ from .cache import cachedproperty # noqa: F401 from .snake import camel_to_snake, snake_case_keys # noqa: F401 +from .base36 import int_to_base36 # noqa: F401 diff --git a/praw/util/base36.py b/praw/util/base36.py new file mode 100644 index 000000000..aaf4fa881 --- /dev/null +++ b/praw/util/base36.py @@ -0,0 +1,17 @@ +"""Provides a function to convert from int to base36.""" + + +def int_to_base36(num): + """Convert a positive integer into a base36 string. + + :param num: The number to convert + :returns: A base36 string + """ + assert num >= 0 + digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" + + res = "" + while not res or num > 0: + num, i = divmod(num, 36) + res = digits[i] + res + return res.lower() diff --git a/tests/integration/cassettes/TestSubredditStreams.comments_new.json b/tests/integration/cassettes/TestSubredditStreams.comments_new.json new file mode 100644 index 000000000..d20bc9a89 --- /dev/null +++ b/tests/integration/cassettes/TestSubredditStreams.comments_new.json @@ -0,0 +1,330 @@ +{ + "http_interactions": [ + { + "recorded_at": "2020-01-29T01:10:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "grant_type=client_credentials" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "Basic " + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "User-Agent": [ + " PRAW/7.0.0.dev0 prawcore/1.0.1" + ] + }, + "method": "POST", + "uri": "https://www.reddit.com/api/v1/access_token" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"*\"}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Date": [ + "Wed, 29 Jan 2020 01:10:23 GMT" + ], + "Server": [ + "snooserv" + ], + "Set-Cookie": [ + "edgebucket=os7RzORyXqYLeudWXT; Domain=reddit.com; Max-Age=63071999; Path=/; secure" + ], + "Strict-Transport-Security": [ + "max-age=15552000; includeSubDomains; preload" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "MISS" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Moose": [ + "majestic" + ], + "X-Served-By": [ + "cache-lga21966-LGA" + ], + "X-Timer": [ + "S1580260224.666915,VS0,VE31" + ], + "cache-control": [ + "max-age=0, must-revalidate" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "x-reddit-loid": [ + "00000000005juzy2r2.2.1580260223682.Z0FBQUFBQmVNTnRfLU0wR0hLNkpjS3JacUdfNE9fT3Z3RnYzVW5iTHItTURIaU9jYjhXZWNGcVdNOFR5SF9tTFlNWjYwUE91aXNTWUNKVDIxM3JHZUtqNlhvUEJpRVpuY21BV1p3bEtvY2tPNEFZYlJmN0tMUzFieTdfWGgyMFRQQl9SV0syUzMyamM" + ], + "x-xss-protection": [ + "1; mode=block" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.reddit.com/api/v1/access_token" + } + }, + { + "recorded_at": "2020-01-29T01:10:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "edgebucket=os7RzORyXqYLeudWXT" + ], + "User-Agent": [ + " PRAW/7.0.0.dev0 prawcore/1.0.1" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/r/all/comments/?limit=100&raw_json=1" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Housing leasing end date changed without notice + current room leased to someone else within renewal date\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evdtgu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbii9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brendinator\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1580260222.0, \"send_replies\": true, \"parent_id\": \"t1_ffv9n4s\", \"score\": 1, \"author_fullname\": \"t2_tvaw5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rawz\", \"body\": \"Ok thank you!\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbii9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOk thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"legaladvice\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/legaladvice/comments/evdtgu/housing_leasing_end_date_changed_without_notice/ffvbii9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/legaladvice/comments/evdtgu/housing_leasing_end_date_changed_without_notice/\", \"report_reasons\": null, \"link_author\": \"Brendinator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/legaladvice/comments/evdtgu/housing_leasing_end_date_changed_without_notice/\", \"created\": 1580289022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/legaladvice\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Wanted to show some love for George Robinson, the actor who plays Isaac. This was his first major acting job!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evbkvc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbii2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"robertofontiglia\", \"num_comments\": 28, \"can_mod_post\": false, \"created_utc\": 1580260222.0, \"send_replies\": true, \"parent_id\": \"t3_evbkvc\", \"score\": 1, \"author_fullname\": \"t2_502ibs68\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_ui4q9\", \"body\": \"ma boi had a tough job, playing a character that wasn't really all that likeable, and selling it well. I just hope he doesn't get typecast. It IS annoying to me that the guy in the wheelchair happens to be the \\\"vilain\\\" of sorts. Like, I know it's also a bit about showing him not being bothered, not letting it \\\"stop him\\\", but it'd be nice if we could have a truly positive representation of disability. I guess next season ?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbii2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ema boi had a tough job, playing a character that wasn\\u0026#39;t really all that likeable, and selling it well. I just hope he doesn\\u0026#39;t get typecast. It IS annoying to me that the guy in the wheelchair happens to be the \\u0026quot;vilain\\u0026quot; of sorts. Like, I know it\\u0026#39;s also a bit about showing him not being bothered, not letting it \\u0026quot;stop him\\u0026quot;, but it\\u0026#39;d be nice if we could have a truly positive representation of disability. I guess next season ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"NetflixSexEducation\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/NetflixSexEducation/comments/evbkvc/wanted_to_show_some_love_for_george_robinson_the/ffvbii2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/NetflixSexEducation/comments/evbkvc/wanted_to_show_some_love_for_george_robinson_the/\", \"report_reasons\": null, \"link_author\": \"Lauravian\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/villk98j3ld41.png\", \"created\": 1580289022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/NetflixSexEducation\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Those lips. \\ud83d\\ude33 I like Taylor, but yikes.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_evf05h\", \"author_flair_template_id\": \"d3e74778-8868-11e7-bf94-0e1c81b84c50\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbihr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheOtherMansSk1n\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t1_ffvajbz\", \"score\": 1, \"author_fullname\": \"t2_5brnn8k5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3nsi0\", \"body\": \"I do that too. And I compliment myself, including my gorgeous mostly dented arse and thighs. I try to avoid spending time in front of mirror when she is near me. I\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbihr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"BarbsCreditCard\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do that too. And I compliment myself, including my gorgeous mostly dented arse and thighs. I try to avoid spending time in front of mirror when she is near me. I\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"TeenMomOGandTeenMom2\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/TeenMomOGandTeenMom2/comments/evf05h/those_lips_i_like_taylor_but_yikes/ffvbihr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/TeenMomOGandTeenMom2/comments/evf05h/those_lips_i_like_taylor_but_yikes/\", \"report_reasons\": null, \"link_author\": \"Motherof2cubs\", \"author_flair_text\": \"BarbsCreditCard\", \"link_url\": \"https://i.redd.it/ws9pvfnz7md41.jpg\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/TeenMomOGandTeenMom2\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"If you could pray for me, I'd appreciate it so much.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev97d5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbihi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Neeva_Candida\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t3_ev97d5\", \"score\": 1, \"author_fullname\": \"t2_40gjlyhg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qjy5\", \"body\": \"Prayers lifted\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbihi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPrayers lifted\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Christian\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/Christian/comments/ev97d5/if_you_could_pray_for_me_id_appreciate_it_so_much/ffvbihi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Christian/comments/ev97d5/if_you_could_pray_for_me_id_appreciate_it_so_much/\", \"report_reasons\": null, \"link_author\": \"SetMySoulFree\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/Christian/comments/ev97d5/if_you_could_pray_for_me_id_appreciate_it_so_much/\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Christian\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[Game Thread] Philadelphia 76ers vs GS Warriors | Jan 28\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_eval47\", \"author_flair_template_id\": \"92229876-8a56-11e6-b174-0e0536d0c06b\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbih8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mcatatonic1\", \"num_comments\": 930, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t3_eval47\", \"score\": 1, \"author_fullname\": \"t2_8nisxjb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2scmr\", \"body\": \"LOVE seeing Ben with just 9 minutes\\n\\nDudes been playing a shit load of minutes recently, this could be a good break\", \"edited\": false, \"author_flair_css_class\": \"Brand\", \"name\": \"t1_ffvbih8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"a\": \":brand:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/63p01xmq22521_t5_2scmr/brand\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELOVE seeing Ben with just 9 minutes\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDudes been playing a shit load of minutes recently, this could be a good break\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"sixers\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/sixers/comments/eval47/game_thread_philadelphia_76ers_vs_gs_warriors_jan/ffvbih8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/sixers/comments/eval47/game_thread_philadelphia_76ers_vs_gs_warriors_jan/\", \"report_reasons\": null, \"link_author\": \"pegasus29\", \"author_flair_text\": \":brand:\", \"link_url\": \"https://watch.nba.com/game/20200128/GSWPHI\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/sixers\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"transparent\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Favorite character\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eve8gc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbih1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xisaloser\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t1_ffvajsv\", \"score\": 1, \"author_fullname\": \"t2_rk8ai\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2xi70\", \"body\": \"Really, really good. Although different from the show. \\n\\n\\nI mean, the main story beats are definitely the same, so not like books tell a different story, but they\\u2019re way calmer/reasonable (the show is literally packed with drama, sometimes for no good reason). \\n\\n\\nAnd some characters are either non-existent in the show or the show version is a few characters pulled together or the character in the show only appears in like book 5 or something. \\n\\n\\nAfter watching and reading I prefer the books, but the show does a good job.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbih1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReally, really good. Although different from the show. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI mean, the main story beats are definitely the same, so not like books tell a different story, but they\\u2019re way calmer/reasonable (the show is literally packed with drama, sometimes for no good reason). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd some characters are either non-existent in the show or the show version is a few characters pulled together or the character in the show only appears in like book 5 or something. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter watching and reading I prefer the books, but the show does a good job.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"TheExpanse\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/TheExpanse/comments/eve8gc/favorite_character/ffvbih1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/TheExpanse/comments/eve8gc/favorite_character/\", \"report_reasons\": null, \"link_author\": \"tobyhowl\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/TheExpanse/comments/eve8gc/favorite_character/\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/TheExpanse\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[50/50] A bowl of blueberries (SFW) | Blue waffle (NSFW)\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eva0kh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbigv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LennyTwostep\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t1_ffv7l29\", \"score\": 1, \"author_fullname\": \"t2_15zf6r\", \"over_18\": true, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2vxvd\", \"body\": \"Correct.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbigv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECorrect.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"FiftyFifty\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/FiftyFifty/comments/eva0kh/5050_a_bowl_of_blueberries_sfw_blue_waffle_nsfw/ffvbigv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/FiftyFifty/comments/eva0kh/5050_a_bowl_of_blueberries_sfw_blue_waffle_nsfw/\", \"report_reasons\": null, \"link_author\": \"snowblind_sabbath\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/tvkm41w4kkd41.png\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/FiftyFifty\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"fake trans-anon doing the Lord's work\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev9chf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbigl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mayo_Supreme\", \"num_comments\": 235, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t1_ffuzcqv\", \"score\": 1, \"author_fullname\": \"t2_4lbhb1nn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh4w\", \"body\": \"[rapid-onset gender dysphoria](https://www.sciencedaily.com/releases/2018/08/180822150809.htm)\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbigl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.sciencedaily.com/releases/2018/08/180822150809.htm\\\"\\u003Erapid-onset gender dysphoria\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"4chan\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/4chan/comments/ev9chf/fake_transanon_doing_the_lords_work/ffvbigl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/4chan/comments/ev9chf/fake_transanon_doing_the_lords_work/\", \"report_reasons\": null, \"link_author\": \"Spenglerian_\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ao6jczeobkd41.jpg\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/4chan\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Clinton says she feels the 'urge' to defeat Trump in 2020\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf7x1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbigj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DawnSennin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbfcl\", \"score\": 1, \"author_fullname\": \"t2_k8bw9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2cneq\", \"body\": \"She did, which was why her campaign used the pied piper strategy to prop Trump up in 2016.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbigj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShe did, which was why her campaign used the pied piper strategy to prop Trump up in 2016.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"politics\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/politics/comments/evf7x1/clinton_says_she_feels_the_urge_to_defeat_trump/ffvbigj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/politics/comments/evf7x1/clinton_says_she_feels_the_urge_to_defeat_trump/\", \"report_reasons\": null, \"link_author\": \"bucca220\", \"author_flair_text\": null, \"link_url\": \"https://thehill.com/homenews/campaign/480343-clinton-says-she-feels-the-urge-to-defeat-trump-in-2020\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/politics\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Hello reddit! Message me to chat!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf8r5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbigb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1StreetGlide7\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t3_evf8r5\", \"score\": 1, \"author_fullname\": \"t2_3xk2ub6y\", \"over_18\": true, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2tff1\", \"body\": \"\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbigb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"naughty\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/naughty/comments/evf8r5/hello_reddit_message_me_to_chat/ffvbigb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/naughty/comments/evf8r5/hello_reddit_message_me_to_chat/\", \"report_reasons\": null, \"link_author\": \"cidy2430\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/aaak4xr3bmd41.jpg\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/naughty\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"And Then There Was One - It's time for the Indians to resign Puig\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eve26u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbify\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AllOfTheDerp\", \"num_comments\": 31, \"can_mod_post\": false, \"created_utc\": 1580260221.0, \"send_replies\": true, \"parent_id\": \"t1_ffvb2h2\", \"score\": 1, \"author_fullname\": \"t2_7o3hn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2tdyz\", \"body\": \"And you think were going to find that pop in an amalgamation of Oscar Mercado, Tyler Naquin, Brad Zimmer, and Jordan Luplow?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbify\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd you think were going to find that pop in an amalgamation of Oscar Mercado, Tyler Naquin, Brad Zimmer, and Jordan Luplow?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"ClevelandIndians\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/ClevelandIndians/comments/eve26u/and_then_there_was_one_its_time_for_the_indians/ffvbify/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/ClevelandIndians/comments/eve26u/and_then_there_was_one_its_time_for_the_indians/\", \"report_reasons\": null, \"link_author\": \"macd2point0\", \"author_flair_text\": null, \"link_url\": \"https://www.mlbtraderumors.com/2020/01/and-then-there-was-one.html\", \"created\": 1580289021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/ClevelandIndians\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Everyone\\u2019s Skin Looks So Nice But Mine\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eveysj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbig0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Stavvv41\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_eveysj\", \"score\": 1, \"author_fullname\": \"t2_2iuc8gol\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2sqjh\", \"body\": \"Omg no no no boo boo! You have to be gentle with your skin! I know someone else here is going to have way better advice than me but here\\u2019s what I can recommend:\\n\\n-Using a gentle cleanser like Cetaphil to wash your face. It\\u2019s not soap based and is super nice to your skin. \\n\\n-Using a nice alcohol free toner after washing your face. It moisturizes and firms your skin post washing\\n\\n-Using a gentle moisturizer after toner.\\n\\nDo this all at night before bed. You shouldn\\u2019t be exfoliating everyday either. Once or twice a week to remove dead skin cells otherwise you\\u2019re causing trauma to your skin. Also masks are always a good idea.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbig0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOmg no no no boo boo! You have to be gentle with your skin! I know someone else here is going to have way better advice than me but here\\u2019s what I can recommend:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-Using a gentle cleanser like Cetaphil to wash your face. It\\u2019s not soap based and is super nice to your skin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-Using a nice alcohol free toner after washing your face. It moisturizes and firms your skin post washing\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-Using a gentle moisturizer after toner.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo this all at night before bed. You shouldn\\u2019t be exfoliating everyday either. Once or twice a week to remove dead skin cells otherwise you\\u2019re causing trauma to your skin. Also masks are always a good idea.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Dermatology\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/Dermatology/comments/eveysj/everyones_skin_looks_so_nice_but_mine/ffvbig0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Dermatology/comments/eveysj/everyones_skin_looks_so_nice_but_mine/\", \"report_reasons\": null, \"link_author\": \"Ghost_Peppers\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/Dermatology/comments/eveysj/everyones_skin_looks_so_nice_but_mine/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Dermatology\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"The heart of a survivor - this is Valentine, who we adopted from a shelter at age 5. Shes a survivor of extreme neglect, including heartworms. Because of this, she had a life expectancy of 5 years. She's 12 now.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf6q2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbifu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FringeDetriments\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evf6q2\", \"score\": 1, \"author_fullname\": \"t2_soquy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh1o\", \"body\": \"Pardon my heavy breathing, I'm getting over a cold! She was named Valentine because she was my engagement dog (I inherited my ring).\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbifu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPardon my heavy breathing, I\\u0026#39;m getting over a cold! She was named Valentine because she was my engagement dog (I inherited my ring).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"aww\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/aww/comments/evf6q2/the_heart_of_a_survivor_this_is_valentine_who_we/ffvbifu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/aww/comments/evf6q2/the_heart_of_a_survivor_this_is_valentine_who_we/\", \"report_reasons\": null, \"link_author\": \"FringeDetriments\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/7joo9bg3amd41\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/aww\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"This is Sonics new render forever as he\\u2019s plunged into a new era of prosperity with Ian Flynn as a writer. Gameplay has never been better as Sonics physics and controls are perfect. Adventure format returns, and boost bar remains, but very limited. Multiple characters, huge games, and world peace.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eve8vm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbift\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"beclark_2001_2\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_eve8vm\", \"score\": 1, \"author_fullname\": \"t2_4lz1jp16\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rh21\", \"body\": \"I can get used to the arms, I guess. But please don't mess with Sonic's face. There's no reason to change that, and it just looks better than the movie design.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbift\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can get used to the arms, I guess. But please don\\u0026#39;t mess with Sonic\\u0026#39;s face. There\\u0026#39;s no reason to change that, and it just looks better than the movie design.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"SonicTheHedgehog\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/SonicTheHedgehog/comments/eve8vm/this_is_sonics_new_render_forever_as_hes_plunged/ffvbift/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/SonicTheHedgehog/comments/eve8vm/this_is_sonics_new_render_forever_as_hes_plunged/\", \"report_reasons\": null, \"link_author\": \"BroTibs\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/8w6pflcjyld41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/SonicTheHedgehog\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Leg Up\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evc01g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbifs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Femail-Guy\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffvapiu\", \"score\": 1, \"author_fullname\": \"t2_1bf2tchq\", \"over_18\": true, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2sclx\", \"body\": \"Nicole Visser\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbifs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENicole Visser\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"girlsinyogapants\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/girlsinyogapants/comments/evc01g/leg_up/ffvbifs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/girlsinyogapants/comments/evc01g/leg_up/\", \"report_reasons\": null, \"link_author\": \"bondduffs\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/PEvATms.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/girlsinyogapants\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"The Starks that lived up to their reputation\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev8wm2\", \"author_flair_template_id\": \"80dfc4f6-645a-11e7-a51a-0e76a95c2bc0\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbifq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"alpacasaurusrex42\", \"num_comments\": 115, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv9db0\", \"score\": 1, \"author_fullname\": \"t2_n6xdih\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_37tpy\", \"body\": \"Ohhhhh. If that\\u2019s the case then so did every other character. Renly. Stannis, Joffrey, Dany.\", \"edited\": false, \"author_flair_css_class\": \"arya-stark\", \"name\": \"t1_ffvbifq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOhhhhh. If that\\u2019s the case then so did every other character. Renly. Stannis, Joffrey, Dany.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"freefolk\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/freefolk/comments/ev8wm2/the_starks_that_lived_up_to_their_reputation/ffvbifq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/freefolk/comments/ev8wm2/the_starks_that_lived_up_to_their_reputation/\", \"report_reasons\": null, \"link_author\": \"TheApocalypticCent\", \"author_flair_text\": \"Arya Stark\", \"link_url\": \"https://i.redd.it/18ktixyd6kd41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/freefolk\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Visit the Nightclub for anniversary gifts\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evclgb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbifi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ThisIsMoot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evclgb\", \"score\": 1, \"author_fullname\": \"t2_17hal1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2yxfm\", \"body\": \"My first gift was 2000... wtf, why\\u2019d you get more, this is bullshit \\ud83d\\ude02\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbifi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy first gift was 2000... wtf, why\\u2019d you get more, this is bullshit \\ud83d\\ude02\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"simsfreeplay\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/simsfreeplay/comments/evclgb/visit_the_nightclub_for_anniversary_gifts/ffvbifi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/simsfreeplay/comments/evclgb/visit_the_nightclub_for_anniversary_gifts/\", \"report_reasons\": null, \"link_author\": \"Mamatiger\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/simsfreeplay/comments/evclgb/visit_the_nightclub_for_anniversary_gifts/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/simsfreeplay\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"After the whole day playing on No-Ban-List rooms, this is my view\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evd65q\", \"author_flair_template_id\": \"a9d8ee24-65c9-11e9-ac8f-0eeea9fbffc4\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiff\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Gradash\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv9nme\", \"score\": 1, \"author_fullname\": \"t2_60j7c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3g70s\", \"body\": \"Koak with kiteroid have a turn one, and nothing can survive turn 2 Koak, even six.\", \"edited\": false, \"author_flair_css_class\": \"alexis2\", \"name\": \"t1_ffvbiff\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKoak with kiteroid have a turn one, and nothing can survive turn 2 Koak, even six.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"DuelLinks\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/DuelLinks/comments/evd65q/after_the_whole_day_playing_on_nobanlist_rooms/ffvbiff/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/DuelLinks/comments/evd65q/after_the_whole_day_playing_on_nobanlist_rooms/\", \"report_reasons\": null, \"link_author\": \"Gradash\", \"author_flair_text\": \"\", \"link_url\": \"https://www.reddit.com/r/DuelLinks/comments/evd65q/after_the_whole_day_playing_on_nobanlist_rooms/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/DuelLinks\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Megathread: Sen. Majority Leader Mitch McConnell Says GOP Lacks Votes To Block Impeachment Witnesses\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eveu8u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbifd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KasumiTengu\", \"num_comments\": 540, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffvb9bu\", \"score\": 1, \"author_fullname\": \"t2_cct5b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2cneq\", \"body\": \"Perhaps a modicum of respect for the people who voted the senate into power -- and by extension, wants them to do their jobs properly -- is due.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbifd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerhaps a modicum of respect for the people who voted the senate into power -- and by extension, wants them to do their jobs properly -- is due.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"politics\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/politics/comments/eveu8u/megathread_sen_majority_leader_mitch_mcconnell/ffvbifd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/politics/comments/eveu8u/megathread_sen_majority_leader_mitch_mcconnell/\", \"report_reasons\": null, \"link_author\": \"PoliticsModeratorBot\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/politics/comments/eveu8u/megathread_sen_majority_leader_mitch_mcconnell/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/politics\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"06 325xi - limp mode help\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ek4v4m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbif9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bmwtech3068\", \"num_comments\": 46, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbb2i\", \"score\": 1, \"author_fullname\": \"t2_rl4a154\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_30c6x\", \"body\": \"It would be worth buying a cheap telescoping magnet with an itty bitty magnet and bending it til it's destroyed forever just for this one use.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbif9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt would be worth buying a cheap telescoping magnet with an itty bitty magnet and bending it til it\\u0026#39;s destroyed forever just for this one use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"BmwTech\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/BmwTech/comments/ek4v4m/06_325xi_limp_mode_help/ffvbif9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/BmwTech/comments/ek4v4m/06_325xi_limp_mode_help/\", \"report_reasons\": null, \"link_author\": \"Willtay88\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/aa5zulnppu841.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/BmwTech\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Psuedo-science is much more dangerous than religion in our current timeline.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evbhwa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbif7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"morallycorruptgirl\", \"num_comments\": 384, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffvaog1\", \"score\": 1, \"author_fullname\": \"t2_sx90j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2tk0s\", \"body\": \"I think we should have a separate accommodations to cater to those children. We should find something for them not in a demeaning way but something that would make them happier but still be productive \\u0026 educational. When our entire educational system caters to the less productive students, it ends up hurting the rest of the group. I know that I would have been one of those kids when I was in school. I would have benefited more from work co-ops \\u0026 trades courses. I was a terrible student. I know now that alternative schools exist, but when I was still in school I had never heard of one. I wish alternative education schools were more widely available. I am not a huge fan of the online schools other than the convenience is necessary for some families. I am rambling sorry.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbif7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think we should have a separate accommodations to cater to those children. We should find something for them not in a demeaning way but something that would make them happier but still be productive \\u0026amp; educational. When our entire educational system caters to the less productive students, it ends up hurting the rest of the group. I know that I would have been one of those kids when I was in school. I would have benefited more from work co-ops \\u0026amp; trades courses. I was a terrible student. I know now that alternative schools exist, but when I was still in school I had never heard of one. I wish alternative education schools were more widely available. I am not a huge fan of the online schools other than the convenience is necessary for some families. I am rambling sorry.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"unpopularopinion\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/unpopularopinion/comments/evbhwa/psuedoscience_is_much_more_dangerous_than/ffvbif7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/unpopularopinion/comments/evbhwa/psuedoscience_is_much_more_dangerous_than/\", \"report_reasons\": null, \"link_author\": \"Return_The_Slab_Boi\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/unpopularopinion/comments/evbhwa/psuedoscience_is_much_more_dangerous_than/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/unpopularopinion\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"I let a man finger me on a dark street\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eveg9a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbif0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Fuckwhore_FtM\", \"num_comments\": 53, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbada\", \"score\": 1, \"author_fullname\": \"t2_5i1u1ws9\", \"over_18\": true, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_addfp\", \"body\": \"i once met a guy in a public toilet to suck him off and he ended up fucking me as well. bend over the toilet. it was only for a hot minute and i didnt enjoy it at all but i felt nice and used\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbif0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei once met a guy in a public toilet to suck him off and he ended up fucking me as well. bend over the toilet. it was only for a hot minute and i didnt enjoy it at all but i felt nice and used\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"ftmspunished\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/ftmspunished/comments/eveg9a/i_let_a_man_finger_me_on_a_dark_street/ffvbif0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/ftmspunished/comments/eveg9a/i_let_a_man_finger_me_on_a_dark_street/\", \"report_reasons\": null, \"link_author\": \"FtM-PussyBoi\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/ftmspunished/comments/eveg9a/i_let_a_man_finger_me_on_a_dark_street/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/ftmspunished\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Finally hit 4 Mil GP! Felt good seeing that first digit change.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evclu0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbif2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mrindoc\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv6hu6\", \"score\": 1, \"author_fullname\": \"t2_2g9q3kpv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_39umt\", \"body\": \"It was already a two time thing in this screenshot.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbif2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt was already a two time thing in this screenshot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"SWGalaxyOfHeroes\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/SWGalaxyOfHeroes/comments/evclu0/finally_hit_4_mil_gp_felt_good_seeing_that_first/ffvbif2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/SWGalaxyOfHeroes/comments/evclu0/finally_hit_4_mil_gp_felt_good_seeing_that_first/\", \"report_reasons\": null, \"link_author\": \"Capaboy1\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/idfr4cbhfld41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/SWGalaxyOfHeroes\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Plexkodiconnect privacy concerns\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev7155\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiez\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pcpcy\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv595h\", \"score\": 1, \"author_fullname\": \"t2_btpnq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2ql7e\", \"body\": \"I mean I haven't audited the code completely myself, but you would think if it's open source that other people have taken a look already... And since no one came out and said they found something suspicious in their code, I wouldn't be too worried.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiez\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI mean I haven\\u0026#39;t audited the code completely myself, but you would think if it\\u0026#39;s open source that other people have taken a look already... And since no one came out and said they found something suspicious in their code, I wouldn\\u0026#39;t be too worried.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"subreddit\": \"PleX\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PleX/comments/ev7155/plexkodiconnect_privacy_concerns/ffvbiez/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PleX/comments/ev7155/plexkodiconnect_privacy_concerns/\", \"report_reasons\": null, \"link_author\": \"beartran\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PleX/comments/ev7155/plexkodiconnect_privacy_concerns/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PleX\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Crazy coincidence on my Twitter timeline. What do y\\u2019all think?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evck4j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiey\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JoJoMama17\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evck4j\", \"score\": 1, \"author_fullname\": \"t2_4n943g25\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qwnx\", \"body\": \"I hate it when homosexual couples roll their eyes at straight couples. 1. Bi and pan people are valid. 2. A whole other half of the lgbt community (trans/non binary) could be straight\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiey\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hate it when homosexual couples roll their eyes at straight couples. 1. Bi and pan people are valid. 2. A whole other half of the lgbt community (trans/non binary) could be straight\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"bisexual\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/bisexual/comments/evck4j/crazy_coincidence_on_my_twitter_timeline_what_do/ffvbiey/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/bisexual/comments/evck4j/crazy_coincidence_on_my_twitter_timeline_what_do/\", \"report_reasons\": null, \"link_author\": \"BraumsAway\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/cfl7uqC.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/bisexual\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"\\\"B-b-b-but CDPR and Valve are my friends! They're not like the OTHER corporations!\\\"\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev73hn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbieq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TomatoHateClub\", \"num_comments\": 82, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffud40i\", \"score\": 1, \"author_fullname\": \"t2_505kg43b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2sf2b\", \"body\": \"Damn\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbieq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDamn\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Gamingcirclejerk\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/Gamingcirclejerk/comments/ev73hn/bbbbut_cdpr_and_valve_are_my_friends_theyre_not/ffvbieq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Gamingcirclejerk/comments/ev73hn/bbbbut_cdpr_and_valve_are_my_friends_theyre_not/\", \"report_reasons\": null, \"link_author\": \"german_leopard\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/pauikyoggjd41.png\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Gamingcirclejerk\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Trying to get the party started, Livia, come ON\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev5lk7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiej\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"donthugmeihavelynks\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv913v\", \"score\": 1, \"author_fullname\": \"t2_z6cd6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2xfky\", \"body\": \"Yes!!! I miss my good ole Latin days!\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiej\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes!!! I miss my good ole Latin days!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"shitduolingosays\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/shitduolingosays/comments/ev5lk7/trying_to_get_the_party_started_livia_come_on/ffvbiej/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/shitduolingosays/comments/ev5lk7/trying_to_get_the_party_started_livia_come_on/\", \"report_reasons\": null, \"link_author\": \"KingOfTheRiverlands\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/gwkdscd5uid41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/shitduolingosays\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"When pmdd is acting up, I always feel so ugly, horrible, and worthless and that my SO is going to cheat and leave me for someone who\\u2019s prettier and better. I know it\\u2019s irrational, but it always feel so real that I feel extremely heartbroken, sad, and start crying. Anyone else feel like this?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev9qyw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbief\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sleesmith\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_ev9qyw\", \"score\": 1, \"author_fullname\": \"t2_lhhmz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2tokr\", \"body\": \"YES! My thoughts would have me going into these same thoughts and then I think about my kids and how they need a better mom and my guilt of feeling the way I feel. It's freaking viscous circle of doom! SUCKS!!!!!!\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbief\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYES! My thoughts would have me going into these same thoughts and then I think about my kids and how they need a better mom and my guilt of feeling the way I feel. It\\u0026#39;s freaking viscous circle of doom! SUCKS!!!!!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"PMDD\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PMDD/comments/ev9qyw/when_pmdd_is_acting_up_i_always_feel_so_ugly/ffvbief/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PMDD/comments/ev9qyw/when_pmdd_is_acting_up_i_always_feel_so_ugly/\", \"report_reasons\": null, \"link_author\": \"sadbokchoy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PMDD/comments/ev9qyw/when_pmdd_is_acting_up_i_always_feel_so_ugly/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PMDD\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Gogeta or Vegito will NOT be agl\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf94a\", \"author_flair_template_id\": \"35da6d7a-6c3d-11e9-80ad-0afb553d4ea6\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbieb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dbzfanatic99\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evf94a\", \"score\": 1, \"author_fullname\": \"t2_3vb2k4kl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_384a7\", \"body\": \"How do you know?\", \"edited\": false, \"author_flair_css_class\": \"new\", \"name\": \"t1_ffvbieb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you know?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"DBZDokkanBattle\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/DBZDokkanBattle/comments/evf94a/gogeta_or_vegito_will_not_be_agl/ffvbieb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/DBZDokkanBattle/comments/evf94a/gogeta_or_vegito_will_not_be_agl/\", \"report_reasons\": null, \"link_author\": \"chipperman4\", \"author_flair_text\": \"New User\", \"link_url\": \"https://www.reddit.com/r/DBZDokkanBattle/comments/evf94a/gogeta_or_vegito_will_not_be_agl/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/DBZDokkanBattle\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Just an old pink hair nudey pic \\ud83d\\ude0b\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evc017\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbied\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"onelostlamb\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evc017\", \"score\": 1, \"author_fullname\": \"t2_49ltm43v\", \"over_18\": true, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_23gizl\", \"body\": \"Love the pose. Looks like you need a big spoon.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbied\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELove the pose. Looks like you need a big spoon.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Peaches_n_Cream\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/Peaches_n_Cream/comments/evc017/just_an_old_pink_hair_nudey_pic/ffvbied/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Peaches_n_Cream/comments/evc017/just_an_old_pink_hair_nudey_pic/\", \"report_reasons\": null, \"link_author\": \"sasha_peach_xo\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/iR6cUbL.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Peaches_n_Cream\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Orange Man's full compass unity\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_evezwf\", \"author_flair_template_id\": \"0bda7a90-f155-11e9-9210-0e4d65b711f8\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbie9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"che-ez\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffvak14\", \"score\": 1, \"author_fullname\": \"t2_oaxl9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3ipa1\", \"body\": \"triggered\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbie9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"a\": \":libright2:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/9usjafiot7t31_t5_3ipa1/libright2\"}, {\"e\": \"text\", \"t\": \" - LibRight\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etriggered\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"PoliticalCompassMemes\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/PoliticalCompassMemes/comments/evezwf/orange_mans_full_compass_unity/ffvbie9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PoliticalCompassMemes/comments/evezwf/orange_mans_full_compass_unity/\", \"report_reasons\": null, \"link_author\": \"BustiferPWNs\", \"author_flair_text\": \":libright2: - LibRight\", \"link_url\": \"https://i.imgur.com/lXPAbNt.png\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PoliticalCompassMemes\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"transparent\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Drawing of John Cena I made took me about two weeks please rate comments welcome\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf8jy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbie6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Wizardwheel\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evf8jy\", \"score\": 1, \"author_fullname\": \"t2_k16tbk4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qjpg\", \"body\": \"Looks good,at be put some more detail in his upper lip\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbie6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks good,at be put some more detail in his upper lip\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"memes\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/memes/comments/evf8jy/drawing_of_john_cena_i_made_took_me_about_two/ffvbie6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/memes/comments/evf8jy/drawing_of_john_cena_i_made_took_me_about_two/\", \"report_reasons\": null, \"link_author\": \"cabbagemelon\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/2zki56r0bmd41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/memes\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Shotgun shell looking things in the sidewalks\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf4ck\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbie2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Prototeus\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evf4ck\", \"score\": 1, \"author_fullname\": \"t2_hxuqb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s3kh\", \"body\": \"Survey marker.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbie2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESurvey marker.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"whatisthisthing\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/whatisthisthing/comments/evf4ck/shotgun_shell_looking_things_in_the_sidewalks/ffvbie2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/whatisthisthing/comments/evf4ck/shotgun_shell_looking_things_in_the_sidewalks/\", \"report_reasons\": null, \"link_author\": \"varazdates\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wgtnzoyi9md41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/whatisthisthing\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"New Gunfight mode sucks. Why remove 3v3?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev9k9f\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbie1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"EnkiRise\", \"num_comments\": 117, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv8bb6\", \"score\": 1, \"author_fullname\": \"t2_ykqjg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2r8qf\", \"body\": \"But it will split up the player base!!! /s\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbie1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut it will split up the player base!!! /s\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"modernwarfare\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/modernwarfare/comments/ev9k9f/new_gunfight_mode_sucks_why_remove_3v3/ffvbie1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/modernwarfare/comments/ev9k9f/new_gunfight_mode_sucks_why_remove_3v3/\", \"report_reasons\": null, \"link_author\": \"travlingsomewhere\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/modernwarfare/comments/ev9k9f/new_gunfight_mode_sucks_why_remove_3v3/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/modernwarfare\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"He's kinda cute tho\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evcl2w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bloodreaper47\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evcl2w\", \"score\": 1, \"author_fullname\": \"t2_2vfy89gm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rjli\", \"body\": \"Repost\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERepost\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"teenagers\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/teenagers/comments/evcl2w/hes_kinda_cute_tho/ffvbidz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/teenagers/comments/evcl2w/hes_kinda_cute_tho/\", \"report_reasons\": null, \"link_author\": \"Jayce_likes_beans\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/w7ejm3a6fld41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/teenagers\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[Megathread #3] Wuhan viral outbreak\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_ev1biz\", \"author_flair_template_id\": \"efbaef38-99d7-11e2-9daf-12313b0e6495\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"caspears76\", \"num_comments\": 150, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_ev1biz\", \"score\": 1, \"author_fullname\": \"t2_59t80kb0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh2v\", \"body\": \" **Xi Dada \\\\[\\u4e60\\u5927\\u5927\\\\] said: \\u201cThe epidemic is a devil. We will not let it hide,\\u201d \\uff08\\u2014 \\u75ab\\u60c5\\u662f\\u9b54\\u9b3c\\uff0c\\u6211\\u4eec\\u4e0d\\u80fd\\u8ba9\\u9b54\\u9b3c\\u85cf\\u533f\\uff09- if the paramount leader says it, then it will be so. End of discussion! haha.** \\n\\n [http://www.xinhuanet.com/english/2020-01/28/c\\\\_138739962.htm?utm\\\\_source=Pico\\u0026utm\\\\_campaign=56b0f60426-EMAIL\\\\_CAMPAIGN\\\\_2020\\\\_01\\\\_28\\\\_11\\\\_47\\u0026utm\\\\_medium=email\\u0026utm\\\\_term=0\\\\_aa6d5ab160-56b0f60426-165461233](http://www.xinhuanet.com/english/2020-01/28/c_138739962.htm?utm_source=Pico\\u0026utm_campaign=56b0f60426-EMAIL_CAMPAIGN_2020_01_28_11_47\\u0026utm_medium=email\\u0026utm_term=0_aa6d5ab160-56b0f60426-165461233)\", \"edited\": false, \"author_flair_css_class\": \"cn\", \"name\": \"t1_ffvbidu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"China\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EXi Dada [\\u4e60\\u5927\\u5927] said: \\u201cThe epidemic is a devil. We will not let it hide,\\u201d \\uff08\\u2014 \\u75ab\\u60c5\\u662f\\u9b54\\u9b3c\\uff0c\\u6211\\u4eec\\u4e0d\\u80fd\\u8ba9\\u9b54\\u9b3c\\u85cf\\u533f\\uff09- if the paramount leader says it, then it will be so. End of discussion! haha.\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.xinhuanet.com/english/2020-01/28/c_138739962.htm?utm_source=Pico\\u0026amp;utm_campaign=56b0f60426-EMAIL_CAMPAIGN_2020_01_28_11_47\\u0026amp;utm_medium=email\\u0026amp;utm_term=0_aa6d5ab160-56b0f60426-165461233\\\"\\u003Ehttp://www.xinhuanet.com/english/2020-01/28/c_138739962.htm?utm_source=Pico\\u0026amp;utm_campaign=56b0f60426-EMAIL_CAMPAIGN_2020_01_28_11_47\\u0026amp;utm_medium=email\\u0026amp;utm_term=0_aa6d5ab160-56b0f60426-165461233\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"subreddit\": \"China\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/China/comments/ev1biz/megathread_3_wuhan_viral_outbreak/ffvbidu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/China/comments/ev1biz/megathread_3_wuhan_viral_outbreak/\", \"report_reasons\": null, \"link_author\": \"rChina_Announcements\", \"author_flair_text\": \"China\", \"link_url\": \"https://www.reddit.com/r/China/comments/ev1biz/megathread_3_wuhan_viral_outbreak/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/China\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Empire-Market-Link-Empire-Market-Links-Empire-Market-URL-Empire-Market-URLS\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evel64\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ApprehensiveBank7\", \"num_comments\": 1011, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evel64\", \"score\": 1, \"author_fullname\": \"t2_5jboh0oa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2e23g0\", \"body\": \"What is the difference between acne and a catholic priest? Acne usually comes on a boys face after he turns 12.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat is the difference between acne and a catholic priest? Acne usually comes on a boys face after he turns 12.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"u_PuzzleheadedMixture4\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/u_PuzzleheadedMixture4/comments/evel64/empiremarketlinkempiremarketlinksempiremarketurlem/ffvbidq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/u_PuzzleheadedMixture4/comments/evel64/empiremarketlinkempiremarketlinksempiremarketurlem/\", \"report_reasons\": null, \"link_author\": \"PuzzleheadedMixture4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/u_PuzzleheadedMixture4/comments/evel64/empiremarketlinkempiremarketlinksempiremarketurlem/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"u/PuzzleheadedMixture4\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"user\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Was told to post here. 5 years with Maisy!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev8qod\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MoldyPlatypus666\", \"num_comments\": 47, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv652e\", \"score\": 1, \"author_fullname\": \"t2_3rzv50fh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_v051u\", \"body\": \"They just look good all the time no matter what tbh\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThey just look good all the time no matter what tbh\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"velvethippos\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/velvethippos/comments/ev8qod/was_told_to_post_here_5_years_with_maisy/ffvbidn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/velvethippos/comments/ev8qod/was_told_to_post_here_5_years_with_maisy/\", \"report_reasons\": null, \"link_author\": \"Taintedracksack33\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fd0g1h2iwid41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/velvethippos\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"January 27-28\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_eujuxg\", \"author_flair_template_id\": \"7014b14a-1191-11ea-9bc8-0e17be3549d1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Toulouse--Matabiau\", \"num_comments\": 1027, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffv9mjj\", \"score\": 1, \"author_fullname\": \"t2_4k2dw5a4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_296zi1\", \"body\": \"I sincerely wish you good courage on your own path toward healing. These things take so much.. time and consistent self-work under compassionate expert guidance. Even for peeps who practice self-awareness and already have a toolkit for self-regulation and self-soothing. \\n\\nAnd Caro is such an impulsive and reactive person! A snarker wrote here last week that she lives *in a perpetually buck-wild state*--a beautifully worded insight, I thought.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"My husband, the King of France\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI sincerely wish you good courage on your own path toward healing. These things take so much.. time and consistent self-work under compassionate expert guidance. Even for peeps who practice self-awareness and already have a toolkit for self-regulation and self-soothing. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd Caro is such an impulsive and reactive person! A snarker wrote here last week that she lives \\u003Cem\\u003Ein a perpetually buck-wild state\\u003C/em\\u003E--a beautifully worded insight, I thought.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"SmolBeanSnark\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/SmolBeanSnark/comments/eujuxg/january_2728/ffvbidp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/SmolBeanSnark/comments/eujuxg/january_2728/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"My husband, the King of France\", \"link_url\": \"https://www.reddit.com/r/SmolBeanSnark/comments/eujuxg/january_2728/\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/SmolBeanSnark\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"A day in ghost town Wuhan\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eusfnc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JohanesYamakawa\", \"num_comments\": 92, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t1_ffsxrkw\", \"score\": 1, \"author_fullname\": \"t2_whqbrl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2x4yx\", \"body\": \"My point was about stray dogs in China. Not about the transmission of the virus\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy point was about stray dogs in China. Not about the transmission of the virus\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Coronavirus\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/Coronavirus/comments/eusfnc/a_day_in_ghost_town_wuhan/ffvbidm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Coronavirus/comments/eusfnc/a_day_in_ghost_town_wuhan/\", \"report_reasons\": null, \"link_author\": \"kimmey12\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/v69fxdljbdd41\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Coronavirus\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"When you lost but the game itself thought you deserved better... (and I didn't cover that jg's name for a reason, I hope you are here to see djkhead)\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf1wx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Persona-Noego\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1580260220.0, \"send_replies\": true, \"parent_id\": \"t3_evf1wx\", \"score\": 1, \"author_fullname\": \"t2_4rfvszn0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_hehfk\", \"body\": \"When you win but you are such a salty person.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen you win but you are such a salty person.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"OnmyojiArena\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/OnmyojiArena/comments/evf1wx/when_you_lost_but_the_game_itself_thought_you/ffvbidj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/OnmyojiArena/comments/evf1wx/when_you_lost_but_the_game_itself_thought_you/\", \"report_reasons\": null, \"link_author\": \"mcabbage0412\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/6gzylhen8md41.jpg\", \"created\": 1580289020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/OnmyojiArena\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Coach Bombay coming back!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev9ufz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"someoneelseperhaps\", \"num_comments\": 380, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffutzki\", \"score\": 1, \"author_fullname\": \"t2_11q2q945\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qiel\", \"body\": \"Maybe he had money on Goldberg's hot streak?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe he had money on Goldberg\\u0026#39;s hot streak?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"hockey\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/hockey/comments/ev9ufz/coach_bombay_coming_back/ffvbidi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/hockey/comments/ev9ufz/coach_bombay_coming_back/\", \"report_reasons\": null, \"link_author\": \"devils14f\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/bz5070j1ikd41.jpg\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/hockey\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"First PC is this a bad build?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev9yej\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"narottam108\", \"num_comments\": 33, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv76zj\", \"score\": 1, \"author_fullname\": \"t2_3vfvhzet\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rnve\", \"body\": \"(BTW I'm not a pro builder/pc expert) maybe a rtx 2060 or rx 5700\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E(BTW I\\u0026#39;m not a pro builder/pc expert) maybe a rtx 2060 or rx 5700\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"buildapc\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/buildapc/comments/ev9yej/first_pc_is_this_a_bad_build/ffvbidc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/buildapc/comments/ev9yej/first_pc_is_this_a_bad_build/\", \"report_reasons\": null, \"link_author\": \"pick4skyline\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/buildapc/comments/ev9yej/first_pc_is_this_a_bad_build/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/buildapc\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Why did the chicken cross the road? Because you didn't freaking COOK IT!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evc3f5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbidb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Skullthink\", \"num_comments\": 639, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv92sb\", \"score\": 1, \"author_fullname\": \"t2_limgz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh03\", \"body\": \"Open and shut case, Johnson\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbidb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOpen and shut case, Johnson\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"gaming\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/gaming/comments/evc3f5/why_did_the_chicken_cross_the_road_because_you/ffvbidb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/gaming/comments/evc3f5/why_did_the_chicken_cross_the_road_because_you/\", \"report_reasons\": null, \"link_author\": \"dfpcmaia\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/1abmrlt79ld41.jpg\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/gaming\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[SSD] Crucial P1 1TB SSD 3D QLC NAND M.2 2280 PCIe - $94.99 @ Micro Center\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev724s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbid7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"confirmSuspicions\", \"num_comments\": 97, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": false, \"parent_id\": \"t1_ffuoekx\", \"score\": 1, \"author_fullname\": \"t2_nkn7s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s3dh\", \"body\": \"If you can get the sx8200 pro on sale, it's worth waiting for. Performance is really close to that of a samsung and not quite as expensive.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbid7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you can get the sx8200 pro on sale, it\\u0026#39;s worth waiting for. Performance is really close to that of a samsung and not quite as expensive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"buildapcsales\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/buildapcsales/comments/ev724s/ssd_crucial_p1_1tb_ssd_3d_qlc_nand_m2_2280_pcie/ffvbid7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/buildapcsales/comments/ev724s/ssd_crucial_p1_1tb_ssd_3d_qlc_nand_m2_2280_pcie/\", \"report_reasons\": null, \"link_author\": \"thisisnyrealname\", \"author_flair_text\": null, \"link_url\": \"https://www.microcenter.com/product/513534/crucial-p1-1tb-ssd-3d-qlc-nand-m2-2280-pcie-nvme-30-x4-internal-solid-state-drive\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/buildapcsales\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Kratom liquid\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evcemu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbid4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"both_grower_shower\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evcemu\", \"score\": 1, \"author_fullname\": \"t2_558ftzrp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qx0h\", \"body\": \"So caps and powder don't work? How much you take them?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbid4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo caps and powder don\\u0026#39;t work? How much you take them?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"kratom\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/kratom/comments/evcemu/kratom_liquid/ffvbid4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/kratom/comments/evcemu/kratom_liquid/\", \"report_reasons\": null, \"link_author\": \"Justintime731422\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/kratom/comments/evcemu/kratom_liquid/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/kratom\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"He needs it for training\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evekr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbid1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheEbitan\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evekr5\", \"score\": 1, \"author_fullname\": \"t2_28yov90z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2xx8w\", \"body\": \"He really wants to go to space.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbid1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe really wants to go to space.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"yakuzagames\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/yakuzagames/comments/evekr5/he_needs_it_for_training/ffvbid1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/yakuzagames/comments/evekr5/he_needs_it_for_training/\", \"report_reasons\": null, \"link_author\": \"yaboikaiji\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/gzxgixim2md41.jpg\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/yakuzagames\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[Game Thread] Boston Celtics (30-15) @ Miami Heat (32-14) - 1/28, 08:00 PM ET\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_ev44oy\", \"author_flair_template_id\": \"3f97f4b2-3885-11e5-8048-0ef6ca535a4d\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbid0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"A_Kind_Shark\", \"num_comments\": 111, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbge2\", \"score\": 1, \"author_fullname\": \"t2_jbgyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s8tk\", \"body\": \"Snowbirds and bandwagoners #FuckTheCeltics\", \"edited\": false, \"author_flair_css_class\": \"Ross\", \"name\": \"t1_ffvbid0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"Rossayyy\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESnowbirds and bandwagoners #FuckTheCeltics\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"heat\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/heat/comments/ev44oy/game_thread_boston_celtics_3015_miami_heat_3214/ffvbid0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/heat/comments/ev44oy/game_thread_boston_celtics_3015_miami_heat_3214/\", \"report_reasons\": null, \"link_author\": \"Burnie_Bot\", \"author_flair_text\": \"Rossayyy\", \"link_url\": \"https://www.reddit.com/r/heat/comments/ev44oy/game_thread_boston_celtics_3015_miami_heat_3214/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/heat\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Question about Hash Rosin pricing\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf9mv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbid2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AutoModerator\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": false, \"parent_id\": \"t3_evf9mv\", \"score\": 1, \"author_fullname\": \"t2_6l4z3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s8kk\", \"body\": \"Hi! Be sure to vote in our Best Of Awards The Sparkies! Vote here until January 30th: https://www.reddit.com/r/bostontrees/comments/eiaknl/2019_sparkies_nominations_thread/\\n\\n\\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/bostontrees) if you have any questions or concerns.*\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbid2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! Be sure to vote in our Best Of Awards The Sparkies! Vote here until January 30th: \\u003Ca href=\\\"https://www.reddit.com/r/bostontrees/comments/eiaknl/2019_sparkies_nominations_thread/\\\"\\u003Ehttps://www.reddit.com/r/bostontrees/comments/eiaknl/2019_sparkies_nominations_thread/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI am a bot, and this action was performed automatically. Please \\u003Ca href=\\\"/message/compose/?to=/r/bostontrees\\\"\\u003Econtact the moderators of this subreddit\\u003C/a\\u003E if you have any questions or concerns.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": \"moderator\", \"associated_award\": null, \"stickied\": true, \"author_premium\": true, \"can_gild\": true, \"subreddit\": \"bostontrees\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/bostontrees/comments/evf9mv/question_about_hash_rosin_pricing/ffvbid2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/bostontrees/comments/evf9mv/question_about_hash_rosin_pricing/\", \"report_reasons\": null, \"link_author\": \"Contemporaryshaman\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/bostontrees/comments/evf9mv/question_about_hash_rosin_pricing/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/bostontrees\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Educational, but brutal. Gif of a Root Canal\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evc3x9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ItJermy\", \"num_comments\": 83, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evc3x9\", \"score\": 1, \"author_fullname\": \"t2_54ue6oao\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2w708\", \"body\": \"Honestly by the time that you need a root canal you are usually welcoming the pain of the procedure to make the pain of the infection stop.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbicu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHonestly by the time that you need a root canal you are usually welcoming the pain of the procedure to make the pain of the infection stop.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"educationalgifs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/educationalgifs/comments/evc3x9/educational_but_brutal_gif_of_a_root_canal/ffvbicu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/educationalgifs/comments/evc3x9/educational_but_brutal_gif_of_a_root_canal/\", \"report_reasons\": null, \"link_author\": \"5_Frog_Margin\", \"author_flair_text\": null, \"link_url\": \"http://i.imgur.com/KVbGBHi.gif\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/educationalgifs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"What is your favorite mystery in the books that you feel is under analyzed by the fandom as a whole? Any insights appreciated.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev7560\", \"author_flair_template_id\": \"0244e9f4-f983-11e3-a76d-12313d19304a\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbics\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"canitryto\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv1lum\", \"score\": 1, \"author_fullname\": \"t2_16yk89\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3288z\", \"body\": \"Through the ho door\", \"edited\": false, \"author_flair_css_class\": \"stark\", \"name\": \"t1_ffvbics\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThrough the ho door\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"subreddit\": \"pureasoiaf\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/pureasoiaf/comments/ev7560/what_is_your_favorite_mystery_in_the_books_that/ffvbics/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/pureasoiaf/comments/ev7560/what_is_your_favorite_mystery_in_the_books_that/\", \"report_reasons\": null, \"link_author\": \"canitryto\", \"author_flair_text\": \"Ned is no Artos \", \"link_url\": \"https://www.reddit.com/r/pureasoiaf/comments/ev7560/what_is_your_favorite_mystery_in_the_books_that/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/pureasoiaf\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Interviews are a two way street\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evew9o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ndd23123\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evew9o\", \"score\": 1, \"author_fullname\": \"t2_yu33xx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2tn62\", \"body\": \"Agreed wholeheartedly. I'd also say that you should take notice of your fellow applicants as well. These are the people with whom you may spent the next 4-5 years and it's tremendously helpful to have a supportive cohort.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbicq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAgreed wholeheartedly. I\\u0026#39;d also say that you should take notice of your fellow applicants as well. These are the people with whom you may spent the next 4-5 years and it\\u0026#39;s tremendously helpful to have a supportive cohort.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"gradadmissions\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/gradadmissions/comments/evew9o/interviews_are_a_two_way_street/ffvbicq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/gradadmissions/comments/evew9o/interviews_are_a_two_way_street/\", \"report_reasons\": null, \"link_author\": \"microvan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/gradadmissions/comments/evew9o/interviews_are_a_two_way_street/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/gradadmissions\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Poor Grandma is getting served with PPO! How could you!\\ud83d\\ude44\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev8qha\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GintaPlaysHorn\", \"num_comments\": 286, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffu76rf\", \"score\": 1, \"author_fullname\": \"t2_piebm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_377ps\", \"body\": \"But you have to understand, I am a GOOD PERSON. I. AM. A GOOD. PERSON!\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbicn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut you have to understand, I am a GOOD PERSON. I. AM. A GOOD. PERSON!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"JUSTNOMIL\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/JUSTNOMIL/comments/ev8qha/poor_grandma_is_getting_served_with_ppo_how_could/ffvbicn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/JUSTNOMIL/comments/ev8qha/poor_grandma_is_getting_served_with_ppo_how_could/\", \"report_reasons\": null, \"link_author\": \"AllPinkMama4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/JUSTNOMIL/comments/ev8qha/poor_grandma_is_getting_served_with_ppo_how_could/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/JUSTNOMIL\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"The Canucks are going to hug their way to the playoffs\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_evcct9\", \"author_flair_template_id\": \"368ffd56-2e67-11ea-851a-0e155c9fbe0b\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbick\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Feralwestcoaster\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evcct9\", \"score\": 1, \"author_fullname\": \"t2_ie25g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qrs7\", \"body\": \"They meant Pug right?\", \"edited\": false, \"author_flair_css_class\": \"pug\", \"name\": \"t1_ffvbick\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"a\": \":pug:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/rh3cz51x6i841_t5_2qrs7/pug\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThey meant Pug right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"canucks\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/canucks/comments/evcct9/the_canucks_are_going_to_hug_their_way_to_the/ffvbick/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/canucks/comments/evcct9/the_canucks_are_going_to_hug_their_way_to_the/\", \"report_reasons\": null, \"link_author\": \"DDay629\", \"author_flair_text\": \":pug:\", \"link_url\": \"https://www.vancouverisawesome.com/canucks-hockey/the-canucks-are-going-to-hug-their-way-to-the-playoffs-2053937\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/canucks\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[Game Thread] Philadelphia 76ers vs GS Warriors | Jan 28\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_eval47\", \"author_flair_template_id\": \"4bbc06fe-f6ca-11e9-a09a-0e2c3e82d638\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbici\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loco1989\", \"num_comments\": 930, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbfj5\", \"score\": 1, \"author_fullname\": \"t2_15k9t8gs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2scmr\", \"body\": \"We're relaxed on defense that's the only reason\", \"edited\": false, \"author_flair_css_class\": \"8- thybulle\", \"name\": \"t1_ffvbici\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"a\": \":thybulle:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/zylfmruqglu31_t5_2scmr/thybulle\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe\\u0026#39;re relaxed on defense that\\u0026#39;s the only reason\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"sixers\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/sixers/comments/eval47/game_thread_philadelphia_76ers_vs_gs_warriors_jan/ffvbici/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/sixers/comments/eval47/game_thread_philadelphia_76ers_vs_gs_warriors_jan/\", \"report_reasons\": null, \"link_author\": \"pegasus29\", \"author_flair_text\": \":thybulle:\", \"link_url\": \"https://watch.nba.com/game/20200128/GSWPHI\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/sixers\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[BtS] plans and Future Updates for my covers\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_evervw\", \"author_flair_template_id\": \"a416be5a-91de-11e7-8b10-0e667cafc724\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mMac03\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evervw\", \"score\": 1, \"author_fullname\": \"t2_3totekwg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_32tf7\", \"body\": \"Idk what it\\u2019s called but the one when Chole tags up the whole bathroom would be cool\", \"edited\": false, \"author_flair_css_class\": \"quote chloeyouresogay\", \"name\": \"t1_ffvbicj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"Nice Rachel we're having\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIdk what it\\u2019s called but the one when Chole tags up the whole bathroom would be cool\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"lifeisstrange\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/lifeisstrange/comments/evervw/bts_plans_and_future_updates_for_my_covers/ffvbicj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/lifeisstrange/comments/evervw/bts_plans_and_future_updates_for_my_covers/\", \"report_reasons\": null, \"link_author\": \"CoreyT234\", \"author_flair_text\": \"Nice Rachel we're having\", \"link_url\": \"https://www.reddit.com/r/lifeisstrange/comments/evervw/bts_plans_and_future_updates_for_my_covers/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/lifeisstrange\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Without stating your age, what commercial from your childhood has been burned into your memory?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf8yi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bunnymama815\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evf8yi\", \"score\": 1, \"author_fullname\": \"t2_4qnvcf6d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh1i\", \"body\": \"Frosted Flakes- they\\u2019re grrr-eat!\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbicf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrosted Flakes- they\\u2019re grrr-eat!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"AskReddit\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/AskReddit/comments/evf8yi/without_stating_your_age_what_commercial_from/ffvbicf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/AskReddit/comments/evf8yi/without_stating_your_age_what_commercial_from/\", \"report_reasons\": null, \"link_author\": \"PandaOfPowda\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/AskReddit/comments/evf8yi/without_stating_your_age_what_commercial_from/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/AskReddit\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[PC] W:bolstering/ (preferrably, but not only)Ap or poison/ sent urban scout chest H: Trades, caps, flux\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_ev5wgn\", \"author_flair_template_id\": \"cd32506c-6d1d-11e9-b361-0e15112e390c\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbice\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Drakejog\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffubfsz\", \"score\": 1, \"author_fullname\": \"t2_2x3qurhx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_n9nn1\", \"body\": \"im home and can hop on whenever, for the next few hours\", \"edited\": false, \"author_flair_css_class\": \"green tier5\", \"name\": \"t1_ffvbice\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"+335 Karma\"}], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eim home and can hop on whenever, for the next few hours\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Market76\", \"author_flair_text_color\": \"light\", \"score_hidden\": false, \"permalink\": \"/r/Market76/comments/ev5wgn/pc_wbolstering_preferrably_but_not_onlyap_or/ffvbice/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Market76/comments/ev5wgn/pc_wbolstering_preferrably_but_not_onlyap_or/\", \"report_reasons\": null, \"link_author\": \"Drakejog\", \"author_flair_text\": \"+335 Karma\", \"link_url\": \"https://www.reddit.com/r/Market76/comments/ev5wgn/pc_wbolstering_preferrably_but_not_onlyap_or/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Market76\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"#20cc54\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Two years ago today my photograph went viral on this subreddit. You enabled me to turn my passion into a full-time job. I owe so much to this community. Thank you \\u003C3\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evc7f2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JappTwinkie\", \"num_comments\": 167, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evc7f2\", \"score\": 1, \"author_fullname\": \"t2_jamfaw2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh0u\", \"body\": \"And where do i buy this??\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbicc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd where do i buy this??\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"pics\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/pics/comments/evc7f2/two_years_ago_today_my_photograph_went_viral_on/ffvbicc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/pics/comments/evc7f2/two_years_ago_today_my_photograph_went_viral_on/\", \"report_reasons\": null, \"link_author\": \"hi-im-that-guy\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/x96hx3orald41.jpg\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/pics\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Is this Blitz waifu\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_evek9t\", \"author_flair_template_id\": \"2fc14516-37aa-11e9-b816-0e66455f6230\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"evergonitenitenigga\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv9lqh\", \"score\": 1, \"author_fullname\": \"t2_akftt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_31zi1\", \"body\": \"the fuck.\", \"edited\": false, \"author_flair_css_class\": \"us\", \"name\": \"t1_ffvbicd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"Nakampu[MUNRO] @NA\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethe fuck.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"WorldOfTanksBlitz\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/WorldOfTanksBlitz/comments/evek9t/is_this_blitz_waifu/ffvbicd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/WorldOfTanksBlitz/comments/evek9t/is_this_blitz_waifu/\", \"report_reasons\": null, \"link_author\": \"SoyuzRocket\", \"author_flair_text\": \"Nakampu[MUNRO] @NA\", \"link_url\": \"https://i.redd.it/c8t25dhk2md41.jpg\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/WorldOfTanksBlitz\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Keeping your pet alive long after it\\u2019s having comfortable life is unethical and no different than abuse.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf7gg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbicb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"StanleeNickel\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evf7gg\", \"score\": 1, \"author_fullname\": \"t2_5f0x4qfk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2tk0s\", \"body\": \"As someone who knows a veterinarian very well, I understand what you mean by frenchies and their owners, who typically are the most challenging\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbicb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs someone who knows a veterinarian very well, I understand what you mean by frenchies and their owners, who typically are the most challenging\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"unpopularopinion\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/unpopularopinion/comments/evf7gg/keeping_your_pet_alive_long_after_its_having/ffvbicb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/unpopularopinion/comments/evf7gg/keeping_your_pet_alive_long_after_its_having/\", \"report_reasons\": null, \"link_author\": \"rehabforcandy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/unpopularopinion/comments/evf7gg/keeping_your_pet_alive_long_after_its_having/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/unpopularopinion\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[OC] Every night, my middle school son draws a new comic on his bedroom door white board. They're pretty funny, so I started taking pics and posting them to an Instagram account . Here's today's post.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evar91\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbic3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"supersnorkel\", \"num_comments\": 526, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbcfb\", \"score\": 1, \"author_fullname\": \"t2_bo9bq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"All artist take inspiration from others, not plagiarize the whole thing from 1 single source.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbic3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAll artist take inspiration from others, not plagiarize the whole thing from 1 single source.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"funny\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/evar91/oc_every_night_my_middle_school_son_draws_a_new/ffvbic3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/funny/comments/evar91/oc_every_night_my_middle_school_son_draws_a_new/\", \"report_reasons\": null, \"link_author\": \"alanstanwyk\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ym2drsy9tkd41.jpg\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"What isn\\u2019t illegal, but really ought to be?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eva97w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbic2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KhaoticArts\", \"num_comments\": 6900, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_eva97w\", \"score\": 1, \"author_fullname\": \"t2_xa7op\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh1i\", \"body\": \"Lobbying. \\n\\nLet\\u2019s have rich people be best buds with the people who make laws under the premise that they represent the lower classes interests. Everybody will buy into that.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbic2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELobbying. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s have rich people be best buds with the people who make laws under the premise that they represent the lower classes interests. Everybody will buy into that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"AskReddit\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/AskReddit/comments/eva97w/what_isnt_illegal_but_really_ought_to_be/ffvbic2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/AskReddit/comments/eva97w/what_isnt_illegal_but_really_ought_to_be/\", \"report_reasons\": null, \"link_author\": \"BrightTomatillo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/AskReddit/comments/eva97w/what_isnt_illegal_but_really_ought_to_be/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/AskReddit\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Houston business owners air frustration about break ins at meeting with police, Police Chief Acevado says you're on your own: \\\"Any time you have community members who show an interest in their own safety and an interest in what\\u2019s going on, that\\u2019s a win for everybody.\\u201d\\\"\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev7gey\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbic0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PelicanJack\", \"num_comments\": 77, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv76a1\", \"score\": 1, \"author_fullname\": \"t2_65uy7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qj1l\", \"body\": \"So I tell you that I think HPD are pleasant, professional, and courteous and you somehow misconstrue that into anti-HPD sentiment?\\n\\nMy opinion of Acevedo is based on first hand and off record statements from officers in Houston and Austin.\\n\\nAgree to disagree indeed\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbic0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I tell you that I think HPD are pleasant, professional, and courteous and you somehow misconstrue that into anti-HPD sentiment?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy opinion of Acevedo is based on first hand and off record statements from officers in Houston and Austin.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgree to disagree indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"houston\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/houston/comments/ev7gey/houston_business_owners_air_frustration_about/ffvbic0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/houston/comments/ev7gey/houston_business_owners_air_frustration_about/\", \"report_reasons\": null, \"link_author\": \"shiftpgdn\", \"author_flair_text\": null, \"link_url\": \"https://www.houstonchronicle.com/news/houston-texas/houston/article/It-s-ridiculous-Houston-business-owners-15009033.php\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/houston\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[CPU] [Microcenter] 2700x $149.99 2600 $99.99 3600 $159.99\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev23oz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbic4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WeeklyEstablishment\", \"num_comments\": 211, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_ev23oz\", \"score\": 1, \"author_fullname\": \"t2_1p8ewiqv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s3dh\", \"body\": \"Does it make sense to pair a ryzen 2700x with a X570 motherboard and upgrade to ryzen 4000 series in the future (like late 2021?)\\nThe 2700x is half the price of the 3700x and the performance difference doesn't seem that large.\\n\\nThe 3600 is probably the better deal but the stock cooler doesn't seem that good and it doesn't come with the free game.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbic4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes it make sense to pair a ryzen 2700x with a X570 motherboard and upgrade to ryzen 4000 series in the future (like late 2021?)\\nThe 2700x is half the price of the 3700x and the performance difference doesn\\u0026#39;t seem that large.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 3600 is probably the better deal but the stock cooler doesn\\u0026#39;t seem that good and it doesn\\u0026#39;t come with the free game.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"buildapcsales\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/buildapcsales/comments/ev23oz/cpu_microcenter_2700x_14999_2600_9999_3600_15999/ffvbic4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/buildapcsales/comments/ev23oz/cpu_microcenter_2700x_14999_2600_9999_3600_15999/\", \"report_reasons\": null, \"link_author\": \"patwrik\", \"author_flair_text\": null, \"link_url\": \"https://www.microcenter.com/search/search_results.aspx?N=4294966995+4294819840\\u0026page=1\\u0026sortby=pricelow\\u0026SortNow=Go\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/buildapcsales\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[EoE] Echoes of Eternity Pre-Order Bundle Available Today!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evbhnv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AlphaTenken\", \"num_comments\": 52, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv3zkp\", \"score\": 1, \"author_fullname\": \"t2_4w996cr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3byur\", \"body\": \"I think I understood it... but the wording could be interpreted many different ways.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think I understood it... but the wording could be interpreted many different ways.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"EternalCardGame\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/EternalCardGame/comments/evbhnv/eoe_echoes_of_eternity_preorder_bundle_available/ffvbibz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/EternalCardGame/comments/evbhnv/eoe_echoes_of_eternity_preorder_bundle_available/\", \"report_reasons\": null, \"link_author\": \"DireWolfDigital\", \"author_flair_text\": null, \"link_url\": \"https://www.direwolfdigital.com/news/echoes-of-eternity-pre-order-bundle/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/EternalCardGame\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"US' president's dismantling of environmental regulations unwinds 50 years of protections\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev6q0t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiby\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"strictlysales\", \"num_comments\": 643, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffvaavd\", \"score\": 1, \"author_fullname\": \"t2_k88w5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2t7no\", \"body\": \"What pile of evidence?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiby\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat pile of evidence?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"subreddit\": \"Futurology\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/Futurology/comments/ev6q0t/us_presidents_dismantling_of_environmental/ffvbiby/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Futurology/comments/ev6q0t/us_presidents_dismantling_of_environmental/\", \"report_reasons\": null, \"link_author\": \"V2O5\", \"author_flair_text\": null, \"link_url\": \"https://www.cnn.com/2020/01/25/politics/trump-environmental-rollbacks-list/index.html\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Futurology\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"One Upvote = 1 PushUp\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev4ua2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ApprehensiveBank7\", \"num_comments\": 202, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffu93ef\", \"score\": 1, \"author_fullname\": \"t2_5jboh0oa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3hapm\", \"body\": \"Upvoted! Can you please help me back upvoting my posts [HERE](http://dwz1.cc/F52bHRZZ) .. Thanks :D !!!\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpvoted! Can you please help me back upvoting my posts \\u003Ca href=\\\"http://dwz1.cc/F52bHRZZ\\\"\\u003EHERE\\u003C/a\\u003E .. Thanks :D !!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"FreeKarma4U\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/FreeKarma4U/comments/ev4ua2/one_upvote_1_pushup/ffvbibu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/FreeKarma4U/comments/ev4ua2/one_upvote_1_pushup/\", \"report_reasons\": null, \"link_author\": \"Coldwalk2\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/nhsco2nbhid41.jpg\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/FreeKarma4U\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Why are the left mad that joe rogan is voting for bernie\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eve3uv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lamhambam\", \"num_comments\": 17, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffvawtq\", \"score\": 1, \"author_fullname\": \"t2_4xlhukfw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2w844\", \"body\": \"He stated that a man should not fight among women in the UFC. That apparently is considered transphobic.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe stated that a man should not fight among women in the UFC. That apparently is considered transphobic.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"NoStupidQuestions\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/NoStupidQuestions/comments/eve3uv/why_are_the_left_mad_that_joe_rogan_is_voting_for/ffvbibw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/NoStupidQuestions/comments/eve3uv/why_are_the_left_mad_that_joe_rogan_is_voting_for/\", \"report_reasons\": null, \"link_author\": \"MasterVVS\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/NoStupidQuestions/comments/eve3uv/why_are_the_left_mad_that_joe_rogan_is_voting_for/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/NoStupidQuestions\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"What isn\\u2019t illegal, but really ought to be?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eva97w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MsShevy\", \"num_comments\": 6900, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_eva97w\", \"score\": 1, \"author_fullname\": \"t2_g9svo48\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh1i\", \"body\": \"Firing you wrongfully, but still paying your insurance because you have cancer, but only if you sign this paper saying you won't sue us.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFiring you wrongfully, but still paying your insurance because you have cancer, but only if you sign this paper saying you won\\u0026#39;t sue us.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"AskReddit\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/AskReddit/comments/eva97w/what_isnt_illegal_but_really_ought_to_be/ffvbibr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/AskReddit/comments/eva97w/what_isnt_illegal_but_really_ought_to_be/\", \"report_reasons\": null, \"link_author\": \"BrightTomatillo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/AskReddit/comments/eva97w/what_isnt_illegal_but_really_ought_to_be/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/AskReddit\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Transformers Decepticon Phantomstrike Squadron is back! $150 on eBay, no thank you! Get those Seekers!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_evc3fh\", \"author_flair_template_id\": \"2e7c77d8-b6ef-11e9-83e8-0e48fc5109d0\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SoundwavesBurnerPage\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbg7k\", \"score\": 1, \"author_fullname\": \"t2_55nda7z4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh5t\", \"body\": \"Good luck with it\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"a\": \":decepticon_flair:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/ijd5xlgf2cf31_t5_2qh5t/decepticon_flair\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood luck with it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"transformers\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/transformers/comments/evc3fh/transformers_decepticon_phantomstrike_squadron_is/ffvbibn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/transformers/comments/evc3fh/transformers_decepticon_phantomstrike_squadron_is/\", \"report_reasons\": null, \"link_author\": \"BongoFett17\", \"author_flair_text\": \":decepticon_flair:\", \"link_url\": \"https://www.amazon.com/dp/B07NZ86GJP/ref=cm_sw_r_cp_api_i_dJkmEb00MFV8H\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/transformers\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"transparent\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Legit check on this Kobe?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf1qd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yahirf54i\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t3_evf1qd\", \"score\": 1, \"author_fullname\": \"t2_4zsd34vp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_32zkb\", \"body\": \"Here's the listing. \\n\\nOfferUp https://offerup.co/CddzEknaD3\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the listing. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOfferUp \\u003Ca href=\\\"https://offerup.co/CddzEknaD3\\\"\\u003Ehttps://offerup.co/CddzEknaD3\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"basketballjerseys\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/basketballjerseys/comments/evf1qd/legit_check_on_this_kobe/ffvbibm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/basketballjerseys/comments/evf1qd/legit_check_on_this_kobe/\", \"report_reasons\": null, \"link_author\": \"yahirf54i\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/basketballjerseys/comments/evf1qd/legit_check_on_this_kobe/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/basketballjerseys\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Hello guys, last week I realesed an album on Spotify, it's a combination of melodic sound's, trap, lo-fi- hip-hop style. I'm looking for some advice to build a fan base, please give me your feedback. Best wishes UuU\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev2if0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Da_Sama\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv5ofu\", \"score\": 1, \"author_fullname\": \"t2_3qyzmjck\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2uc06\", \"body\": \"Hello my friend, thanks for your comments, I was listening to your music, and it's pretty awesome.\\n\\nMy favorite songs where \\\"You Know\\\" and \\\"No surprise\\\" c; \\n\\nI liked your style and the chill vibes, I would share your work with some of my friends UuU \\n\\nBest Regards o/\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello my friend, thanks for your comments, I was listening to your music, and it\\u0026#39;s pretty awesome.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy favorite songs where \\u0026quot;You Know\\u0026quot; and \\u0026quot;No surprise\\u0026quot; c; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI liked your style and the chill vibes, I would share your work with some of my friends UuU \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBest Regards o/\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"shareyourmusic\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/shareyourmusic/comments/ev2if0/hello_guys_last_week_i_realesed_an_album_on/ffvbibl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/shareyourmusic/comments/ev2if0/hello_guys_last_week_i_realesed_an_album_on/\", \"report_reasons\": null, \"link_author\": \"Da_Sama\", \"author_flair_text\": null, \"link_url\": \"https://open.spotify.com/album/3s2OvaqbZNsARVwSKVbN53?si=2Xwbk9K8St6Izg_QCgPG_w\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/shareyourmusic\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Who is the best mage and why is it Dorothea?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evehpe\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eradzion\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1580260219.0, \"send_replies\": true, \"parent_id\": \"t1_ffv8trh\", \"score\": 1, \"author_fullname\": \"t2_106mbupn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_kcm0c\", \"body\": \"Constance?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConstance?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"FireEmblemThreeHouses\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/FireEmblemThreeHouses/comments/evehpe/who_is_the_best_mage_and_why_is_it_dorothea/ffvbibh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/FireEmblemThreeHouses/comments/evehpe/who_is_the_best_mage_and_why_is_it_dorothea/\", \"report_reasons\": null, \"link_author\": \"ZombieCardio\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/FireEmblemThreeHouses/comments/evehpe/who_is_the_best_mage_and_why_is_it_dorothea/\", \"created\": 1580289019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/FireEmblemThreeHouses\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Trump praises Pompeo for confrontation with NPR reporter: 'You did a good job on her': The secretary of state reportedly exploded at NPR's Mary Louise Kelly after she asked probing questions about Ukraine\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev9u3v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedCheezer\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_ev9u3v\", \"score\": 1, \"author_fullname\": \"t2_shq3mi7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_39usd\", \"body\": \"Pompeo and trump think a question by a reporter is too much but an whole investigation of a political opponent is ok?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPompeo and trump think a question by a reporter is too much but an whole investigation of a political opponent is ok?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"EnoughTrumpSpam\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/EnoughTrumpSpam/comments/ev9u3v/trump_praises_pompeo_for_confrontation_with_npr/ffvbibg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/EnoughTrumpSpam/comments/ev9u3v/trump_praises_pompeo_for_confrontation_with_npr/\", \"report_reasons\": null, \"link_author\": \"DoremusJessup\", \"author_flair_text\": null, \"link_url\": \"https://www.politico.com/news/2020/01/28/trump-praises-pompeo-npr-confrontation-107754\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/EnoughTrumpSpam\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Okay, I don't often make posts like this, but not winning when our stars are injured doesn't mean we don't have depth.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf1y2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BlazeOfGlory72\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvba4p\", \"score\": 1, \"author_fullname\": \"t2_uecc5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2r10m\", \"body\": \"No, but neither we ours. Domi and Tatar (or two top scorers last season) haven\\u2019t missed a game this season.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, but neither we ours. Domi and Tatar (or two top scorers last season) haven\\u2019t missed a game this season.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Habs\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/Habs/comments/evf1y2/okay_i_dont_often_make_posts_like_this_but_not/ffvbibf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Habs/comments/evf1y2/okay_i_dont_often_make_posts_like_this_but_not/\", \"report_reasons\": null, \"link_author\": \"caspercunningham\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/Habs/comments/evf1y2/okay_i_dont_often_make_posts_like_this_but_not/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Habs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Those feels!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev6qsg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SemperWolf21\", \"num_comments\": 39, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_ev6qsg\", \"score\": 1, \"author_fullname\": \"t2_dhmpc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2smw0\", \"body\": \"Can confirm. I Live in California\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan confirm. I Live in California\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"bartenders\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/bartenders/comments/ev6qsg/those_feels/ffvbibe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/bartenders/comments/ev6qsg/those_feels/\", \"report_reasons\": null, \"link_author\": \"MerchantOVenice\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/2wnrmwrvbjd41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/bartenders\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Chris Brown calls Ailee a Cornball after backtracking on her photo with him. Ailee backtracked and edited the caption, saying she had no idea of Chris Brown's violent history, Chris Brown commented \\\"CORNBALL\\\" on the post\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev9fpg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbibb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"she_sus\", \"num_comments\": 226, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffv22r4\", \"score\": 1, \"author_fullname\": \"t2_23z593kl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2r1ox\", \"body\": \"He\\u2019s a dumbass because he\\u2019s a known abuser and shitty human being.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbibb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe\\u2019s a dumbass because he\\u2019s a known abuser and shitty human being.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"subreddit\": \"kpop\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/kpop/comments/ev9fpg/chris_brown_calls_ailee_a_cornball_after/ffvbibb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/kpop/comments/ev9fpg/chris_brown_calls_ailee_a_cornball_after/\", \"report_reasons\": null, \"link_author\": \"ghytgh\", \"author_flair_text\": null, \"link_url\": \"https://www.allkpop.com/article/2020/01/chris-brown-calls-ailee-a-cornball-after-backtracking-on-her-photo-with-him\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/kpop\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Do your worse beautiful ppl\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evesux\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbib9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-Knight_In_Black\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbfuh\", \"score\": 1, \"author_fullname\": \"t2_shfcitv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_37xo2\", \"body\": \"Hey man i always keep an open mind ;) haha\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbib9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey man i always keep an open mind ;) haha\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"RoastMe\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/RoastMe/comments/evesux/do_your_worse_beautiful_ppl/ffvbib9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/RoastMe/comments/evesux/do_your_worse_beautiful_ppl/\", \"report_reasons\": null, \"link_author\": \"-Knight_In_Black\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/oaroo5jf5md41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/RoastMe\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Official FIRST Discussion Thread\\u2014Volume 7, Episode 12: With Friends Like These\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_etsqfi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbib5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Azira-Arias\", \"num_comments\": 6303, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffj3mh1\", \"score\": 1, \"author_fullname\": \"t2_9b9n3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2vhg0\", \"body\": \"Qrow is not gun shy, but he was willing to put diplomacy first. That's a move only a painfully sober Qrow could make.\\n\\nIf anyone thinks he isn't relapsing into alcoholism and shouting at Robyn after this, they're kidding themselves. Robyn kick-started the fight, Qrow was completely reactionary in this whole situation, and he's going to make sure she knows about it.\\n\\nAfter all the shit he's put up with these past seasons, he's gonna need a drink.\\n\\n...\\n\\nI need a drink.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbib5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQrow is not gun shy, but he was willing to put diplomacy first. That\\u0026#39;s a move only a painfully sober Qrow could make.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf anyone thinks he isn\\u0026#39;t relapsing into alcoholism and shouting at Robyn after this, they\\u0026#39;re kidding themselves. Robyn kick-started the fight, Qrow was completely reactionary in this whole situation, and he\\u0026#39;s going to make sure she knows about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter all the shit he\\u0026#39;s put up with these past seasons, he\\u0026#39;s gonna need a drink.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI need a drink.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"RWBY\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/RWBY/comments/etsqfi/official_first_discussion_threadvolume_7_episode/ffvbib5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/RWBY/comments/etsqfi/official_first_discussion_threadvolume_7_episode/\", \"report_reasons\": null, \"link_author\": \"Anti_Logic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/RWBY/comments/etsqfi/official_first_discussion_threadvolume_7_episode/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/RWBY\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Who is your favorite deceased musician?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evb9ef\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbib3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ItzCrimsin\", \"num_comments\": 51, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_evb9ef\", \"score\": 1, \"author_fullname\": \"t2_8lcf5b3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh1i\", \"body\": \"Juice weld and Freddie Mercury \\n\\n\\nX and John Lennon to\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbib3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJuice weld and Freddie Mercury \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EX and John Lennon to\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"AskReddit\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/AskReddit/comments/evb9ef/who_is_your_favorite_deceased_musician/ffvbib3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/AskReddit/comments/evb9ef/who_is_your_favorite_deceased_musician/\", \"report_reasons\": null, \"link_author\": \"748532894325\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/AskReddit/comments/evb9ef/who_is_your_favorite_deceased_musician/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/AskReddit\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"What Are Your Moves Tomorrow, January 29\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evbl8h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbib1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GreyGoosez\", \"num_comments\": 4206, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_evbl8h\", \"score\": 1, \"author_fullname\": \"t2_1wcu55ov\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2th52\", \"body\": \"Baba Puts can\\u2019t wait till Tomorrow \\ud83e\\udd24\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbib1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBaba Puts can\\u2019t wait till Tomorrow \\ud83e\\udd24\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"wallstreetbets\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/wallstreetbets/comments/evbl8h/what_are_your_moves_tomorrow_january_29/ffvbib1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/wallstreetbets/comments/evbl8h/what_are_your_moves_tomorrow_january_29/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/wallstreetbets/comments/evbl8h/what_are_your_moves_tomorrow_january_29/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/wallstreetbets\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Uh oh.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev8stj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiaz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"markymerk\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_ev8stj\", \"score\": 1, \"author_fullname\": \"t2_14icg5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3i60n\", \"body\": \"Literally listening to joe rogan right now\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiaz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELiterally listening to joe rogan right now\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"PrequelMemes\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/PrequelMemes/comments/ev8stj/uh_oh/ffvbiaz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PrequelMemes/comments/ev8stj/uh_oh/\", \"report_reasons\": null, \"link_author\": \"Aclonecommando\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/jtq6hf715kd41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PrequelMemes\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Neighbours\\u2019 response to my Dad\\u2019s kind gesture.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf8mt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiax\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cody_ugly\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbfat\", \"score\": 1, \"author_fullname\": \"t2_8hphb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2uao3\", \"body\": \"Yeah, is this like a running series that I've missed?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiax\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, is this like a running series that I\\u0026#39;ve missed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"trashy\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/trashy/comments/evf8mt/neighbours_response_to_my_dads_kind_gesture/ffvbiax/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/trashy/comments/evf8mt/neighbours_response_to_my_dads_kind_gesture/\", \"report_reasons\": null, \"link_author\": \"HilaKleiners\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/rhx7hew0bmd41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/trashy\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"AP source: McConnell says he can\\u2019t yet block new witnesses\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evdx12\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiaw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ThatDamnFrank\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffv888y\", \"score\": 1, \"author_fullname\": \"t2_44aap1fj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2cneq\", \"body\": \"Well, you know the drill. /s\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiaw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, you know the drill. /s\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"politics\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/politics/comments/evdx12/ap_source_mcconnell_says_he_cant_yet_block_new/ffvbiaw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/politics/comments/evdx12/ap_source_mcconnell_says_he_cant_yet_block_new/\", \"report_reasons\": null, \"link_author\": \"jms1225\", \"author_flair_text\": null, \"link_url\": \"https://www.wtnh.com/news/ap-source-mcconnell-says-he-cant-yet-block-new-witnesses/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/politics\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"\\\"Focal Fossa\\\". Inspired by Ubuntu release20.04 LTS. Created with Krita.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev8dl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiau\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomster2300\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_ev8dl7\", \"score\": 1, \"author_fullname\": \"t2_gid9q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh62\", \"body\": \"I\\u2019m on my iPad and can\\u2019t really check. Is there a 3440x1440 version? If not, could there be? \\ud83d\\ude09\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiau\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019m on my iPad and can\\u2019t really check. Is there a 3440x1440 version? If not, could there be? \\ud83d\\ude09\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Ubuntu\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/Ubuntu/comments/ev8dl7/focal_fossa_inspired_by_ubuntu_release2004_lts/ffvbiau/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Ubuntu/comments/ev8dl7/focal_fossa_inspired_by_ubuntu_release2004_lts/\", \"report_reasons\": null, \"link_author\": \"faith303\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/Ubuntu/comments/ev8dl7/focal_fossa_inspired_by_ubuntu_release2004_lts/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Ubuntu\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Met Edge at the airport\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evbdpt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiav\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"brucevilletti\", \"num_comments\": 88, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvau83\", \"score\": 1, \"author_fullname\": \"t2_14str2vr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rau9\", \"body\": \"I asked if he was Edge and he said, \\\"Yes, I am.\\\" We talked for about two minutes about Asheville. Didn't know we lived in the same place. I told him that I didn't want to keep him, thanked him for the time he talked to me and asked for a pic. \\n\\nI walked by him by baggage claim. Beth Phoenix was there with their girls to pick him up. It was nice seeing them be parents and partners.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiav\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI asked if he was Edge and he said, \\u0026quot;Yes, I am.\\u0026quot; We talked for about two minutes about Asheville. Didn\\u0026#39;t know we lived in the same place. I told him that I didn\\u0026#39;t want to keep him, thanked him for the time he talked to me and asked for a pic. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI walked by him by baggage claim. Beth Phoenix was there with their girls to pick him up. It was nice seeing them be parents and partners.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"WWE\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/WWE/comments/evbdpt/met_edge_at_the_airport/ffvbiav/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/WWE/comments/evbdpt/met_edge_at_the_airport/\", \"report_reasons\": null, \"link_author\": \"brucevilletti\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/y50goao21ld41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/WWE\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"James Ducker responding to a question about any further United transfer business: \\\"They\\u2019re still looking for a striker mate. Don\\u2019t know at this stage if they\\u2019re going to get someone in. Time running out\\\"\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"removal_reason\": null, \"link_id\": \"t3_evcqs5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbias\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CapVosslar\", \"num_comments\": 52, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffuvybi\", \"score\": 1, \"author_fullname\": \"t2_3w5a0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rxse\", \"body\": \"I read Slimani and I think we need Fergie to come back and save this club.\", \"edited\": false, \"author_flair_css_class\": \"25\", \"name\": \"t1_ffvbias\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"Tony The Tiger\"}], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI read Slimani and I think we need Fergie to come back and save this club.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"reddevils\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/reddevils/comments/evcqs5/james_ducker_responding_to_a_question_about_any/ffvbias/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/reddevils/comments/evcqs5/james_ducker_responding_to_a_question_about_any/\", \"report_reasons\": null, \"link_author\": \"ClogBriste\", \"author_flair_text\": \"Tony The Tiger\", \"link_url\": \"https://twitter.com/TelegraphDucker/status/1222280112017760256?s=19\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/reddevils\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Goodbye Resisitance and thank you\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eujb8e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiao\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DogmaticCat\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_eujb8e\", \"score\": 1, \"author_fullname\": \"t2_4lgdq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_ge6kz\", \"body\": \"Eh, I honestly never could get into it. Glad there are those out there who enjoyed it though!\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiao\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEh, I honestly never could get into it. Glad there are those out there who enjoyed it though!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"StarWarsCantina\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/StarWarsCantina/comments/eujb8e/goodbye_resisitance_and_thank_you/ffvbiao/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/StarWarsCantina/comments/eujb8e/goodbye_resisitance_and_thank_you/\", \"report_reasons\": null, \"link_author\": \"JarrettTheGuy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/StarWarsCantina/comments/eujb8e/goodbye_resisitance_and_thank_you/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/StarWarsCantina\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"[CA] ESA dog new job won't allow him\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf2ly\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbial\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Purple82Hue\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvb8px\", \"score\": 1, \"author_fullname\": \"t2_z7cnb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rawz\", \"body\": \"Please show where Ca law disagrees with this? https://www.dor.ca.gov/Content/DorIncludes/documents/DisabilityAccessServices/DFEH%20ADA%20Comparison%20regarding%20Service%20Animals%20Laws.pdf\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbial\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPlease show where Ca law disagrees with this? \\u003Ca href=\\\"https://www.dor.ca.gov/Content/DorIncludes/documents/DisabilityAccessServices/DFEH%20ADA%20Comparison%20regarding%20Service%20Animals%20Laws.pdf\\\"\\u003Ehttps://www.dor.ca.gov/Content/DorIncludes/documents/DisabilityAccessServices/DFEH%20ADA%20Comparison%20regarding%20Service%20Animals%20Laws.pdf\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"legaladvice\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/legaladvice/comments/evf2ly/ca_esa_dog_new_job_wont_allow_him/ffvbial/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/legaladvice/comments/evf2ly/ca_esa_dog_new_job_wont_allow_him/\", \"report_reasons\": null, \"link_author\": \"ESAPerson\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/legaladvice/comments/evf2ly/ca_esa_dog_new_job_wont_allow_him/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/legaladvice\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"I found this bent pretzel stick.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evdhgh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiak\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rob_Afton\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_evdhgh\", \"score\": 1, \"author_fullname\": \"t2_3r4ncbhc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rjli\", \"body\": \"Boomerang\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiak\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBoomerang\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"teenagers\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/teenagers/comments/evdhgh/i_found_this_bent_pretzel_stick/ffvbiak/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/teenagers/comments/evdhgh/i_found_this_bent_pretzel_stick/\", \"report_reasons\": null, \"link_author\": \"DabbingCats2005\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/djiw35jhpld41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/teenagers\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"I see you bro\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev7h3u\", \"author_flair_template_id\": \"b8be9678-0013-11e2-99fc-12313d28169d\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiaj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Juanmiller04\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffu8pdk\", \"score\": 1, \"author_fullname\": \"t2_d63in\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s2av\", \"body\": \"Cactus plant flea market hat v expensive\", \"edited\": false, \"author_flair_css_class\": \"4\", \"name\": \"t1_ffvbiaj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECactus plant flea market hat v expensive\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"nyjets\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/nyjets/comments/ev7h3u/i_see_you_bro/ffvbiaj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/nyjets/comments/ev7h3u/i_see_you_bro/\", \"report_reasons\": null, \"link_author\": \"rustyshackelferd3\", \"author_flair_text\": \"\", \"link_url\": \"https://i.redd.it/f4kvhitinjd41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/nyjets\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"am i being trolled?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evehe2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiah\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Tharatan\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_evehe2\", \"score\": 1, \"author_fullname\": \"t2_100bhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3onpu\", \"body\": \"Umm, the \\u201csell crude oil\\u201d is a buyer - it\\u2019s referring to YOU being able to sell crude there. If you look at the diesel pump icon, it will say \\u201cbuy diesel\\u201d...\\n\\nThe refinery island does actually work.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiah\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUmm, the \\u201csell crude oil\\u201d is a buyer - it\\u2019s referring to YOU being able to sell crude there. If you look at the diesel pump icon, it will say \\u201cbuy diesel\\u201d...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe refinery island does actually work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"Stormworks\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/Stormworks/comments/evehe2/am_i_being_trolled/ffvbiah/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/Stormworks/comments/evehe2/am_i_being_trolled/\", \"report_reasons\": null, \"link_author\": \"m2ron\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/Stormworks/comments/evehe2/am_i_being_trolled/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/Stormworks\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Two things that won't ever work together. Bring some bleach, just in case.\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev5uc9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiag\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BonElectric\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_ev5uc9\", \"score\": 1, \"author_fullname\": \"t2_4v4jrfcq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_10tyvc\", \"body\": \"WILLIAM DOESNT CARE ABOUT HIS CHILDREN WTF\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiag\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWILLIAM DOESNT CARE ABOUT HIS CHILDREN WTF\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"GachaLifeCringe\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/GachaLifeCringe/comments/ev5uc9/two_things_that_wont_ever_work_together_bring/ffvbiag/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/GachaLifeCringe/comments/ev5uc9/two_things_that_wont_ever_work_together_bring/\", \"report_reasons\": null, \"link_author\": \"denis_lbbh\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ph60le35yid41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/GachaLifeCringe\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Wonder how many dates she got :(\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf5fh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbia9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"soeonehhh\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvaw9w\", \"score\": 1, \"author_fullname\": \"t2_3yi0k1dt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2wsc9\", \"body\": \"Can\\u2019t blame her lol\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbia9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan\\u2019t blame her lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"sadcringe\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/sadcringe/comments/evf5fh/wonder_how_many_dates_she_got/ffvbia9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/sadcringe/comments/evf5fh/wonder_how_many_dates_she_got/\", \"report_reasons\": null, \"link_author\": \"soeonehhh\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/bpizsomx9md41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/sadcringe\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Majority Report and Sam Seder say Rogan is \\\"problematic and bigoted\\\" for not wanting to support trans conversion therapy for little kids\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev46tz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbia8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BloodsVsCrips\", \"num_comments\": 759, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvaig7\", \"score\": 1, \"author_fullname\": \"t2_ehw347n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2thqg\", \"body\": \"\\u003E Because I disagree with you.\\n\\nDemonstrate how Rogan quietly removing old content is the equivalent to \\\"deradicalizing\\\" personally.\\n\\n\\u003E Henry Kissinger is a war criminal, and Joe Rogan is not.\\n\\nI'm aware, but thanks. The logic still holds. And you're now playing the same deontological game you just got done criticizing. What do you call someone who encourages discrimination towards trans people, a group that faces the risk of physical harm/death at higher rates than any other demographic in society?\\n\\n\\u003E And I'm telling you this doesn't matter. Roomfuls of people who are not personally racist have crafted and implemented policies that killed millions of brown people.\\n\\nI literally just got done saying systems matter more than individual intentions. How you managed to reverse that to mean the opposite of what it said is beyond me.\\n\\n\\u003E fucking podcast\\n\\nThe \\\"system\\\" in this case is promoting Rogan's endorsement. \\n\\n\\u003E You're a Warren supporter.\\n\\nCompared to whom? I was a much bigger fan of Castro than Warren precisely because his focus was so driven by systemic analysis of poverty, housing, and immigration. And most importantly, because he had on the ground experience addressing housing. Speaking of systems, Warren was much more effective during the financial crisis than Bernie.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbia8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBecause I disagree with you.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDemonstrate how Rogan quietly removing old content is the equivalent to \\u0026quot;deradicalizing\\u0026quot; personally.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EHenry Kissinger is a war criminal, and Joe Rogan is not.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware, but thanks. The logic still holds. And you\\u0026#39;re now playing the same deontological game you just got done criticizing. What do you call someone who encourages discrimination towards trans people, a group that faces the risk of physical harm/death at higher rates than any other demographic in society?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAnd I\\u0026#39;m telling you this doesn\\u0026#39;t matter. Roomfuls of people who are not personally racist have crafted and implemented policies that killed millions of brown people.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI literally just got done saying systems matter more than individual intentions. How you managed to reverse that to mean the opposite of what it said is beyond me.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Efucking podcast\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe \\u0026quot;system\\u0026quot; in this case is promoting Rogan\\u0026#39;s endorsement. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou\\u0026#39;re a Warren supporter.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECompared to whom? I was a much bigger fan of Castro than Warren precisely because his focus was so driven by systemic analysis of poverty, housing, and immigration. And most importantly, because he had on the ground experience addressing housing. Speaking of systems, Warren was much more effective during the financial crisis than Bernie.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"samharris\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/samharris/comments/ev46tz/majority_report_and_sam_seder_say_rogan_is/ffvbia8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/samharris/comments/ev46tz/majority_report_and_sam_seder_say_rogan_is/\", \"report_reasons\": null, \"link_author\": \"Supernova5\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/samharris/comments/ev46tz/majority_report_and_sam_seder_say_rogan_is/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/samharris\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"I work in a textile Mill, and I get to run rampant and create my own beautiful yarns \\u2764\\ufe0f This range is pure merino, but my first love will always be angora\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_eva9j6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiaa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SquintyBubbles\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t3_eva9j6\", \"score\": 1, \"author_fullname\": \"t2_3kz01094\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2t1hd\", \"body\": \"And where might one purchase this yarn from? It's absolutely beautiful.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiaa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd where might one purchase this yarn from? It\\u0026#39;s absolutely beautiful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"YarnAddicts\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/YarnAddicts/comments/eva9j6/i_work_in_a_textile_mill_and_i_get_to_run_rampant/ffvbiaa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/YarnAddicts/comments/eva9j6/i_work_in_a_textile_mill_and_i_get_to_run_rampant/\", \"report_reasons\": null, \"link_author\": \"isaiddanger\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/k6tvgd2bnkd41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/YarnAddicts\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Weekly Commanders Lounge - January 28, 2020\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev2pvc\", \"author_flair_template_id\": \"f2e0e5b0-52cd-11e7-a331-0e37a423ca08\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbia7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kipdid\", \"num_comments\": 189, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffuyno3\", \"score\": 1, \"author_fullname\": \"t2_vkgku\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3fqx5\", \"body\": \"Additionally, once the next event drops we\\u2019ll have mods for SOPMOD, 45, NTW, and one other doll they\\u2019ve yet to reveal yet\", \"edited\": false, \"author_flair_css_class\": \"two-142---FN57\", \"name\": \"t1_ffvbia7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdditionally, once the next event drops we\\u2019ll have mods for SOPMOD, 45, NTW, and one other doll they\\u2019ve yet to reveal yet\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"girlsfrontline\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/girlsfrontline/comments/ev2pvc/weekly_commanders_lounge_january_28_2020/ffvbia7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/girlsfrontline/comments/ev2pvc/weekly_commanders_lounge_january_28_2020/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"Best smug handgun\", \"link_url\": \"https://www.reddit.com/r/girlsfrontline/comments/ev2pvc/weekly_commanders_lounge_january_28_2020/\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/girlsfrontline\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"First Poster for 'Fast and Furious 9'\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev85bk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbia6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"78trans-am\", \"num_comments\": 3011, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbbhj\", \"score\": 1, \"author_fullname\": \"t2_33gvr57v\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh3s\", \"body\": \"Huh, thanks for the info. I don't remember that part so it must be time for a rewatch\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbia6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHuh, thanks for the info. I don\\u0026#39;t remember that part so it must be time for a rewatch\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"movies\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/movies/comments/ev85bk/first_poster_for_fast_and_furious_9/ffvbia6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/movies/comments/ev85bk/first_poster_for_fast_and_furious_9/\", \"report_reasons\": null, \"link_author\": \"Niyazali_Haneef\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vr5dh1qfwjd41.jpg\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/movies\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"\\\"Did you sleep with your goddamn teacher?\\\"\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_euxe5p\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbia5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SemiSeriousSam\", \"num_comments\": 349, \"can_mod_post\": false, \"created_utc\": 1580260218.0, \"send_replies\": true, \"parent_id\": \"t1_ffv6lnp\", \"score\": 1, \"author_fullname\": \"t2_53jj4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3n7fs\", \"body\": \"Have you ever tried to enlighten someone without condemning them? Maybe take the time to explain WHY they may be mistaken? Of course not you don't give a shit about 'education'. You just care about condemnation.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbia5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you ever tried to enlighten someone without condemning them? Maybe take the time to explain WHY they may be mistaken? Of course not you don\\u0026#39;t give a shit about \\u0026#39;education\\u0026#39;. You just care about condemnation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"perfectlycutscreams\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/perfectlycutscreams/comments/euxe5p/did_you_sleep_with_your_goddamn_teacher/ffvbia5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/perfectlycutscreams/comments/euxe5p/did_you_sleep_with_your_goddamn_teacher/\", \"report_reasons\": null, \"link_author\": \"melinski\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/t79vmce4ued41\", \"created\": 1580289018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/perfectlycutscreams\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_ffvbia5\", \"before\": null}}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "232523" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Date": [ + "Wed, 29 Jan 2020 01:10:24 GMT" + ], + "Server": [ + "snooserv" + ], + "Strict-Transport-Security": [ + "max-age=15552000; includeSubDomains; preload" + ], + "Vary": [ + "accept-encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "MISS" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Moose": [ + "majestic" + ], + "X-Served-By": [ + "cache-lga21932-LGA" + ], + "X-Timer": [ + "S1580260224.847974,VS0,VE982" + ], + "access-control-allow-origin": [ + "*" + ], + "access-control-expose-headers": [ + "X-Moose" + ], + "cache-control": [ + "max-age=0, must-revalidate" + ], + "set-cookie": [ + "loid=00000000005juzy2r2.2.1580260223682.Z0FBQUFBQmVNTnVBMGh4ZW1DTmNYNWlJZEpWOWY1OGp5cEVJalBJcm94WGM2QkIycnB2ZmRQZ1dxLUQ1bmN5eU00TzJzVjY0Y1dwTDFNcHFmbl8wM0E5eW5oRDhTMjRTNE90V3VtSE9yekxndDBrSVRGUVFCN0c3S2FPbDlLLVZ2OVJMTm5lRTlvYlE; Domain=reddit.com; Max-Age=63071999; Path=/; expires=Fri, 28-Jan-2022 01:10:24 GMT; secure", + "session_tracker=sCJzQeuAO9jqJy2lLh.0.1580260223873.Z0FBQUFBQmVNTnVBUGVrMzhkeklyUUNkUTZYYXdrZjFkU2hfYVdrWW9HeGpUZmVaR2hNNExMYm5nSmdjTnA5WEJBOXFNYi1MU2ZzQ1dyRDB3RVBmRERiN3B4a1kzZkl1RWhXMFZSSWJ1M2hSTVJ6aElPRVlMTmhaNEZ4RGZMbmZ5TkdOQUFHQXdhQUE; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 29-Jan-2020 03:10:24 GMT; secure" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "x-ua-compatible": [ + "IE=edge" + ], + "x-xss-protection": [ + "1; mode=block" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/r/all/comments/?limit=100&raw_json=1" + } + }, + { + "recorded_at": "2020-01-29T01:10:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "edgebucket=os7RzORyXqYLeudWXT; loid=00000000005juzy2r2.2.1580260223682.Z0FBQUFBQmVNTnVBMGh4ZW1DTmNYNWlJZEpWOWY1OGp5cEVJalBJcm94WGM2QkIycnB2ZmRQZ1dxLUQ1bmN5eU00TzJzVjY0Y1dwTDFNcHFmbl8wM0E5eW5oRDhTMjRTNE90V3VtSE9yekxndDBrSVRGUVFCN0c3S2FPbDlLLVZ2OVJMTm5lRTlvYlE; session_tracker=sCJzQeuAO9jqJy2lLh.0.1580260223873.Z0FBQUFBQmVNTnVBUGVrMzhkeklyUUNkUTZYYXdrZjFkU2hfYVdrWW9HeGpUZmVaR2hNNExMYm5nSmdjTnA5WEJBOXFNYi1MU2ZzQ1dyRDB3RVBmRERiN3B4a1kzZkl1RWhXMFZSSWJ1M2hSTVJ6aElPRVlMTmhaNEZ4RGZMbmZ5TkdOQUFHQXdhQUE" + ], + "User-Agent": [ + " PRAW/7.0.0.dev0 prawcore/1.0.1" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/r/all/comments/?before=t1_ffvbii9&limit=100&raw_json=1" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": 8, \"children\": [{\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Finding a way to turn everything into attention towards #justbootthings\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evc8ze\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbim4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Hobo_Helper_hot\", \"num_comments\": 115, \"can_mod_post\": false, \"created_utc\": 1580260224.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbgks\", \"score\": 1, \"author_fullname\": \"t2_y95nr2e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3foz6\", \"body\": \"That's because they all died from old age in the break room.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbim4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s because they all died from old age in the break room.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"JustBootThings\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/JustBootThings/comments/evc8ze/finding_a_way_to_turn_everything_into_attention/ffvbim4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/JustBootThings/comments/evc8ze/finding_a_way_to_turn_everything_into_attention/\", \"report_reasons\": null, \"link_author\": \"ihopehellhasinternet\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wi15kxydbld41.jpg\", \"created\": 1580289024.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/JustBootThings\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"\\u201cHe was my hero,\\u201d Jayson Tatum says of Kobe. \\u201cThe reason I started playing basketball.\\u201d\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ev78n5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbilg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"toothlesswonder321\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1580260223.0, \"send_replies\": true, \"parent_id\": \"t1_ffuk6i9\", \"score\": 1, \"author_fullname\": \"t2_1hvq5ck\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qmkf\", \"body\": \"I don\\u2019t think anyone has said that he was a great person in all the tributes I\\u2019ve seen. But his story is one of redemption: a great player who fell from grace; he made mistakes, learned from them, and worked to better his life, his family\\u2019s, and the people around him. I think his story is one to be celebrated.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbilg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u2019t think anyone has said that he was a great person in all the tributes I\\u2019ve seen. But his story is one of redemption: a great player who fell from grace; he made mistakes, learned from them, and worked to better his life, his family\\u2019s, and the people around him. I think his story is one to be celebrated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"bostonceltics\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/bostonceltics/comments/ev78n5/he_was_my_hero_jayson_tatum_says_of_kobe_the/ffvbilg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/bostonceltics/comments/ev78n5/he_was_my_hero_jayson_tatum_says_of_kobe_the/\", \"report_reasons\": null, \"link_author\": \"horseshoeoverlook\", \"author_flair_text\": null, \"link_url\": \"https://twitter.com/celtics/status/1222186563859251200?s=19\", \"created\": 1580289023.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/bostonceltics\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Empire-Market-Link-Empire-Market-Links-Empire-Market-URL-Empire-Market-URLS\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evel55\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbikz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ApprehensiveBank7\", \"num_comments\": 1012, \"can_mod_post\": false, \"created_utc\": 1580260223.0, \"send_replies\": true, \"parent_id\": \"t3_evel55\", \"score\": 1, \"author_fullname\": \"t2_5jboh0oa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2e23g0\", \"body\": \"If anything is possible, is it possible for something to be impossible?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbikz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf anything is possible, is it possible for something to be impossible?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"u_PuzzleheadedMixture4\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/u_PuzzleheadedMixture4/comments/evel55/empiremarketlinkempiremarketlinksempiremarketurlem/ffvbikz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/u_PuzzleheadedMixture4/comments/evel55/empiremarketlinkempiremarketlinksempiremarketurlem/\", \"report_reasons\": null, \"link_author\": \"PuzzleheadedMixture4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/u_PuzzleheadedMixture4/comments/evel55/empiremarketlinkempiremarketlinksempiremarketurlem/\", \"created\": 1580289023.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"u/PuzzleheadedMixture4\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"user\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"I recently started community college AMA\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evb5lw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbik9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hmbez35\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1580260223.0, \"send_replies\": true, \"parent_id\": \"t1_ffvbh71\", \"score\": 1, \"author_fullname\": \"t2_52e2c6gg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2r4eo\", \"body\": \"Denver. Love that city\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbik9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDenver. Love that city\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"AMA\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/AMA/comments/evb5lw/i_recently_started_community_college_ama/ffvbik9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/AMA/comments/evb5lw/i_recently_started_community_college_ama/\", \"report_reasons\": null, \"link_author\": \"cuntcakesprinkles\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/AMA/comments/evb5lw/i_recently_started_community_college_ama/\", \"created\": 1580289023.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/AMA\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Netflix possibly looking to acquire MGM?\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_euyvrd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbijv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cory120\", \"num_comments\": 108, \"can_mod_post\": false, \"created_utc\": 1580260222.0, \"send_replies\": true, \"parent_id\": \"t1_ffvadjx\", \"score\": 1, \"author_fullname\": \"t2_10o1kf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qoxj\", \"body\": \"It's probably possible but I haven't heard of them doing that, personally. I have heard they they don't love it when the studios decide to release the shows on DVD, like Hill House, Lost in Space and Castlevania to name a few, but that seems to remain out of their control, so I'd be surprised if they were buying up total rights that way. That's another reason why I am surprised they don't try to get a fully owned studio, so they can do what they want.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbijv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s probably possible but I haven\\u0026#39;t heard of them doing that, personally. I have heard they they don\\u0026#39;t love it when the studios decide to release the shows on DVD, like Hill House, Lost in Space and Castlevania to name a few, but that seems to remain out of their control, so I\\u0026#39;d be surprised if they were buying up total rights that way. That\\u0026#39;s another reason why I am surprised they don\\u0026#39;t try to get a fully owned studio, so they can do what they want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"netflix\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/netflix/comments/euyvrd/netflix_possibly_looking_to_acquire_mgm/ffvbijv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/netflix/comments/euyvrd/netflix_possibly_looking_to_acquire_mgm/\", \"report_reasons\": null, \"link_author\": \"Mr602206\", \"author_flair_text\": null, \"link_url\": \"http://amp.denofgeek.com/us/movies/285563/netflix-apple-talks-mgm-james-bond-rights\", \"created\": 1580289022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/netflix\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"Best OVERCLOCKING tutorial out there?!\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evcd1q\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbija\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheSleepyFlamingo\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260222.0, \"send_replies\": true, \"parent_id\": \"t3_evcd1q\", \"score\": 1, \"author_fullname\": \"t2_59yi6vdz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rnve\", \"body\": \"I treat my overclocking my sex\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbija\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI treat my overclocking my sex\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"buildapc\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/buildapc/comments/evcd1q/best_overclocking_tutorial_out_there/ffvbija/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/buildapc/comments/evcd1q/best_overclocking_tutorial_out_there/\", \"report_reasons\": null, \"link_author\": \"joe131100\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/buildapc/comments/evcd1q/best_overclocking_tutorial_out_there/\", \"created\": 1580289022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/buildapc\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"TIL Andrew Carnegie believed that public libraries were the key to self-improvement for ordinary Americans. Thus, in the years between 1886 and 1917, Carnegie financed the construction of 2,811 public libraries, most of which were in the US\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evb40c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbiio\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"whoevendidthat\", \"num_comments\": 505, \"can_mod_post\": false, \"created_utc\": 1580260222.0, \"send_replies\": true, \"parent_id\": \"t1_ffvapow\", \"score\": 1, \"author_fullname\": \"t2_gnpu06v\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qqjc\", \"body\": \"What do you expect from reddit? I'm surprised there's people praising *anyone* at all on this website. Comment sections are always filled to the brim with hate, arrogance, and ignorance.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbiio\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat do you expect from reddit? I\\u0026#39;m surprised there\\u0026#39;s people praising \\u003Cem\\u003Eanyone\\u003C/em\\u003E at all on this website. Comment sections are always filled to the brim with hate, arrogance, and ignorance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"todayilearned\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/todayilearned/comments/evb40c/til_andrew_carnegie_believed_that_public/ffvbiio/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/todayilearned/comments/evb40c/til_andrew_carnegie_believed_that_public/\", \"report_reasons\": null, \"link_author\": \"vannybros\", \"author_flair_text\": null, \"link_url\": \"https://www.santamonica.gov/blog/looking-back-at-the-ocean-park-library\", \"created\": 1580289022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/todayilearned\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"awarders\": [], \"total_awards_received\": 0, \"approved_at_utc\": null, \"link_title\": \"2 prerelease codes for the quick draws. Enjoy\", \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_evf4ll\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ffvbii6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"reetz88\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1580260222.0, \"send_replies\": true, \"parent_id\": \"t3_evf4ll\", \"score\": 1, \"author_fullname\": \"t2_17ef67\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_3nbzd\", \"body\": \"aww I never get these, too slow on the draw XD\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ffvbii6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eaww I never get these, too slow on the draw XD\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"subreddit\": \"MagicArena\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/MagicArena/comments/evf4ll/2_prerelease_codes_for_the_quick_draws_enjoy/ffvbii6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/MagicArena/comments/evf4ll/2_prerelease_codes_for_the_quick_draws_enjoy/\", \"report_reasons\": null, \"link_author\": \"Jay3000X\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/biuq4llm9md41.jpg\", \"created\": 1580289022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/MagicArena\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": null, \"before\": null}}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "18854" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Date": [ + "Wed, 29 Jan 2020 01:10:25 GMT" + ], + "Server": [ + "snooserv" + ], + "Strict-Transport-Security": [ + "max-age=15552000; includeSubDomains; preload" + ], + "Vary": [ + "accept-encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "MISS" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Moose": [ + "majestic" + ], + "X-Served-By": [ + "cache-lga21932-LGA" + ], + "X-Timer": [ + "S1580260225.090518,VS0,VE79" + ], + "access-control-allow-origin": [ + "*" + ], + "access-control-expose-headers": [ + "X-Moose" + ], + "cache-control": [ + "max-age=0, must-revalidate" + ], + "set-cookie": [ + "session_tracker=sCJzQeuAO9jqJy2lLh.0.1580260225115.Z0FBQUFBQmVNTnVCYUd4LVg4RDl3OUpDOGxGbUJockRwNlBJZ1pnbjhsR2hWclBpQ0M5QzNkZmE2eWRUdXZ5alNSWUhKRGFoN3g0STF6ZmVFY0NqNGRVTGM0eVdhbjlfNXNoaUp4dml5LWE3WkMwLTNnNDlWU2Y1dE9nOE1xMnR2cXRoSnQtalk1enA; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 29-Jan-2020 03:10:25 GMT; secure" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "x-ua-compatible": [ + "IE=edge" + ], + "x-xss-protection": [ + "1; mode=block" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/r/all/comments/?before=t1_ffvbii9&limit=100&raw_json=1" + } + } + ], + "recorded_with": "betamax/0.8.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/TestSubredditStreams.submissions_new.json b/tests/integration/cassettes/TestSubredditStreams.submissions_new.json new file mode 100644 index 000000000..cb2c6aa92 --- /dev/null +++ b/tests/integration/cassettes/TestSubredditStreams.submissions_new.json @@ -0,0 +1,220 @@ +{ + "http_interactions": [ + { + "recorded_at": "2020-01-29T01:10:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "grant_type=client_credentials" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "Basic " + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "User-Agent": [ + " PRAW/7.0.0.dev0 prawcore/1.0.1" + ] + }, + "method": "POST", + "uri": "https://www.reddit.com/api/v1/access_token" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"*\"}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Date": [ + "Wed, 29 Jan 2020 01:10:25 GMT" + ], + "Server": [ + "snooserv" + ], + "Set-Cookie": [ + "edgebucket=3Cekpx7n8K2J3fiz52; Domain=reddit.com; Max-Age=63071999; Path=/; secure" + ], + "Strict-Transport-Security": [ + "max-age=15552000; includeSubDomains; preload" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "MISS" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Moose": [ + "majestic" + ], + "X-Served-By": [ + "cache-lga21967-LGA" + ], + "X-Timer": [ + "S1580260225.396815,VS0,VE38" + ], + "cache-control": [ + "max-age=0, must-revalidate" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "x-reddit-loid": [ + "00000000005juzybwh.2.1580260225417.Z0FBQUFBQmVNTnVCWnVWQ1hKLTdRZWhUbFNnZFMyaTd6UWZiVkVSMHlnUGduUGd5NVhweXhrM25LYjZ1dFRVdHVnZzdkOXozVFM3WTBtMF83VlJ2ZlU0MFh5OWd4dGp5VURVM2I0R1ZjZUFZWURzcmRkQm01cmM1REpwLTVReER6NEl0elBuV1hScUM" + ], + "x-xss-protection": [ + "1; mode=block" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.reddit.com/api/v1/access_token" + } + }, + { + "recorded_at": "2020-01-29T01:10:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "edgebucket=3Cekpx7n8K2J3fiz52" + ], + "User-Agent": [ + " PRAW/7.0.0.dev0 prawcore/1.0.1" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/r/all/new?limit=100&raw_json=1" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"WrAItingPrompts\", \"selftext\": \" Smartphones have become the centralized repository for all forms of identity. Birth certificate, bank account, car keys, employer ID card, social security, passport, even bike locks and hair salon appointments. Tonight, a smartphone is up for auction. The winner gets their hands on a $1,000 gift card to a local barbershop.\\n\\nAnd to make things even more interesting, the buyer had to buy the phone using a prepaid debit card. (The seller had to find a buyer for the phone before the auction actually took place.)\\n\\nWho wins the auction? The cellphone companies. Which is why this is happening.\\n\\nThis is what happens when you have a society where the government is heavily involved in regulating every aspect of our lives. In the United States, the government is the largest purchaser of smartphones.\\n\\nThe government owns a huge chunk of the wireless companies' stock. And the government subsidizes the phones with tax money. So the government is directly involved in every aspect of the smartphone market.\\n\\nAnd that's the problem.\\n\\nThe government is heavily involved in everything.\\n\\nIt's like the government runs a private internet service. Which would have to be heavily regulated by the government before it could even exist.\\n\\nSo imagine if the government regulated the internet. What if it used the powers it owns to force people to use it.\\n\\nThat's what happened when the government tried to build an internet. The government created the internet. And the government gave companies incentives to build it.\\n\\nBut it didn't work. The internet didn't work for Americans. And it didn't work for companies.\\n\\nThe government has made the internet incredibly valuable. The government decides what is and isn't okay to do on the internet. It decides what is and isn't \\\"legal.\\\" And it decides what is and isn't \\\"acceptable.\\\"\\n\\nIn the United States, the government decides what is and isn't legal when it comes to drugs. It decides what's okay to do with your body. It decides what is and isn't \\\"acceptable.\\\"\\n\\nAnd there's a reason why. It's because drugs are heavily regulated by the government. And the government is heavily involved in drug sales.\\n\\nBut the government isn't involved in cellphone sales. Which is why we're stuck with a cellphone market that is totally unregulated.\\n\\nIf the government didn't buy the cellphone companies' stock, there wouldn't be any cellphones for the government to regulate. Because the government wouldn't be involved in cellphone sales.\\n\\nThis is why there is no cellphone regulation in the United States.\\n\\nBut it's not because the government doesn't want to regulate cellphones. Because the government buys the cellphone companies' stock\", \"author_fullname\": \"t2_55eds43x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[WP] Smartphones have become the centralized repository for all forms of identity. Birth certificate, bank account, car keys, employer ID card, social security, passport, even bike locks and hair salon appointments. Tonight, a smartphone is up for auction.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/WrAItingPrompts\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9n2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289019.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.WrAItingPrompts\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESmartphones have become the centralized repository for all forms of identity. Birth certificate, bank account, car keys, employer ID card, social security, passport, even bike locks and hair salon appointments. Tonight, a smartphone is up for auction. The winner gets their hands on a $1,000 gift card to a local barbershop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd to make things even more interesting, the buyer had to buy the phone using a prepaid debit card. (The seller had to find a buyer for the phone before the auction actually took place.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWho wins the auction? The cellphone companies. Which is why this is happening.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is what happens when you have a society where the government is heavily involved in regulating every aspect of our lives. In the United States, the government is the largest purchaser of smartphones.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe government owns a huge chunk of the wireless companies\\u0026#39; stock. And the government subsidizes the phones with tax money. So the government is directly involved in every aspect of the smartphone market.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd that\\u0026#39;s the problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe government is heavily involved in everything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s like the government runs a private internet service. Which would have to be heavily regulated by the government before it could even exist.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo imagine if the government regulated the internet. What if it used the powers it owns to force people to use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s what happened when the government tried to build an internet. The government created the internet. And the government gave companies incentives to build it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it didn\\u0026#39;t work. The internet didn\\u0026#39;t work for Americans. And it didn\\u0026#39;t work for companies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe government has made the internet incredibly valuable. The government decides what is and isn\\u0026#39;t okay to do on the internet. It decides what is and isn\\u0026#39;t \\u0026quot;legal.\\u0026quot; And it decides what is and isn\\u0026#39;t \\u0026quot;acceptable.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the United States, the government decides what is and isn\\u0026#39;t legal when it comes to drugs. It decides what\\u0026#39;s okay to do with your body. It decides what is and isn\\u0026#39;t \\u0026quot;acceptable.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd there\\u0026#39;s a reason why. It\\u0026#39;s because drugs are heavily regulated by the government. And the government is heavily involved in drug sales.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the government isn\\u0026#39;t involved in cellphone sales. Which is why we\\u0026#39;re stuck with a cellphone market that is totally unregulated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the government didn\\u0026#39;t buy the cellphone companies\\u0026#39; stock, there wouldn\\u0026#39;t be any cellphones for the government to regulate. Because the government wouldn\\u0026#39;t be involved in cellphone sales.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is why there is no cellphone regulation in the United States.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it\\u0026#39;s not because the government doesn\\u0026#39;t want to regulate cellphones. Because the government buys the cellphone companies\\u0026#39; stock\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_29lz46\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9n2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WrAIter\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/WrAItingPrompts/comments/evf9n2/wp_smartphones_have_become_the_centralized/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/WrAItingPrompts/comments/evf9n2/wp_smartphones_have_become_the_centralized/\", \"subreddit_subscribers\": 39, \"created_utc\": 1580260219.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"LivestreamFail\", \"selftext\": \"\", \"author_fullname\": \"t2_121qlw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Streamer gets judged for her Top Model look \\ud83d\\udd25\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LivestreamFail\", \"hidden\": false, \"pwls\": 1, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9mx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289019.0, \"link_flair_type\": \"text\", \"wls\": 1, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"clips.twitch.tv\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_38jf0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"n00bffh\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"house_only\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LivestreamFail/comments/evf9mx/streamer_gets_judged_for_her_top_model_look/\", \"parent_whitelist_status\": \"house_only\", \"stickied\": false, \"url\": \"https://clips.twitch.tv/PlumpFurryMuleOneHand\", \"subreddit_subscribers\": 722367, \"created_utc\": 1580260219.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"bostontrees\", \"selftext\": \"Is 90 a gram for hash rosin worth it? Regular rosin is awesome, just worried about the price difference and wanted some education!\", \"author_fullname\": \"t2_7glyg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Question about Hash Rosin pricing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/bostontrees\", \"hidden\": false, \"pwls\": 1, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9mv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289019.0, \"link_flair_type\": \"text\", \"wls\": 1, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.bostontrees\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs 90 a gram for hash rosin worth it? Regular rosin is awesome, just worried about the price difference and wanted some education!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s8kk\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Contemporaryshaman\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"house_only\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/bostontrees/comments/evf9mv/question_about_hash_rosin_pricing/\", \"parent_whitelist_status\": \"house_only\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/bostontrees/comments/evf9mv/question_about_hash_rosin_pricing/\", \"subreddit_subscribers\": 22475, \"created_utc\": 1580260219.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_ActualDevelopment4\", \"selftext\": \"Title : Swein Forkbeard's Invasions and the Danish Conquest of England 991-1017 (Warfare in History)\\nLink Read Online / Download : https://localpdf.com/0851159281\\nAuthor : Ian Howard\\nPages : 1691\\nPublisher : Boydell Press\\nISBN : 0851159281\\nRelease Date : 23-10-1985\\n\\n#downloadbook #book #readonline #readbookonline #ebookcollection #ebookdownload #pdf #ebook #epub #kindle\", \"author_fullname\": \"t2_5jux3sc5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BEST PDF Swein Forkbeard's Invasions and the Danish Conquest of England, 991-1017 (Warfare in History) E-book download\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/ActualDevelopment4\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9mt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"spoiler\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289019.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.ActualDevelopment4\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETitle : Swein Forkbeard\\u0026#39;s Invasions and the Danish Conquest of England 991-1017 (Warfare in History)\\nLink Read Online / Download : \\u003Ca href=\\\"https://localpdf.com/0851159281\\\"\\u003Ehttps://localpdf.com/0851159281\\u003C/a\\u003E\\nAuthor : Ian Howard\\nPages : 1691\\nPublisher : Boydell Press\\nISBN : 0851159281\\nRelease Date : 23-10-1985\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Edownloadbook #book #readonline #readbookonline #ebookcollection #ebookdownload #pdf #ebook #epub #kindle\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": true, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2e26t5\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ActualDevelopment4\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_ActualDevelopment4/comments/evf9mt/best_pdf_swein_forkbeards_invasions_and_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_ActualDevelopment4/comments/evf9mt/best_pdf_swein_forkbeards_invasions_and_the/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260219.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_benzamide23\", \"selftext\": \"# DOWNLOAD LINK: megafile3.top/file/VA - Star 80 New Generation Vol.1 (2015)\", \"author_fullname\": \"t2_52224aqm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VA - Star 80 New Generation Vol.1 (2015)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/benzamide23\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9mj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289018.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.benzamide23\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDOWNLOAD LINK: megafile3.top/file/VA - Star 80 New Generation Vol.1 (2015)\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_28rcy6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benzamide23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_benzamide23/comments/evf9mj/va_star_80_new_generation_vol1_2015/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_benzamide23/comments/evf9mj/va_star_80_new_generation_vol1_2015/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260218.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_xzbzxbxzbzxbzxb\", \"selftext\": \"\", \"author_fullname\": \"t2_5je8lceg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\ud654\\uc21c\\ucd9c\\uc7a5\\uc0f5(24\\uc2dc\\ucd9c\\uc7a5\\ub9c8\\uc0ac\\uc9c0)\\u3010\\uce74\\ud1a1Dio67 \\u3011Dio6\\uff0cn e t} \\ud654\\uc21c\\ucd9c\\uc7a5\\uc548\\ub9c8 \\u30ef \\ud654\\uc21c\\ucf5c\\uac78\\uc0f5 \\ud654\\uc21c\\ucd9c\\uc7a5\\uc0f5\\ucd94\\ucc9c \\ud654\\uc21c\\ucd9c\\uc7a5\\uc544\\uac00\\uc528 \\ud654\\uc21c\\ucd9c\\uc7a5\\ub9cc\\ub0a8 \\ud654\\uc21c\\ucf5c\\uac78\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/xzbzxbxzbzxbzxb\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9mi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/zheoDLF4d3zfMBkamRq5Df7lJyDPLTHEJgalv6vvyWI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289018.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"open.spotify.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/29IFKHV8jztvkeeyx8JQM-GHR50fcmwDRUfwQMWr6YE.jpg?auto=webp\\u0026s=f2dae098816a2ebf74c1738f57724a2e45ac18cb\", \"width\": 640, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/29IFKHV8jztvkeeyx8JQM-GHR50fcmwDRUfwQMWr6YE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bff22c52bf256067a19819bf147393ae1007615b\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/29IFKHV8jztvkeeyx8JQM-GHR50fcmwDRUfwQMWr6YE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=06cf9b47130f8bd06834e337c8ada0bcd3e45efb\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/29IFKHV8jztvkeeyx8JQM-GHR50fcmwDRUfwQMWr6YE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6a5632dce7246f6ba72e38a67d2b360c0a72dc8a\", \"width\": 320, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/29IFKHV8jztvkeeyx8JQM-GHR50fcmwDRUfwQMWr6YE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2f8c71f63ffecf8071cf1675498affe46c80ce70\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"sTHJfQFI_JQRgaEPKfL7BKZ8AoyxYEl3DYtUwn4T_KU\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2dx3xx\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"xzbzxbxzbzxbzxb\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_xzbzxbxzbzxbzxb/comments/evf9mi/\\ud654\\uc21c\\ucd9c\\uc7a5\\uc0f524\\uc2dc\\ucd9c\\uc7a5\\ub9c8\\uc0ac\\uc9c0\\uce74\\ud1a1dio67_dio6n_e_t_\\ud654\\uc21c\\ucd9c\\uc7a5\\uc548\\ub9c8_\\u30ef_\\ud654\\uc21c\\ucf5c\\uac78\\uc0f5/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://open.spotify.com/playlist/1kIBQxPf8vdb1zC1JcdIvH?si=TRld1Y8jQQuM1Jo74zYdtA\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260218.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"memes\", \"selftext\": \"\", \"author_fullname\": \"t2_3n33uayc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"His first and greatest mistake\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/memes\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9mf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"5f1473b4-510a-11e9-8b7e-0e0f10183f92\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/4UXLgrvEekm6UGMfn2fIOy1ZF7xZn40u9rjO76XA6nQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289018.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/spkoq50gbmd41.jpg?auto=webp\\u0026s=1f61d28fa51d649f2d78441e3ac3ffc7b5899ae3\", \"width\": 783, \"height\": 919}, \"resolutions\": [{\"url\": \"https://preview.redd.it/spkoq50gbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9088f7490cc417f752676c6c16d7418e43f7a9a0\", \"width\": 108, \"height\": 126}, {\"url\": \"https://preview.redd.it/spkoq50gbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e40873972b436ae945d3b1d272e622ca2c67b2e9\", \"width\": 216, \"height\": 253}, {\"url\": \"https://preview.redd.it/spkoq50gbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f152cc243192743f173bbf309635f9e5e18a289b\", \"width\": 320, \"height\": 375}, {\"url\": \"https://preview.redd.it/spkoq50gbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ffc92f0713b931f7aba35df7377cb5d507250383\", \"width\": 640, \"height\": 751}], \"variants\": {}, \"id\": \"K5MFRtkg8PxydqT9Y8w-yAFzVzFxHDIwwnM1w5IJv9c\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Plays MineCraft and not FortNite\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qjpg\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Baconthanos\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/memes/comments/evf9mf/his_first_and_greatest_mistake/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/spkoq50gbmd41.jpg\", \"subreddit_subscribers\": 8075581, \"created_utc\": 1580260218.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"RocketLeagueExchange\", \"selftext\": \"**Please help me clear all this out, want it gone, very eager to move it**\\n\\n\\u0026#x200B;\\n\\n**Striker TW Hex Tide - 12,500 credits** \\n\\n\\u0026#x200B;\\n\\n**Dominus Black Out Pack -** Striker Black Or-Aise, aviator black mage glass, sniper black cloud burst - 800 c\\n\\n**Chikara** \\\\- tw, sb, grey, pink, bs, cobalt, crimson, fg, lime, orange, saff,- 250 c\\n\\n**Dimonix Inverted -** Crimson, Lime, Orange, Pink and non-se bs saff, fg - 250 c\\n\\n**Laser Wave -** Juggler cobalt, Paragon grey, bs, cobalt, crimson, fg, lime, orange, saff, sb - 600 c\\n\\n**Striker Boost Bundle includes:** Proton, Trinity, Pixel Fire, Dark Matter, Hypernova, Polygonal for 1800 c.\\n\\n\\u0026#x200B;\\n\\n# Very open to offers on the below decals, I just put a price for some starting reference.\\n\\n# \\n\\nIncludes (og crate unless noted with a \\\\*)\\n\\n\\u0026#x200B;\\n\\n* Sweeper arcana - 400 c\\n* TW Merc Athena, Unpainted - 20 c\\n* Striker Carbonated - 150 c\\n* striker Combo - 250 c\\n* Aviator takumi, Striker Breakout, Tactician takumi distortion - 100 c\\n* Striker Dot Matrix Breakout - 250 c\\n* Playmaker, Scorer, Striker, Sweeper, tactician dragon lord - 750 c for all\\n* Tactician Pink Edge Burst - 150 c\\n* Striker , Victor Falchion - 500 c for both\\n* TW Glyphtrix - 60 c\\n* Striker, Playmaker Killowatt - 600, 300 c\\n* Goalkeeper \\\\*, Playmaker, Striker x 2 mg-88 octane - 100, 100, 300 c each\\n* Playmaker, tactician Narwhal - 150, 300 c\\n* Striker Nine Lives - 250 c\\n* Playmaker TW Muddy - 100 c\\n* Striker Black Or-Aise - 800 c\\n* Tactician Pollo calliente - 600 c\\n* Playmaker TW Retro Sun - 50 c\\n* Octane RL Esports - 100 c\\n* Scorer, Striker, Tact Roadkill - 250, 700, 400 c\\n* Striker, Striker\\\\*, Sweeper x 2, Tact Shibuya - 350, 350, 100, 200 c\\n* Striker SHisa - 700 c\\n* Playmaker TW Smooth Jazz - 50 c\\n* Striker Turbo - 400 c\\n* Striker, Tact Breakout Vector - 250 c for both\\n* Tact Takumi Vector - 100 c\\n* Striker, Tact Vice - 700, 500 c\\n* Striker warlock - 400 c\\n* Playmaker, Striker Whizzle - 50, 100 c\", \"author_fullname\": \"t2_4k7aig95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[xbox] [H] Striker TW Hex Tide, Some bundles left, lots of striker, cert cc crate decals / boosts [W] 12,500 credits, prices listed in post for all items -- LF cert troikas\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Xbox\"}], \"subreddit_name_prefixed\": \"r/RocketLeagueExchange\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"xbox\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9mb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Xbox\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289018.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.RocketLeagueExchange\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EPlease help me clear all this out, want it gone, very eager to move it\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EStriker TW Hex Tide - 12,500 credits\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDominus Black Out Pack -\\u003C/strong\\u003E Striker Black Or-Aise, aviator black mage glass, sniper black cloud burst - 800 c\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EChikara\\u003C/strong\\u003E - tw, sb, grey, pink, bs, cobalt, crimson, fg, lime, orange, saff,- 250 c\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDimonix Inverted -\\u003C/strong\\u003E Crimson, Lime, Orange, Pink and non-se bs saff, fg - 250 c\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELaser Wave -\\u003C/strong\\u003E Juggler cobalt, Paragon grey, bs, cobalt, crimson, fg, lime, orange, saff, sb - 600 c\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EStriker Boost Bundle includes:\\u003C/strong\\u003E Proton, Trinity, Pixel Fire, Dark Matter, Hypernova, Polygonal for 1800 c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EVery open to offers on the below decals, I just put a price for some starting reference.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIncludes (og crate unless noted with a *)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESweeper arcana - 400 c\\u003C/li\\u003E\\n\\u003Cli\\u003ETW Merc Athena, Unpainted - 20 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker Carbonated - 150 c\\u003C/li\\u003E\\n\\u003Cli\\u003Estriker Combo - 250 c\\u003C/li\\u003E\\n\\u003Cli\\u003EAviator takumi, Striker Breakout, Tactician takumi distortion - 100 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker Dot Matrix Breakout - 250 c\\u003C/li\\u003E\\n\\u003Cli\\u003EPlaymaker, Scorer, Striker, Sweeper, tactician dragon lord - 750 c for all\\u003C/li\\u003E\\n\\u003Cli\\u003ETactician Pink Edge Burst - 150 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker , Victor Falchion - 500 c for both\\u003C/li\\u003E\\n\\u003Cli\\u003ETW Glyphtrix - 60 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker, Playmaker Killowatt - 600, 300 c\\u003C/li\\u003E\\n\\u003Cli\\u003EGoalkeeper *, Playmaker, Striker x 2 mg-88 octane - 100, 100, 300 c each\\u003C/li\\u003E\\n\\u003Cli\\u003EPlaymaker, tactician Narwhal - 150, 300 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker Nine Lives - 250 c\\u003C/li\\u003E\\n\\u003Cli\\u003EPlaymaker TW Muddy - 100 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker Black Or-Aise - 800 c\\u003C/li\\u003E\\n\\u003Cli\\u003ETactician Pollo calliente - 600 c\\u003C/li\\u003E\\n\\u003Cli\\u003EPlaymaker TW Retro Sun - 50 c\\u003C/li\\u003E\\n\\u003Cli\\u003EOctane RL Esports - 100 c\\u003C/li\\u003E\\n\\u003Cli\\u003EScorer, Striker, Tact Roadkill - 250, 700, 400 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker, Striker*, Sweeper x 2, Tact Shibuya - 350, 350, 100, 200 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker SHisa - 700 c\\u003C/li\\u003E\\n\\u003Cli\\u003EPlaymaker TW Smooth Jazz - 50 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker Turbo - 400 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker, Tact Breakout Vector - 250 c for both\\u003C/li\\u003E\\n\\u003Cli\\u003ETact Takumi Vector - 100 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker, Tact Vice - 700, 500 c\\u003C/li\\u003E\\n\\u003Cli\\u003EStriker warlock - 400 c\\u003C/li\\u003E\\n\\u003Cli\\u003EPlaymaker, Striker Whizzle - 50, 100 c\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3g4tc\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rocketrocketleague1\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/RocketLeagueExchange/comments/evf9mb/xbox_h_striker_tw_hex_tide_some_bundles_left_lots/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/RocketLeagueExchange/comments/evf9mb/xbox_h_striker_tw_hex_tide_some_bundles_left_lots/\", \"subreddit_subscribers\": 106449, \"created_utc\": 1580260218.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"DunksNotDead\", \"selftext\": \"\", \"author_fullname\": \"t2_gsl47\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"*unboxes ds pair*\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/DunksNotDead\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9ma\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/O_CyXP_BAMVDkUd8VXg9KnQk369AIwQSXfWv55bBcPU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289018.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/3n0a6pyfbmd41.jpg?auto=webp\\u0026s=ea8a025aee4cf65fd787b068a4bd881bb979c8c7\", \"width\": 924, \"height\": 960}, \"resolutions\": [{\"url\": \"https://preview.redd.it/3n0a6pyfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fdbbbaca354969ef4482f119364753ea4055ca96\", \"width\": 108, \"height\": 112}, {\"url\": \"https://preview.redd.it/3n0a6pyfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=706b4dd0184a2cca4c8d4018fffdb2bd98d93265\", \"width\": 216, \"height\": 224}, {\"url\": \"https://preview.redd.it/3n0a6pyfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3931d39f03b3269bbf4f2c0a4b55d9ec0b68dafe\", \"width\": 320, \"height\": 332}, {\"url\": \"https://preview.redd.it/3n0a6pyfbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0215b16409db914735daebcdc49f2c236c14e1a0\", \"width\": 640, \"height\": 664}], \"variants\": {}, \"id\": \"ngqIqk61iMaoXkx6OavRFCsXKTuyNGNnPnRcM1aDViw\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_ndpje\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ma\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tommyp484\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/DunksNotDead/comments/evf9ma/unboxes_ds_pair/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/3n0a6pyfbmd41.jpg\", \"subreddit_subscribers\": 5874, \"created_utc\": 1580260218.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"baseballcards\", \"selftext\": \"\", \"author_fullname\": \"t2_9pzxnie\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Jeter Downs Pull from BreakKings\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/baseballcards\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"Sale\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9mc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Sale\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/kxdMbKxO7QJb1lHS79IdXdGL5ELLhvLcC1KoIcqJmmE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/i3aztsnfbmd41.jpg?auto=webp\\u0026s=05aa48433c4abd7d560b5b21f637142f6143fff3\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://preview.redd.it/i3aztsnfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c1b322dd07c0d182684cbc1b8250c11d9bffddfb\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/i3aztsnfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1a491da65030e19498042ab64875131461e24336\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/i3aztsnfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f1e8f9131c2fbdfbab5faffaf1952892d2951600\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/i3aztsnfbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4c6598226fb1caf144e674fe3d8748f4b31b3cf7\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/i3aztsnfbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=89995cda0c6af88f2ca30a90fac4023328fc5e38\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/i3aztsnfbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b07a21da57038db5811dc2984403ca0d7e037a9a\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"MLpWRbD0TYbXZaCU1rh4sFURgW7VRe3iP7mbVR7LvUc\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"31951a1e-4a82-11e7-afcb-0e7eab94c954\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2u5oo\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9mc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GopherLaw84\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/baseballcards/comments/evf9mc/jeter_downs_pull_from_breakkings/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/i3aztsnfbmd41.jpg\", \"subreddit_subscribers\": 13543, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"toddlers\", \"selftext\": \"It\\u2019s 8pm where I\\u2019m at. My 17 month old has been asleep for 2+ hours.\", \"author_fullname\": \"t2_12f9mx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I may never sleep again.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/toddlers\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9m8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289017.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.toddlers\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u2019s 8pm where I\\u2019m at. My 17 month old has been asleep for 2+ hours.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2ta5v\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9m8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FullTimeInsomnia\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/toddlers/comments/evf9m8/i_may_never_sleep_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/toddlers/comments/evf9m8/i_may_never_sleep_again/\", \"subreddit_subscribers\": 33444, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"warcraft3\", \"selftext\": \"Does anyone know what's new in the reforged campaign? I don't want to sit for hours and play through the entire thing.\", \"author_fullname\": \"t2_1si9fc3b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Reforged campaign\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Reforged \"}, {\"a\": \":Reforged:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/pm7862ru3it31_t5_2rner/Reforged\"}], \"subreddit_name_prefixed\": \"r/warcraft3\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9m6\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Reforged :Reforged:\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289017.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.warcraft3\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone know what\\u0026#39;s new in the reforged campaign? I don\\u0026#39;t want to sit for hours and play through the entire thing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1eb7213e-f0d0-11e9-942b-0e2c66194efa\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rner\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#cc3600\", \"id\": \"evf9m6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"toadslayer5\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/warcraft3/comments/evf9m6/reforged_campaign/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/warcraft3/comments/evf9m6/reforged_campaign/\", \"subreddit_subscribers\": 16199, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PrequelMemes\", \"selftext\": \"\", \"author_fullname\": \"t2_4o07o97u\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"More\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PrequelMemes\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 90, \"hide_score\": true, \"name\": \"t3_evf9m3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/JeZLc39f8Db3RBW4f3qrv8x2J2YeBVG0N_TQikfJdgQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/w87ihjzfbmd41.jpg?auto=webp\\u0026s=17e82176a4960d2a496457e0a8061c1ae6423f92\", \"width\": 629, \"height\": 405}, \"resolutions\": [{\"url\": \"https://preview.redd.it/w87ihjzfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=40182556a24fb3023b7851d1b5bc7771fd33c9d5\", \"width\": 108, \"height\": 69}, {\"url\": \"https://preview.redd.it/w87ihjzfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b5f0bcd8203ac9ab8785a003d536a1d46f692f7d\", \"width\": 216, \"height\": 139}, {\"url\": \"https://preview.redd.it/w87ihjzfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=760b5b3266ee236bd2a5ac813c36a3fb5426afc3\", \"width\": 320, \"height\": 206}], \"variants\": {}, \"id\": \"TZkJVk-969_4DdjGTMuULatTIlKET_eE6u4ANsVB9Yk\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3i60n\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9m3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PossIsBoss\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PrequelMemes/comments/evf9m3/more/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/w87ihjzfbmd41.jpg\", \"subreddit_subscribers\": 1218678, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"youseeingthisshit\", \"selftext\": \"\", \"author_fullname\": \"t2_mpb2m6j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The teacher\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/youseeingthisshit\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"human\", \"downs\": 0, \"thumbnail_height\": 118, \"hide_score\": true, \"name\": \"t3_evf9ly\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Human\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nshSLlMVmJlcP3VpzGPcC9ELqS2k8b5DW4IMiANxc2E.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"author_fullname\": \"t2_eln0m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Welcome to Calculus 101\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 118, \"hide_score\": false, \"name\": \"t3_ev8g8j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 83997, \"total_awards_received\": 2, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 83997, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nshSLlMVmJlcP3VpzGPcC9ELqS2k8b5DW4IMiANxc2E.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1, \"gid_2\": 1}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580261133.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?auto=webp\\u0026s=d61ddac4d774f7a142adcf5aa4460bae0297fe37\", \"width\": 927, \"height\": 784}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c97730ea2464526a755ecc4c9022d591fb4301c4\", \"width\": 108, \"height\": 91}, {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=55e82f830fb7a9431e791cf4bb1cf14fb050b6d7\", \"width\": 216, \"height\": 182}, {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a1725d826abdebb75857eba4f1a2f01f007769f2\", \"width\": 320, \"height\": 270}, {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2d10fb6a91dcd1308affb7dc6aeb3642c537d68e\", \"width\": 640, \"height\": 541}], \"variants\": {}, \"id\": \"mw9xHJ-cPM7GlyfS0J6wnSc4vLz_LjQOU6lqlsTty_U\"}], \"enabled\": true}, \"all_awardings\": [{\"count\": 1, \"is_enabled\": true, \"subreddit_id\": null, \"description\": \"Gives the author a week of Reddit Premium, %{coin_symbol}100 Coins to do with as they please, and shows a Gold Award.\", \"end_date\": null, \"award_sub_type\": \"GLOBAL\", \"coin_reward\": 100, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"is_new\": false, \"id\": \"gid_2\", \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"start_date\": null, \"coin_price\": 500, \"icon_width\": 512, \"subreddit_coin_reward\": 0, \"name\": \"Gold\"}, {\"count\": 1, \"is_enabled\": true, \"subreddit_id\": null, \"description\": \"Shows the Silver Award... and that's it.\", \"end_date\": null, \"award_sub_type\": \"GLOBAL\", \"coin_reward\": 0, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"is_new\": false, \"id\": \"gid_1\", \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"start_date\": null, \"coin_price\": 100, \"icon_width\": 512, \"subreddit_coin_reward\": 0, \"name\": \"Silver\"}], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ev8g8j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plsporo\", \"discussion_type\": null, \"num_comments\": 1421, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/ev8g8j/welcome_to_calculus_101/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/ldm6525i0kd41.png\", \"subreddit_subscribers\": 28328356, \"created_utc\": 1580232333.0, \"num_crossposts\": 24, \"media\": null, \"is_video\": false}], \"created\": 1580289017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?auto=webp\\u0026s=d61ddac4d774f7a142adcf5aa4460bae0297fe37\", \"width\": 927, \"height\": 784}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c97730ea2464526a755ecc4c9022d591fb4301c4\", \"width\": 108, \"height\": 91}, {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=55e82f830fb7a9431e791cf4bb1cf14fb050b6d7\", \"width\": 216, \"height\": 182}, {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a1725d826abdebb75857eba4f1a2f01f007769f2\", \"width\": 320, \"height\": 270}, {\"url\": \"https://preview.redd.it/ldm6525i0kd41.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2d10fb6a91dcd1308affb7dc6aeb3642c537d68e\", \"width\": 640, \"height\": 541}], \"variants\": {}, \"id\": \"mw9xHJ-cPM7GlyfS0J6wnSc4vLz_LjQOU6lqlsTty_U\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"4adfc7cc-2066-11e6-9dc0-0ee0460d347d\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3dde0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ly\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Airmez\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_ev8g8j\", \"author_flair_text_color\": null, \"permalink\": \"/r/youseeingthisshit/comments/evf9ly/the_teacher/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/ldm6525i0kd41.png\", \"subreddit_subscribers\": 1550122, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"swtor\", \"selftext\": \"My first character in SWTOR as a Jedi Guardian, and its the only character I have that has gone through all of the expansion content. However, I have never played through the Jedi Knight class story again, and I\\u2019m sorely tempted to. I was envisioning making a female Togruta Sentinel (for obvious reasons), but I was also hoping to redo the Kira romance and possibly \\u201cre-play\\u201d my original Jedi Guardian. Do you think it would be a waste to run thru the class story again for 2 Jedi Knights?\", \"author_fullname\": \"t2_3dlx945f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Two new Jedi or one?\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Question\"}], \"subreddit_name_prefixed\": \"r/swtor\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"questiontag\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9lx\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289017.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.swtor\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy first character in SWTOR as a Jedi Guardian, and its the only character I have that has gone through all of the expansion content. However, I have never played through the Jedi Knight class story again, and I\\u2019m sorely tempted to. I was envisioning making a female Togruta Sentinel (for obvious reasons), but I was also hoping to redo the Kira romance and possibly \\u201cre-play\\u201d my original Jedi Guardian. Do you think it would be a waste to run thru the class story again for 2 Jedi Knights?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"3f250da8-c302-11e2-8bd2-12313d18884c\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qxih\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#01498f\", \"id\": \"evf9lx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kestrel_Five\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/swtor/comments/evf9lx/two_new_jedi_or_one/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/swtor/comments/evf9lx/two_new_jedi_or_one/\", \"subreddit_subscribers\": 123697, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"GaySnapchat\", \"selftext\": \"\", \"author_fullname\": \"t2_5f22cb4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"18m \\u2018jacob_4973\\u2019 temporally locked! Hot slim verse here! Tops, muscle guys or dads add: j_pointer20\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/GaySnapchat\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9lw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289017.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.GaySnapchat\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2yzi6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9lw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacob_pointer\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/GaySnapchat/comments/evf9lw/18m_jacob_4973_temporally_locked_hot_slim_verse/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/GaySnapchat/comments/evf9lw/18m_jacob_4973_temporally_locked_hot_slim_verse/\", \"subreddit_subscribers\": 52567, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"OfficialNicolasComics\", \"selftext\": \"\", \"author_fullname\": \"t2_nw5arlc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test 3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/OfficialNicolasComics\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9lv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289017.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.OfficialNicolasComics\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2bu98m\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9lv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"katekevins\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/OfficialNicolasComics/comments/evf9lv/test_3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/OfficialNicolasComics/comments/evf9lv/test_3/\", \"subreddit_subscribers\": 19, \"created_utc\": 1580260217.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_benzamide23\", \"selftext\": \"# DOWNLOAD LINK: megafile3.top/file/VA - Soviett Winter 2020 (Compiled \\u0026 Mixed by Max Lyazgin) (2020)\", \"author_fullname\": \"t2_52224aqm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VA - Soviett Winter 2020 (Compiled \\u0026 Mixed by Max Lyazgin) (2020)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/benzamide23\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ls\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289016.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.benzamide23\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDOWNLOAD LINK: megafile3.top/file/VA - Soviett Winter 2020 (Compiled \\u0026amp; Mixed by Max Lyazgin) (2020)\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_28rcy6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ls\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benzamide23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_benzamide23/comments/evf9ls/va_soviett_winter_2020_compiled_mixed_by_max/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_benzamide23/comments/evf9ls/va_soviett_winter_2020_compiled_mixed_by_max/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260216.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"wholesomememes\", \"selftext\": \"\", \"author_fullname\": \"t2_3xear2tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"YouTube has its moments\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/wholesomememes\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9lr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/IQ7C7EaZwLVdfZT4SesgdNaw2AgTRTvz3gg0BJXyle8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289016.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/beszvurfbmd41.jpg?auto=webp\\u0026s=96dec34c0c93001613bfd22d3776289fb4e955f5\", \"width\": 1154, \"height\": 1249}, \"resolutions\": [{\"url\": \"https://preview.redd.it/beszvurfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d524a2c036e764e37567705441ac35f66aef4db6\", \"width\": 108, \"height\": 116}, {\"url\": \"https://preview.redd.it/beszvurfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=599dca7d64f81c24079c7a1f7b376ed9c14312ea\", \"width\": 216, \"height\": 233}, {\"url\": \"https://preview.redd.it/beszvurfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=41afb16b5456ba69dc9c834b48f1e20c86cfd807\", \"width\": 320, \"height\": 346}, {\"url\": \"https://preview.redd.it/beszvurfbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e3da19df756e21cbcaac81857b334eafba7b13c3\", \"width\": 640, \"height\": 692}, {\"url\": \"https://preview.redd.it/beszvurfbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2bab0c5aa5cafc5269618a08f5c608be6277fd22\", \"width\": 960, \"height\": 1039}, {\"url\": \"https://preview.redd.it/beszvurfbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8decc32fd2db84b8a6ca1ad39f601d0527428f2d\", \"width\": 1080, \"height\": 1168}], \"variants\": {}, \"id\": \"aHAizelDZwJLzYAFQekiGTPo75no0F7x2XGf85WihNg\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3gcwj\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9lr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CinematicSeries\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/wholesomememes/comments/evf9lr/youtube_has_its_moments/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/beszvurfbmd41.jpg\", \"subreddit_subscribers\": 6138108, \"created_utc\": 1580260216.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"bigasses\", \"selftext\": \"\", \"author_fullname\": \"t2_4e6we51b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Liking the view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/bigasses\", \"hidden\": false, \"pwls\": 3, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9lo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289016.0, \"link_flair_type\": \"text\", \"wls\": 3, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?auto=webp\\u0026s=df287ac21fe3987188d8bb95302e40c1bc45958f\", \"width\": 2738, \"height\": 3710}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=303d16d77ebecb256e9bc3f70f941428d35f32b4\", \"width\": 108, \"height\": 146}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8622aaed36a10716f962ed7a3dd7287619e952af\", \"width\": 216, \"height\": 292}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7d2e285e2908503ca691c5383117d82632c3791c\", \"width\": 320, \"height\": 433}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dab73067c54a3de50f46a3e3d0c8774379a98bca\", \"width\": 640, \"height\": 867}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d583a6b41c90e96d2b22539ced613abe14165c70\", \"width\": 960, \"height\": 1300}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=da4ec3336755d347fda2ef9d3a5624c1d2f13dea\", \"width\": 1080, \"height\": 1463}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=5af3df7f0f3cca4e78841ce331d60f907e8589dc\", \"width\": 2738, \"height\": 3710}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=a2ddcf9563130a6ec45bf45a0463166ffbf7f3e0\", \"width\": 108, \"height\": 146}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=9ff37dd6747b17ff7b77331168b48ed7a357b953\", \"width\": 216, \"height\": 292}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=ac9a9b099e574d2882105420dd1fa5c08a3d9f68\", \"width\": 320, \"height\": 433}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=d1dacf8e04b6d8f052b10348eba37f5c02fb5c37\", \"width\": 640, \"height\": 867}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=4f0bf63f5322d82fd59b066a8c22698d900353f5\", \"width\": 960, \"height\": 1300}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=0d5163944feae03b35d883d5ab6062acba34d380\", \"width\": 1080, \"height\": 1463}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=5af3df7f0f3cca4e78841ce331d60f907e8589dc\", \"width\": 2738, \"height\": 3710}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=a2ddcf9563130a6ec45bf45a0463166ffbf7f3e0\", \"width\": 108, \"height\": 146}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=9ff37dd6747b17ff7b77331168b48ed7a357b953\", \"width\": 216, \"height\": 292}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=ac9a9b099e574d2882105420dd1fa5c08a3d9f68\", \"width\": 320, \"height\": 433}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=d1dacf8e04b6d8f052b10348eba37f5c02fb5c37\", \"width\": 640, \"height\": 867}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=4f0bf63f5322d82fd59b066a8c22698d900353f5\", \"width\": 960, \"height\": 1300}, {\"url\": \"https://external-preview.redd.it/M602qz8IaQjqsCzXNgUFrhbIIRoRnTmPwzSfWeHsBQQ.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=0d5163944feae03b35d883d5ab6062acba34d380\", \"width\": 1080, \"height\": 1463}]}}, \"id\": \"-ngTLGpvhVe1humFySukPeTlmNfHHxAIEC8O_B7TldU\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2t30u\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9lo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MissNevilleLovegood\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"promo_adult_nsfw\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/bigasses/comments/evf9lo/liking_the_view/\", \"parent_whitelist_status\": \"promo_adult_nsfw\", \"stickied\": false, \"url\": \"https://imgur.com/McjElbD\", \"subreddit_subscribers\": 420898, \"created_utc\": 1580260216.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Miniswap\", \"selftext\": \"\\n\\nFree Shipping!\\n\\nPrices of recasts:\\nRevenant with Sonic Lances: 100$\\nAngron: 40$\\nAbaddon\\u0026Loken: 40$\\nFulgrim: 40$\\nEldar Avatar w/Sword: 40$\\nGrave Warden Terminators: 35$\\n\\n\\nPrices of Bases: \\nOne set of choice free with recast above. Pictures for which themes are available. \\nSets: \\nOval:\\n10 25ml\\n5 32ml\\n5 40ml\\n1 50ml\\n1 55ml\\n1 60ml\\n1 120ml\\n\\nBiker Bases \\n3 of one size\\n\\n\\nOther sizes available, all scenic bases are made from a proprietary pin-friendly stone that is shatter resistant and doesnt soak up the paint!\\n\\nPlease PM if interested.\\nhttps://imgur.com/gallery/G56fY2s\", \"author_fullname\": \"t2_4bkx8c8v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[H] Corona free recasts, scenic bases [W] $$$ [Loc] USA\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/Miniswap\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"NA\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9lk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"NA\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289016.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.Miniswap\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFree Shipping!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPrices of recasts:\\nRevenant with Sonic Lances: 100$\\nAngron: 40$\\nAbaddon\\u0026amp;Loken: 40$\\nFulgrim: 40$\\nEldar Avatar w/Sword: 40$\\nGrave Warden Terminators: 35$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPrices of Bases: \\nOne set of choice free with recast above. Pictures for which themes are available. \\nSets: \\nOval:\\n10 25ml\\n5 32ml\\n5 40ml\\n1 50ml\\n1 55ml\\n1 60ml\\n1 120ml\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBiker Bases \\n3 of one size\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther sizes available, all scenic bases are made from a proprietary pin-friendly stone that is shatter resistant and doesnt soak up the paint!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease PM if interested.\\n\\u003Ca href=\\\"https://imgur.com/gallery/G56fY2s\\\"\\u003Ehttps://imgur.com/gallery/G56fY2s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/CJqzWwE6X9yK1RP-m6wUp0mtF5aJKIAZEmQm_h9ONP0.jpg?auto=webp\\u0026s=ccf9b94073bfdc85e6cb3b42add2061080fa2943\", \"width\": 1536, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/CJqzWwE6X9yK1RP-m6wUp0mtF5aJKIAZEmQm_h9ONP0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e75364c2ac0f496975153ed34c34f9dab6edbe41\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/CJqzWwE6X9yK1RP-m6wUp0mtF5aJKIAZEmQm_h9ONP0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0276e622c8e0fb653a967361fe80e0cf041f20fc\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/CJqzWwE6X9yK1RP-m6wUp0mtF5aJKIAZEmQm_h9ONP0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d849ab9c445ca34e31e0bf57d3e391cf4b877c74\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/CJqzWwE6X9yK1RP-m6wUp0mtF5aJKIAZEmQm_h9ONP0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=97a36907ea164dcf3fc505f011db75720d91f1d4\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/CJqzWwE6X9yK1RP-m6wUp0mtF5aJKIAZEmQm_h9ONP0.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=96a3237d3bcdc4279c60a116880ec804b3fd78a9\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/CJqzWwE6X9yK1RP-m6wUp0mtF5aJKIAZEmQm_h9ONP0.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=cf1e0b885d27b4a6e08002ce88818da8e6bf6f5a\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"UfvbGMeI0SEGKZAlN1uD-7lcbu8At5nnsNyGQ7n4mRk\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b4c898a8-a467-11e8-944b-0e52b9a8bda6\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2sm6t\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9lk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Minisculptor\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/Miniswap/comments/evf9lk/h_corona_free_recasts_scenic_bases_w_loc_usa/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/Miniswap/comments/evf9lk/h_corona_free_recasts_scenic_bases_w_loc_usa/\", \"subreddit_subscribers\": 17972, \"created_utc\": 1580260216.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"TheTwitterFeed\", \"selftext\": \"@MarkDice - January 28, 2020 at 05:04PM\\n \\n @WajahatAli Speaking of crying fake victimhood! Pot, meet kettle! \\ud83d\\ude06\\n \\nSpeaking of crying fake victimhood! Pot, meet kettle! \\ud83d\\ude06\\n\\n \\u2014 Mark Dice (@MarkDice) [January 29, 2020](https://twitter.com/MarkDice/status/1222324608021303296?ref_src=twsrc%5Etfw)\", \"author_fullname\": \"t2_171b9a\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"@MarkDice: @WajahatAli Speaking of crying fake victimhood! Pot, meet kettle! \\ud83d\\ude06\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/TheTwitterFeed\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9li\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"restricted\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289016.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.TheTwitterFeed\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E@MarkDice - January 28, 2020 at 05:04PM\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E@WajahatAli Speaking of crying fake victimhood! Pot, meet kettle! \\ud83d\\ude06\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESpeaking of crying fake victimhood! Pot, meet kettle! \\ud83d\\ude06\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2014 Mark Dice (@MarkDice) \\u003Ca href=\\\"https://twitter.com/MarkDice/status/1222324608021303296?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 29, 2020\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/vOM6dwCj63hjOidIbqRPqUUs9NJykwacmdsoIczjoeQ.jpg?auto=webp\\u0026s=fe9f8007758d704d10df3c448cd287b3fe43175c\", \"width\": 140, \"height\": 140}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/vOM6dwCj63hjOidIbqRPqUUs9NJykwacmdsoIczjoeQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5fe93276505fe1710da4f9d8967010549ebe5ed6\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"HjolVRa00V7EwntRd6rED-EIdbOH7ovuzTC3rcupcJk\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3k0gg\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9li\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thefeedbot\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/TheTwitterFeed/comments/evf9li/markdice_wajahatali_speaking_of_crying_fake/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/TheTwitterFeed/comments/evf9li/markdice_wajahatali_speaking_of_crying_fake/\", \"subreddit_subscribers\": 386, \"created_utc\": 1580260216.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"WritingPrompts\", \"selftext\": \"\", \"author_fullname\": \"t2_4fr3kwau\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[WP] After you die, your family buries your body in a tree pod, planting a seed with your remains in the backyard. Decades later, the sapling has grown into a massive tree, with many branches and roots. One day, a new family watches as the bark splits open, and the splitting image of you falls out.\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Writing Prompt\"}], \"subreddit_name_prefixed\": \"r/WritingPrompts\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"flairwp\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9lh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Writing Prompt\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289016.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.WritingPrompts\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"d37a41f8-a47d-11e5-98c3-0efc7c3b89cd\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s3nb\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#d7dadc\", \"id\": \"evf9lh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ProBrowser27\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/WritingPrompts/comments/evf9lh/wp_after_you_die_your_family_buries_your_body_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/WritingPrompts/comments/evf9lh/wp_after_you_die_your_family_buries_your_body_in/\", \"subreddit_subscribers\": 14191257, \"created_utc\": 1580260216.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"arrow\", \"selftext\": \"I know most of us are giving shoutouts to Stephen, the other actors, the crew, and the amazing moments from the last eight seasons (which is justified of course), but I'd also like to point out just how great the villains have been. The conflicts generated between Oliver and his enemies have played no small part in driving the show forward, and the way these characters were written and portrayed has inspired me in my own fiction writing. See you after the finale.\\n\\n[Still think Prometheus deserved to live past the season he first appeared in...](https://preview.redd.it/5ul9uvhcbmd41.jpg?width=1445\\u0026format=pjpg\\u0026auto=webp\\u0026s=84c818078600ef2a3be44e48596e750f130ee4d7)\", \"author_fullname\": \"t2_48tqgz3o\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[No Spoilers] Very brief villain tribute\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Misc\"}], \"subreddit_name_prefixed\": \"r/arrow\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"Misc\", \"downs\": 0, \"thumbnail_height\": 48, \"hide_score\": true, \"media_metadata\": {\"5ul9uvhcbmd41\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/jpg\", \"p\": [{\"y\": 37, \"x\": 108, \"u\": \"https://external-preview.redd.it/5ul9uvhcbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=678c83bcfae394745e3b3123836afd36dee66d81\"}, {\"y\": 74, \"x\": 216, \"u\": \"https://external-preview.redd.it/5ul9uvhcbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7452ff746d7a38e51ec7d3c0fb9b3cd6ac2adac\"}, {\"y\": 110, \"x\": 320, \"u\": \"https://external-preview.redd.it/5ul9uvhcbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=fc590101b5a3db6fd88d2aea8b31ee67ddd447c8\"}, {\"y\": 221, \"x\": 640, \"u\": \"https://external-preview.redd.it/5ul9uvhcbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6e6100b9eee2061359563d2e84956a8a4284ee8c\"}, {\"y\": 332, \"x\": 960, \"u\": \"https://external-preview.redd.it/5ul9uvhcbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=75f92988b2961c1b97040afbc351e3b36e9fee69\"}, {\"y\": 373, \"x\": 1080, \"u\": \"https://external-preview.redd.it/5ul9uvhcbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8fd0e9340ac7c85829b6586b2b89d797523708c8\"}], \"s\": {\"y\": 500, \"x\": 1445, \"u\": \"https://preview.redd.it/5ul9uvhcbmd41.jpg?width=1445\\u0026format=pjpg\\u0026auto=webp\\u0026s=84c818078600ef2a3be44e48596e750f130ee4d7\"}, \"id\": \"5ul9uvhcbmd41\"}}, \"name\": \"t3_evf9lg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Misc\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289016.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.arrow\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know most of us are giving shoutouts to Stephen, the other actors, the crew, and the amazing moments from the last eight seasons (which is justified of course), but I\\u0026#39;d also like to point out just how great the villains have been. The conflicts generated between Oliver and his enemies have played no small part in driving the show forward, and the way these characters were written and portrayed has inspired me in my own fiction writing. See you after the finale.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://preview.redd.it/5ul9uvhcbmd41.jpg?width=1445\\u0026amp;format=pjpg\\u0026amp;auto=webp\\u0026amp;s=84c818078600ef2a3be44e48596e750f130ee4d7\\\"\\u003EStill think Prometheus deserved to live past the season he first appeared in...\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"3b74daf0-b9b4-11e7-a178-0e325b417496\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2u4js\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9lg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RushinEnergy\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/arrow/comments/evf9lg/no_spoilers_very_brief_villain_tribute/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/arrow/comments/evf9lg/no_spoilers_very_brief_villain_tribute/\", \"subreddit_subscribers\": 107193, \"created_utc\": 1580260216.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"oblivion\", \"selftext\": \"Every time I open the game, Steam attempts to \\\"detect my hardware capabilities\\\" and it sets the graphics settings for medium. This is bullshit because my computer is 2 years old and is a good quality gaming laptop (however it does have very little RAM). Does anyone know how to get Steam to stop trying to optimize my settings and/or can anyone explain to me why my settings are always set so low?\", \"author_fullname\": \"t2_wlo3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Steam Keeps Resetting my Graphics Settings\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/oblivion\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9le\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289015.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.oblivion\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEvery time I open the game, Steam attempts to \\u0026quot;detect my hardware capabilities\\u0026quot; and it sets the graphics settings for medium. This is bullshit because my computer is 2 years old and is a good quality gaming laptop (however it does have very little RAM). Does anyone know how to get Steam to stop trying to optimize my settings and/or can anyone explain to me why my settings are always set so low?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qs10\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9le\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"topherc1\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/oblivion/comments/evf9le/steam_keeps_resetting_my_graphics_settings/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/oblivion/comments/evf9le/steam_keeps_resetting_my_graphics_settings/\", \"subreddit_subscribers\": 85845, \"created_utc\": 1580260215.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"stopdrinking\", \"selftext\": \"You know your an alcoholic when you just landed a very high paying job with an industry leading tech company and the first day of your first week in training to a remote location - before lunch you\\u2019re on google maps looking for the nearest liquor store hopefully in walking distance as the company designated shuttle probably wouldn\\u2019t entertain that pit stop with over a dozen other new hire co-workers from around the globe.\\n\\nYou know your an alcoholic when you find one you believe is within walking distance, a 0.8 mile trek each way that would need to be completed before your due back in training class at 1pm sharp \\n\\nYou know your an alcoholic when you\\u2019re walking through thick wooded areas in your dress clothes and your computer bag on your back to hide the bottle of booze in upon return\\n\\nYou know your an alcoholic when you realized 17 mins into your walk that the liquor store you googled is actually just a distribution center so you walk back, make it by the skin of your teeth - red faced a sweating through your nicely pressed blue dress shirt that didn\\u2019t contain itself for almost 25 mins and everyone\\u2019s staring at you wondering if you ran a marathon only to excuse yourself twice to dry your dress shirt with the bathroom hand dryer, sweat marks from the computer bag, red face from the journey of hoping fences and walking through wild life preserves....lastly no alcohol to validate your experience. \\n\\nNow this my friends is the definition of addiction\", \"author_fullname\": \"t2_2dg0ez41\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"You know you have a problem when, funny story - but not really\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/stopdrinking\", \"hidden\": false, \"pwls\": 0, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9lb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289015.0, \"link_flair_type\": \"text\", \"wls\": 0, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.stopdrinking\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou know your an alcoholic when you just landed a very high paying job with an industry leading tech company and the first day of your first week in training to a remote location - before lunch you\\u2019re on google maps looking for the nearest liquor store hopefully in walking distance as the company designated shuttle probably wouldn\\u2019t entertain that pit stop with over a dozen other new hire co-workers from around the globe.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know your an alcoholic when you find one you believe is within walking distance, a 0.8 mile trek each way that would need to be completed before your due back in training class at 1pm sharp \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know your an alcoholic when you\\u2019re walking through thick wooded areas in your dress clothes and your computer bag on your back to hide the bottle of booze in upon return\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know your an alcoholic when you realized 17 mins into your walk that the liquor store you googled is actually just a distribution center so you walk back, make it by the skin of your teeth - red faced a sweating through your nicely pressed blue dress shirt that didn\\u2019t contain itself for almost 25 mins and everyone\\u2019s staring at you wondering if you ran a marathon only to excuse yourself twice to dry your dress shirt with the bathroom hand dryer, sweat marks from the computer bag, red face from the journey of hoping fences and walking through wild life preserves....lastly no alcohol to validate your experience. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow this my friends is the definition of addiction\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s7yr\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9lb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"warrior_up\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"no_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/stopdrinking/comments/evf9lb/you_know_you_have_a_problem_when_funny_story_but/\", \"parent_whitelist_status\": \"no_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/stopdrinking/comments/evf9lb/you_know_you_have_a_problem_when_funny_story_but/\", \"subreddit_subscribers\": 216361, \"created_utc\": 1580260215.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"rs2vietnam\", \"selftext\": \"We like seeing everyone's achievements an stories that go along with them as well. We may need to find a new way for players to show off their skills so it doesn't become the only visible topics as is happening right now.\\n\\nHow about a mega thread that all achievement posts get posted on to keep from drowning out everything else?\\n\\nOr limited days just for such posts? This would be sort of how other subs have a topic or theme of discussion on certain days.\\n\\nI'd love to hear ideas anyone else has or if you like any of the above ideas.\", \"author_fullname\": \"t2_104szn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rather than have everyone make an individual post for achievements that drown out everything else, other options?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/rs2vietnam\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ld\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"TWI\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289015.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.rs2vietnam\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe like seeing everyone\\u0026#39;s achievements an stories that go along with them as well. We may need to find a new way for players to show off their skills so it doesn\\u0026#39;t become the only visible topics as is happening right now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow about a mega thread that all achievement posts get posted on to keep from drowning out everything else?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr limited days just for such posts? This would be sort of how other subs have a topic or theme of discussion on certain days.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d love to hear ideas anyone else has or if you like any of the above ideas.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Tripwire Interactive\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3ee0j\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ld\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TW_Molly\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/rs2vietnam/comments/evf9ld/rather_than_have_everyone_make_an_individual_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/rs2vietnam/comments/evf9ld/rather_than_have_everyone_make_an_individual_post/\", \"subreddit_subscribers\": 27190, \"created_utc\": 1580260215.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"KerbalSpaceProgram\", \"selftext\": \"I've been trying to get a manned space station into orbit for a while now but it just isn't working. Can somebody help?\", \"author_fullname\": \"t2_348vh6q6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What's a good design for a payload launching rocket?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/KerbalSpaceProgram\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9l9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289015.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.KerbalSpaceProgram\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been trying to get a manned space station into orbit for a while now but it just isn\\u0026#39;t working. Can somebody help?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2smr1\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9l9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Alien_Refugee\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/KerbalSpaceProgram/comments/evf9l9/whats_a_good_design_for_a_payload_launching_rocket/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/KerbalSpaceProgram/comments/evf9l9/whats_a_good_design_for_a_payload_launching_rocket/\", \"subreddit_subscribers\": 761887, \"created_utc\": 1580260215.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Astronomy\", \"selftext\": \"I need an art credit to graduate, and I was thinking of either taking Graphic Design or Photography since those could be helpful in an astronomy career, but i don't know which one!\\n\\nI'm gonna be doing an after-school astronomy program which will involve astrophotography. given that, do you think taking Photography would be better so that I could have a strong foundation? Or is that all the more reason I should do Graphic Design since I will be doing astrophotography anyway?\\n\\nthank you :)\", \"author_fullname\": \"t2_1q5b25ru\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm a high schooler looking to major in astronomy or astrophysics. Do you guys think it would be more beneficial to take a photography class or graphic design class?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/Astronomy\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9l8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289015.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.Astronomy\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI need an art credit to graduate, and I was thinking of either taking Graphic Design or Photography since those could be helpful in an astronomy career, but i don\\u0026#39;t know which one!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m gonna be doing an after-school astronomy program which will involve astrophotography. given that, do you think taking Photography would be better so that I could have a strong foundation? Or is that all the more reason I should do Graphic Design since I will be doing astrophotography anyway?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethank you :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"top\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhor\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9l8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jennaluvsturtles\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/Astronomy/comments/evf9l8/im_a_high_schooler_looking_to_major_in_astronomy/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/Astronomy/comments/evf9l8/im_a_high_schooler_looking_to_major_in_astronomy/\", \"subreddit_subscribers\": 1100407, \"created_utc\": 1580260215.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"personalfinance\", \"selftext\": \"As marked in the title; I will be moving out next summer (despite her protests). I'm going to graduate with a Bachelor's degree and I just secured a full-time job with a 5-month-long training, followed by a wage hike in the regions of $50k/year as a junior. \\n\\n\\nI would just like a good saving strategy; I realize that I will not be able to travel (which is lame because I never traveled and I wanted to backpack Europe at graduation...but this job was too good of an opportunity) but I'm securing a stable job before graduation. \\n\\n\\nMy long-term objective would be to buy my own duplex/triplex or even a condo and have my own property and capital. I currently do not have a good credit history because I did stupid things with my first credit card, but now I'm doing good. However the several hits on my record are still there and will remain there for the next 3-4 years I believe. \\n\\n\\nFor now, I'm planning on renting a room and live with roommates while continuing to aggressively save (and invest if possible). I will be moving out in July so I'd have a solid 5-6 months to save. \\n\\n\\nDo you guys think it's a good idea to start investing right away? Or simply to put as much money as possible into a savings account. What things should I prioritize and budget for? \\n\\n\\nThanks in advance!\", \"author_fullname\": \"t2_13m8qc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Canada] - Moving out of my mom's place in summer; starting new full time job next week while finishing up my bachelor's. Need tips on a good saving strategy for this upcoming summer.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/personalfinance\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"Saving\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9l7\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Saving\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.personalfinance\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs marked in the title; I will be moving out next summer (despite her protests). I\\u0026#39;m going to graduate with a Bachelor\\u0026#39;s degree and I just secured a full-time job with a 5-month-long training, followed by a wage hike in the regions of $50k/year as a junior. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would just like a good saving strategy; I realize that I will not be able to travel (which is lame because I never traveled and I wanted to backpack Europe at graduation...but this job was too good of an opportunity) but I\\u0026#39;m securing a stable job before graduation. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy long-term objective would be to buy my own duplex/triplex or even a condo and have my own property and capital. I currently do not have a good credit history because I did stupid things with my first credit card, but now I\\u0026#39;m doing good. However the several hits on my record are still there and will remain there for the next 3-4 years I believe. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now, I\\u0026#39;m planning on renting a room and live with roommates while continuing to aggressively save (and invest if possible). I will be moving out in July so I\\u0026#39;d have a solid 5-6 months to save. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo you guys think it\\u0026#39;s a good idea to start investing right away? Or simply to put as much money as possible into a savings account. What things should I prioritize and budget for? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"288a48a4-c078-11e4-87bd-22000b3e820a\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\\u200b\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qstm\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#707022\", \"id\": \"evf9l7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sperabo\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/personalfinance/comments/evf9l7/canada_moving_out_of_my_moms_place_in_summer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/personalfinance/comments/evf9l7/canada_moving_out_of_my_moms_place_in_summer/\", \"subreddit_subscribers\": 14065819, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_joho1217\", \"selftext\": \"\", \"author_fullname\": \"t2_2zcm72ar\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"haha\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/joho1217\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9l6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/u1wO0CFOHmsu_ZsjxYRO1dV7RpaELcEVK48mYcljRD8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/uz7pp8nfbmd41.jpg?auto=webp\\u0026s=c28fd795b549b8760839392d33a4d0020b58eb6d\", \"width\": 552, \"height\": 557}, \"resolutions\": [{\"url\": \"https://preview.redd.it/uz7pp8nfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=cff2735b13ef7100dcfc960b731d17c4fcf3ce77\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/uz7pp8nfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ff546916325495e480a675523347086838b84c2f\", \"width\": 216, \"height\": 217}, {\"url\": \"https://preview.redd.it/uz7pp8nfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b2b335f2ddbc5fbb428c0167cb8521cc198222a0\", \"width\": 320, \"height\": 322}], \"variants\": {}, \"id\": \"g14ZibWxGGbNmcdtSe72WV4gJw5BmFCBCb72ia-oNCc\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_ujzrp\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9l6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"joho1217\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_joho1217/comments/evf9l6/haha/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/uz7pp8nfbmd41.jpg\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"meme\", \"selftext\": \"\", \"author_fullname\": \"t2_3jk9fqbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The face you make when your dad is your brother\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/meme\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": true, \"name\": \"t3_evf9l5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/7eefDXVZi_YvxwukOyddGLjll5wwYChMtsd73pJw3VQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/b44k2qbfbmd41.jpg?auto=webp\\u0026s=99366b96b588b03148ebfab11eab6c0df5d90011\", \"width\": 4032, \"height\": 3024}, \"resolutions\": [{\"url\": \"https://preview.redd.it/b44k2qbfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=33ed546846e202b71b6e2c59acf18076ee6e422d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/b44k2qbfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a043cb14be8fe26bdab1cc74627594dab33fd111\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/b44k2qbfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9808fd4167eca8f7a79050eda9b0202b25c2189f\", \"width\": 320, \"height\": 240}, {\"url\": \"https://preview.redd.it/b44k2qbfbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=50d8f9e266a343267d2e74cba00414b4c8de8111\", \"width\": 640, \"height\": 480}, {\"url\": \"https://preview.redd.it/b44k2qbfbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=da321535c752b1e3c38759191511770ba4e6e3b4\", \"width\": 960, \"height\": 720}, {\"url\": \"https://preview.redd.it/b44k2qbfbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=6c98b4bac5f38f95e4c7b0881b6b1ae26c626b0c\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"eF6kiz7yRhMycM5I278PiIzxVWaxKyvvI3VpgZIh90c\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qi1r\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9l5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ThatRanblingKid\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/meme/comments/evf9l5/the_face_you_make_when_your_dad_is_your_brother/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/b44k2qbfbmd41.jpg\", \"subreddit_subscribers\": 755536, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_benzamide23\", \"selftext\": \"# DOWNLOAD LINK: megafile3.top/file/VA - Soul Love 2016 - A Collection Of The Finest Modern Soul (2016)\", \"author_fullname\": \"t2_52224aqm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VA - Soul Love 2016 - A Collection Of The Finest Modern Soul (2016)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/benzamide23\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9l4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.benzamide23\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDOWNLOAD LINK: megafile3.top/file/VA - Soul Love 2016 - A Collection Of The Finest Modern Soul (2016)\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_28rcy6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9l4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benzamide23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_benzamide23/comments/evf9l4/va_soul_love_2016_a_collection_of_the_finest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_benzamide23/comments/evf9l4/va_soul_love_2016_a_collection_of_the_finest/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Market76\", \"selftext\": \"\", \"author_fullname\": \"t2_320xp7q1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PS4] H: 30k caps W: 556 or some uny/str/pr(or rr/wr) armor pieces.\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"PS4\"}], \"subreddit_name_prefixed\": \"r/Market76\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"ps4\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9l1\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": \"#20cc54\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"cd32506c-6d1d-11e9-b361-0e15112e390c\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PS4\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"green tier5\", \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"+455 Karma\"}], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"self.Market76\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"9f977b78-a829-11e8-b33f-0ee05f7ae348\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"+455 Karma\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_n9nn1\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#004098\", \"id\": \"evf9l1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emanretla\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"light\", \"permalink\": \"/r/Market76/comments/evf9l1/ps4_h_30k_caps_w_556_or_some_unystrpror_rrwr/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/Market76/comments/evf9l1/ps4_h_30k_caps_w_556_or_some_unystrpror_rrwr/\", \"subreddit_subscribers\": 42586, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Rainbow6\", \"selftext\": \"\", \"author_fullname\": \"t2_3f9x3z24\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Y5S1 event leak\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Creative\"}], \"subreddit_name_prefixed\": \"r/Rainbow6\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"creative\", \"downs\": 0, \"thumbnail_height\": 59, \"hide_score\": true, \"name\": \"t3_evf9l3\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Creative\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/uXeARCyTEtewaKRVYw3cZDrLfAs7dDzbNY2IlgGeelU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/w5ida9lfbmd41.jpg?auto=webp\\u0026s=3259ba9aa7441f965a5d7da5009aba61f3dabb75\", \"width\": 434, \"height\": 183}, \"resolutions\": [{\"url\": \"https://preview.redd.it/w5ida9lfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=64fa6009b0bcac2cc254387b602a0ac28b72fb22\", \"width\": 108, \"height\": 45}, {\"url\": \"https://preview.redd.it/w5ida9lfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4cdb141e54deaca28f8a4d2d7e4c7593ff1143e6\", \"width\": 216, \"height\": 91}, {\"url\": \"https://preview.redd.it/w5ida9lfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8a84de6105b931cde3340475cf2204a197720cbe\", \"width\": 320, \"height\": 134}], \"variants\": {}, \"id\": \"APl-cUyIgafVWc3n3J6ukb2BFb0Zh3PcjrD5ODIc8BY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"c04d5f7e-412d-11e5-89de-0e60d8112001\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2t1bl\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#7193ff\", \"id\": \"evf9l3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SoySaucyy\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/Rainbow6/comments/evf9l3/y5s1_event_leak/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/w5ida9lfbmd41.jpg\", \"subreddit_subscribers\": 937828, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"horror\", \"selftext\": \"This film\\u2019s been on my list for a while but I kept putting it off because I figured that there was no way that the first hour could match the finale (Which I had a vague idea about).\\n\\nFinally watched it today (I was out sick and my wife said to treat myself), and man was this a wild ride. It\\u2019s a little slow in parts, but the dialogue is so bizarre as are some of the characters, especially Mama. Well worth the watch, especially since it\\u2019s free now on Prime. And I\\u2019ve heard you should go into the film with zero prior knowledge to really enjoy it, but even with knowing part of the ending I still enjoyed it quite a bit.\\n\\nI will say that that finale hits hard. My wife, who isn\\u2019t really a horror fan anyways, needed to delay us going to dinner until she got the imagery out of her head. So don\\u2019t watch hungry maybe?\", \"author_fullname\": \"t2_46ji05u\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Society (1989) is so worth the watch if you haven\\u2019t seen it yet\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Discussion\"}], \"subreddit_name_prefixed\": \"r/horror\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"discussion\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9l0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.horror\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis film\\u2019s been on my list for a while but I kept putting it off because I figured that there was no way that the first hour could match the finale (Which I had a vague idea about).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally watched it today (I was out sick and my wife said to treat myself), and man was this a wild ride. It\\u2019s a little slow in parts, but the dialogue is so bizarre as are some of the characters, especially Mama. Well worth the watch, especially since it\\u2019s free now on Prime. And I\\u2019ve heard you should go into the film with zero prior knowledge to really enjoy it, but even with knowing part of the ending I still enjoyed it quite a bit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will say that that finale hits hard. My wife, who isn\\u2019t really a horror fan anyways, needed to delay us going to dinner until she got the imagery out of her head. So don\\u2019t watch hungry maybe?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"3a1cd228-8f0a-11e1-988a-12313d051e91\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh9x\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9l0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverwatchTeacher\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/horror/comments/evf9l0/society_1989_is_so_worth_the_watch_if_you_havent/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/horror/comments/evf9l0/society_1989_is_so_worth_the_watch_if_you_havent/\", \"subreddit_subscribers\": 1338555, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Maine\", \"selftext\": \"\", \"author_fullname\": \"t2_3bb8tnya\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"20 something year old men of Maine, how hard is it to find a girlfriend in your state? I imagine it must be tough given how rural it is.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/Maine\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"question\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9kz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.Maine\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"94cc85aa-19a1-11e4-a3dc-12313b0e95bd\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qts0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BrettD14\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/Maine/comments/evf9kz/20_something_year_old_men_of_maine_how_hard_is_it/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/Maine/comments/evf9kz/20_something_year_old_men_of_maine_how_hard_is_it/\", \"subreddit_subscribers\": 28137, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_eslamm90\", \"selftext\": \"can anyone help me to decrypt the TOPI ransomware encrypted files\", \"author_fullname\": \"t2_137bylr9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TOPI Ransomware\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/eslamm90\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ky\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289014.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.eslamm90\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecan anyone help me to decrypt the TOPI ransomware encrypted files\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_humpp\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ky\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eslamm90\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_eslamm90/comments/evf9ky/topi_ransomware/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_eslamm90/comments/evf9ky/topi_ransomware/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"techannouncercom\", \"selftext\": \"\", \"author_fullname\": \"t2_uhhzp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Global Piezo Nanopositioner Controllers Market 2019 Growth Opportunities - Newport, Aerotech, Mad City Labs, PI USA\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/techannouncercom\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9kx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"techannouncer.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_12t1oe\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConnectedInnovation\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/techannouncercom/comments/evf9kx/global_piezo_nanopositioner_controllers_market/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://techannouncer.com/global-piezo-nanopositioner-controllers-market-2019-growth-opportunities-newport-aerotech-mad-city-labs-pi-usa/\", \"subreddit_subscribers\": 31, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"buildapc\", \"selftext\": \"I have a pc that I would like to give to a buddy, but I was wondering if there was a way to wipe it clean but keep the OS so they don\\u2019t have to buy another windows activation key.\", \"author_fullname\": \"t2_12zt75\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Gifting my \\u201cold\\u201d build\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Miscellaneous\"}], \"subreddit_name_prefixed\": \"r/buildapc\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"miscellaneous\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9kv\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Miscellaneous\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.buildapc\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a pc that I would like to give to a buddy, but I was wondering if there was a way to wipe it clean but keep the OS so they don\\u2019t have to buy another windows activation key.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"bf867444-6ecd-11e6-902a-0e7402454d61\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rnve\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#bbbdbf\", \"id\": \"evf9kv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bubbaespen\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/buildapc/comments/evf9kv/gifting_my_old_build/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/buildapc/comments/evf9kv/gifting_my_old_build/\", \"subreddit_subscribers\": 1915856, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"RandomActsofCards\", \"selftext\": \"It really brought a smile to my face when there was a cute little decorated envelope staring up at me instead of another bill. Thank you so much for the card and goodies --I love Hello Kitty!!! It's probably my first Valentine in close to 10 years, and it was super.\", \"author_fullname\": \"t2_3vv6mnmu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Thank You] u/feellikebeingajerk for choosing me as a Valentine\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Thank You\"}], \"subreddit_name_prefixed\": \"r/RandomActsofCards\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"thanks\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ku\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": \"transparent\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"fe44527e-b0be-11e4-96ad-22000b3c0e15\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Thank You\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"bronze-envelope\", \"author_flair_richtext\": [{\"a\": \":1-9:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/j47imb3bqf941_t5_2wnq7/1-9\"}], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"self.RandomActsofCards\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt really brought a smile to my face when there was a cute little decorated envelope staring up at me instead of another bill. Thank you so much for the card and goodies --I love Hello Kitty!!! It\\u0026#39;s probably my first Valentine in close to 10 years, and it was super.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"c062b712-d391-11e8-9ff3-0ecfb6034e6c\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \":1-9:\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2wnq7\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#443266\", \"id\": \"evf9ku\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"welshfancy\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/RandomActsofCards/comments/evf9ku/thank_you_ufeellikebeingajerk_for_choosing_me_as/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/RandomActsofCards/comments/evf9ku/thank_you_ufeellikebeingajerk_for_choosing_me_as/\", \"subreddit_subscribers\": 49684, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"tonightsdinner\", \"selftext\": \"\", \"author_fullname\": \"t2_11saba\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Seared boneless short ribs, fresh mac \\u0026 cheese, teriyaki glazed broccoli.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/tonightsdinner\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": true, \"name\": \"t3_evf9kt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/e3Vf_1NUwYgmKMq1ZAoWWFVI4fKHPwLN2vbJOboQKcM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ha5gtxffbmd41.jpg?auto=webp\\u0026s=1ee858cddc4973b49cccf3d98781ab5ea0acb0ab\", \"width\": 2576, \"height\": 1932}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ha5gtxffbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f0818ad6e12778348882df9af0b0a269bd6bb059\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/ha5gtxffbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=07116700f417b9e904c18553546a89f4c3c550fb\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/ha5gtxffbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3f5b1f0b42856fd4ecd69933bc09c172da12617f\", \"width\": 320, \"height\": 240}, {\"url\": \"https://preview.redd.it/ha5gtxffbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d511eb4ed094134163f050c4398a59e09b454007\", \"width\": 640, \"height\": 480}, {\"url\": \"https://preview.redd.it/ha5gtxffbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=44535e198bc849e69a4a8dd983634da1e7f73e5d\", \"width\": 960, \"height\": 720}, {\"url\": \"https://preview.redd.it/ha5gtxffbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=dc14968b9b7c0a4cc5abb0afbb1248f338dd0228\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"p9C101o-PMpW2dY727vWHAjTF0IQXu8unwBRH0BJzBk\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qxea\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Penny_InTheAir\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/tonightsdinner/comments/evf9kt/seared_boneless_short_ribs_fresh_mac_cheese/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/ha5gtxffbmd41.jpg\", \"subreddit_subscribers\": 86263, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"imsorryjon\", \"selftext\": \"\", \"author_fullname\": \"t2_5h8qkztn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm sorry, Jon... but your time is up.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/imsorryjon\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": true, \"name\": \"t3_evf9kr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/lXdytEkIk2jGbsoOEE-ze-AtY_Pypaqkfk2H9MIra8g.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/qyws578fbmd41.jpg?auto=webp\\u0026s=fcf38ffc86d9a290ab616cd993ea28506eed621b\", \"width\": 4032, \"height\": 3024}, \"resolutions\": [{\"url\": \"https://preview.redd.it/qyws578fbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=53280f9a81c4e67a9c1a472b78c36ca841ae2aed\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/qyws578fbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=89c183bd8e6de72167798909cac4c2ac127a70c4\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/qyws578fbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9437f95b1a24fd89f815869eade60563fde63827\", \"width\": 320, \"height\": 240}, {\"url\": \"https://preview.redd.it/qyws578fbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e35a9fa1d036968f96879d46e4b291671f7f59e0\", \"width\": 640, \"height\": 480}, {\"url\": \"https://preview.redd.it/qyws578fbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0446bbed03d39ea45f3af8ff354a3acfed6c30e0\", \"width\": 960, \"height\": 720}, {\"url\": \"https://preview.redd.it/qyws578fbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b14929d94bc2f8d0266376de2a691544e50867d1\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"IxwUOz63k-EVPt00sbYBnF5hAkg7yDvE30BwJx03lJk\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_plyak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CrispyCreeper22\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/imsorryjon/comments/evf9kr/im_sorry_jon_but_your_time_is_up/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/qyws578fbmd41.jpg\", \"subreddit_subscribers\": 761836, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"CommentAwardsForum\", \"selftext\": \"\", \"author_fullname\": \"t2_5h5e790x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Haha funny\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/CommentAwardsForum\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9ks\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/X7fWgn-celQNiyCDGdVRfPy2CbtB47_01xiAgwAljp0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/7prc06ifbmd41.jpg?auto=webp\\u0026s=c8f4133ec808976d2fd3c88b1638533fdfe255d9\", \"width\": 768, \"height\": 768}, \"resolutions\": [{\"url\": \"https://preview.redd.it/7prc06ifbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1abc54d9afa1ee77d6d0c3f050f16618221b5753\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/7prc06ifbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b16532175a25e7d8d5c17013b54baca0a036202f\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/7prc06ifbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a66cb56659c640e5340df7db994705a663ccf7a2\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/7prc06ifbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2d17e5f5ac8511d6f10be8364d54ac6c684d15eb\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"3Lg1NAASnOjPvD7OPyDAiT_4d_Qf6yvaw1ulaOkn8KU\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_oewkt\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ks\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pokemongamer86\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/CommentAwardsForum/comments/evf9ks/haha_funny/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/7prc06ifbmd41.jpg\", \"subreddit_subscribers\": 24685, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"ARG\", \"selftext\": \"I understand this may be stereotypical for an ARG, but once a player gets further into the beginning of the game, I want to create a recruitment letter from an organization that is tracking a missing prisoner. I want to provide the sense that the organization is into anonymity and secrecy, without giving off that \\\"This is cheesy\\\" vibe. If anyone would be willing to help, that would be greatly appreciated.\", \"author_fullname\": \"t2_166z2y43\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Letter Creation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/ARG\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9kq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.ARG\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI understand this may be stereotypical for an ARG, but once a player gets further into the beginning of the game, I want to create a recruitment letter from an organization that is tracking a missing prisoner. I want to provide the sense that the organization is into anonymity and secrecy, without giving off that \\u0026quot;This is cheesy\\u0026quot; vibe. If anyone would be willing to help, that would be greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qlnd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"anon94475\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/ARG/comments/evf9kq/letter_creation/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/ARG/comments/evf9kq/letter_creation/\", \"subreddit_subscribers\": 45552, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"CityPorn\", \"selftext\": \"\", \"author_fullname\": \"t2_c9sm7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Toronto in the fog.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/CityPorn\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 87, \"hide_score\": true, \"name\": \"t3_evf9ko\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QwDD3bnSm-Y2PdrwshQWR64Yuq2Ntd37eisr6GLnWoM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": [\"photography\"], \"is_self\": false, \"mod_note\": null, \"created\": 1580289013.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/g9d0iodcbmd41.jpg?auto=webp\\u0026s=d8b5e48ced447d5a32cd47f1311dfbc7f1d8071e\", \"width\": 1920, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://preview.redd.it/g9d0iodcbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=72b7c73955bc74b104a713c8fcea35e7f170e41d\", \"width\": 108, \"height\": 67}, {\"url\": \"https://preview.redd.it/g9d0iodcbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b01667c1d1b76fa97fb7203b5103c33a291babfb\", \"width\": 216, \"height\": 135}, {\"url\": \"https://preview.redd.it/g9d0iodcbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=932475bfc2e9887b9c6411c7d197fc8c8bfee39c\", \"width\": 320, \"height\": 200}, {\"url\": \"https://preview.redd.it/g9d0iodcbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e6dcbe92e4ace6380406bb6cb3a6574c856f4156\", \"width\": 640, \"height\": 400}, {\"url\": \"https://preview.redd.it/g9d0iodcbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a538125a7721d14d42ec7d2f6547d90274710ded\", \"width\": 960, \"height\": 600}, {\"url\": \"https://preview.redd.it/g9d0iodcbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=6a9be2dcd7175085d44c44bb710a652194b66327\", \"width\": 1080, \"height\": 675}], \"variants\": {}, \"id\": \"TaqE6bGH2ATfe2zHSbECsQTOJeDka-qKoRZspAS2w_k\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2scjs\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ko\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"5_Frog_Margin\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/CityPorn/comments/evf9ko/toronto_in_the_fog/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/g9d0iodcbmd41.jpg\", \"subreddit_subscribers\": 526483, \"created_utc\": 1580260213.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Celebhub\", \"selftext\": \"\", \"author_fullname\": \"t2_34qnhgey\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Kate Beckinsale\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/Celebhub\", \"hidden\": false, \"pwls\": 0, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9kn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"transparent\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fcautiousfearlessfugu\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fcautiousfearlessfugu\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FCautiousFearlessFugu-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"576\\\" height=\\\"720\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 576, \"scrolling\": false, \"height\": 720}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"46602f94-fa87-11e9-86e5-0ec0ef4d4f88\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share DASH 720 GIFs by koolcat89 on Gfycat\", \"title\": \"DASH 720\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 720, \"width\": 576, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fcautiousfearlessfugu\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fcautiousfearlessfugu\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FCautiousFearlessFugu-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"576\\\" height=\\\"720\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 256, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/CautiousFearlessFugu-size_restricted.gif\", \"thumbnail_height\": 320}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fcautiousfearlessfugu\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fcautiousfearlessfugu\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FCautiousFearlessFugu-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"576\\\" height=\\\"720\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 576, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/evf9kn\", \"height\": 720}, \"link_flair_text\": \"GIF\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289012.0, \"link_flair_type\": \"text\", \"wls\": 0, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?format=png8\\u0026s=e4cfad0ce395b8c64b1e5fa365ca6b24de45a85e\", \"width\": 256, \"height\": 320}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=398160b5c1e362f26bb6a9313ec3b0831347a09a\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=627d07a35979f928143c4927a4b34c3e3f418749\", \"width\": 216, \"height\": 270}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?blur=40\\u0026format=png8\\u0026s=90e362c9cca4665fb511f4fa42b62df386456b52\", \"width\": 256, \"height\": 320}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=fe6eccc49f12811aceb20fcaeae3ca59cdc9ade8\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=b92b94af3e4c7284d4d06fce452e7475c22e71fe\", \"width\": 216, \"height\": 270}]}, \"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?s=711042361086be4b1800984346845d5c95daee2f\", \"width\": 256, \"height\": 320}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=108\\u0026crop=smart\\u0026s=7f0cd12c7a48fc0d77722055f26a1532e6824fcf\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=216\\u0026crop=smart\\u0026s=fdb300a6f182733fd3c81a1ec133b97f84b80854\", \"width\": 216, \"height\": 270}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?format=mp4\\u0026s=4b0919918cbc2aba8dac49f78669970b07655d88\", \"width\": 256, \"height\": 320}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=108\\u0026format=mp4\\u0026s=bbca8592a3d1ea6a7ae6d76086df1c6ccf9cc507\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=216\\u0026format=mp4\\u0026s=28d04aeaa09a6d43407f88361465aa30e1bbee11\", \"width\": 216, \"height\": 270}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?blur=40\\u0026format=png8\\u0026s=90e362c9cca4665fb511f4fa42b62df386456b52\", \"width\": 256, \"height\": 320}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=fe6eccc49f12811aceb20fcaeae3ca59cdc9ade8\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/MhGrIxcsStrloWQZsg2LKz8oLa7tOtjuruh9_S2qDgA.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=b92b94af3e4c7284d4d06fce452e7475c22e71fe\", \"width\": 216, \"height\": 270}]}}, \"id\": \"luiHK9XBtGP7jj5KDaXaYUcHi38DD5ui0LaP4TvQH00\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\\ud83e\\udd47 Top 100 Poster\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_iuc8g\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KoolCat89\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"no_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/Celebhub/comments/evf9kn/kate_beckinsale/\", \"parent_whitelist_status\": \"no_ads\", \"stickied\": false, \"url\": \"https://gfycat.com/cautiousfearlessfugu\", \"subreddit_subscribers\": 377852, \"created_utc\": 1580260212.0, \"num_crossposts\": 0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share DASH 720 GIFs by koolcat89 on Gfycat\", \"title\": \"DASH 720\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 720, \"width\": 576, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fcautiousfearlessfugu\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fcautiousfearlessfugu\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FCautiousFearlessFugu-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"576\\\" height=\\\"720\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 256, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/CautiousFearlessFugu-size_restricted.gif\", \"thumbnail_height\": 320}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_benzamide23\", \"selftext\": \"# DOWNLOAD LINK: megafile3.top/file/VA - Singles Awareness Day (2020)\", \"author_fullname\": \"t2_52224aqm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VA - Singles Awareness Day (2020)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/benzamide23\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9kk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289012.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.benzamide23\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDOWNLOAD LINK: megafile3.top/file/VA - Singles Awareness Day (2020)\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_28rcy6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benzamide23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_benzamide23/comments/evf9kk/va_singles_awareness_day_2020/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_benzamide23/comments/evf9kk/va_singles_awareness_day_2020/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260212.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_portalrbn\", \"selftext\": \"\", \"author_fullname\": \"t2_16nv4wcg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clube de vantagens pode ser alternativa econ\\u00f4mica para gastos com sa\\u00fade\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/portalrbn\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 88, \"hide_score\": true, \"name\": \"t3_evf9kj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/U32KYLEE424Sj-pTNXlcuDCGokqcKdv6ZEy1MXpiPzM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289012.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"portalrbn.com.br\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8jdmr087zJAuYR3GVLVwyrdoAxI0NEt4V32YA0p5Omk.jpg?auto=webp\\u0026s=e53b27b26a91057e646f45bb50cfbb50a395f2a6\", \"width\": 1024, \"height\": 649}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8jdmr087zJAuYR3GVLVwyrdoAxI0NEt4V32YA0p5Omk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6dae9270fbed30a3abf3ff91ab9f88bb528e90f7\", \"width\": 108, \"height\": 68}, {\"url\": \"https://external-preview.redd.it/8jdmr087zJAuYR3GVLVwyrdoAxI0NEt4V32YA0p5Omk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4323cae8771789ad16b18f4bda9c013bd9a3720f\", \"width\": 216, \"height\": 136}, {\"url\": \"https://external-preview.redd.it/8jdmr087zJAuYR3GVLVwyrdoAxI0NEt4V32YA0p5Omk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5085b846dc37e4ab30f6dd5855941d9ef2da9caa\", \"width\": 320, \"height\": 202}, {\"url\": \"https://external-preview.redd.it/8jdmr087zJAuYR3GVLVwyrdoAxI0NEt4V32YA0p5Omk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ced96f7449fb26038ea6d89bb4db4c7d36a4594b\", \"width\": 640, \"height\": 405}, {\"url\": \"https://external-preview.redd.it/8jdmr087zJAuYR3GVLVwyrdoAxI0NEt4V32YA0p5Omk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ac1deda7cd3d41bf39f8434e01a07a18f723074c\", \"width\": 960, \"height\": 608}], \"variants\": {}, \"id\": \"rGtzN_E7-N9GISXBkOEENHunPIPyFNvqgzXMjs2h0ko\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_hzq3s\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"portalrbn\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_portalrbn/comments/evf9kj/clube_de_vantagens_pode_ser_alternativa_econ\\u00f4mica/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://portalrbn.com.br/2020/01/clube-de-vantagens-pode-ser-alternativa-economica-para-gastos-com-saude/?feed_id=4292\\u0026_unique_id=5e30db732eaa0\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260212.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"MixerStreamingStartup\", \"selftext\": \" \\n\\nHey, guys, I have just started streaming with my friend Corey If you'd like to check it out I will provide the link in the sticky thread :) we stream COD Roblox and some other things swing by around 5pm if you'd like no pressure and if you'd like you could give us some ideas or help us understand how the stream could be better.\\n\\n[https://mixer.com/RichardHammonds](https://mixer.com/RichardHammonds)\", \"author_fullname\": \"t2_42th0kie\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Streamer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/MixerStreamingStartup\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9kh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289012.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.MixerStreamingStartup\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, guys, I have just started streaming with my friend Corey If you\\u0026#39;d like to check it out I will provide the link in the sticky thread :) we stream COD Roblox and some other things swing by around 5pm if you\\u0026#39;d like no pressure and if you\\u0026#39;d like you could give us some ideas or help us understand how the stream could be better.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://mixer.com/RichardHammonds\\\"\\u003Ehttps://mixer.com/RichardHammonds\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_22vzxe\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RichardHammonds72\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/MixerStreamingStartup/comments/evf9kh/new_streamer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/MixerStreamingStartup/comments/evf9kh/new_streamer/\", \"subreddit_subscribers\": 8, \"created_utc\": 1580260212.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"TittyDrop\", \"selftext\": \"\", \"author_fullname\": \"t2_5i8qw31j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"tiDDy Drops\\ud83d\\udca7\\ud83d\\udca7 {F24] [oc] \\ud83d\\ude08\\u2728\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/TittyDrop\", \"hidden\": false, \"pwls\": 3, \"link_flair_css_class\": \"eight\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": true, \"name\": \"t3_evf9kd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fnecessarycoarseappaloosa\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fnecessarycoarseappaloosa\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FNecessaryCoarseAppaloosa-size_restricted.gif\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share IMG 7852 GIFs on Gfycat\", \"title\": \"Drop\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fnecessarycoarseappaloosa\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fnecessarycoarseappaloosa\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FNecessaryCoarseAppaloosa-size_restricted.gif\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 520, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/NecessaryCoarseAppaloosa-size_restricted.gif\", \"thumbnail_height\": 293}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fnecessarycoarseappaloosa\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fnecessarycoarseappaloosa\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FNecessaryCoarseAppaloosa-size_restricted.gif\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/evf9kd\", \"height\": 338}, \"link_flair_text\": \"OC \\u2022 Titty Drop\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289012.0, \"link_flair_type\": \"text\", \"wls\": 3, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?format=png8\\u0026s=b8cdb151c35ee3b725898e0cb41ecc85d2ac167c\", \"width\": 520, \"height\": 293}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=1722310bd83b2dfb9194134b7e4a301455bbd373\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=223350ca5be1e11c97600ee3b7c731001c292b89\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=67df29b50ed4adc8f3801e94cfc186d6cd987823\", \"width\": 320, \"height\": 180}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?blur=40\\u0026format=png8\\u0026s=e06e70299b97ddde4f86cef2974744bd7bf2c9c5\", \"width\": 520, \"height\": 293}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=a2ecac59de5d684b8e478061c976aefc4ea4b710\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=bbfb53c2c10eeff984aadffc3de11aeeb4851223\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=png8\\u0026s=7da4a557651422d7d4e39e54674b6b42eb1650e4\", \"width\": 320, \"height\": 180}]}, \"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?s=4917d5e746c674cf24f8f0851779d9d349d83dfa\", \"width\": 520, \"height\": 293}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=108\\u0026crop=smart\\u0026s=736989d96a6b9909c2aab9b25a16329912178596\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=216\\u0026crop=smart\\u0026s=a035bfeb708a6ea32df8a7e3413af04603fdbf72\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=320\\u0026crop=smart\\u0026s=ee081f88a4b170ff1b71e90c1dc1877d78f15fc5\", \"width\": 320, \"height\": 180}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?format=mp4\\u0026s=30a98b45eb60576c55a268e38305f7334edc4cfe\", \"width\": 520, \"height\": 293}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=108\\u0026format=mp4\\u0026s=4fdf893f0c6bc0022b38bec3deebff7d63cf60b8\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=216\\u0026format=mp4\\u0026s=6afa97153637a9103901970a8eee3adf97fdf48a\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=320\\u0026format=mp4\\u0026s=db5ea68aab1654597bffe98c4a43fc02ca273f4c\", \"width\": 320, \"height\": 180}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?blur=40\\u0026format=png8\\u0026s=e06e70299b97ddde4f86cef2974744bd7bf2c9c5\", \"width\": 520, \"height\": 293}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=a2ecac59de5d684b8e478061c976aefc4ea4b710\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=bbfb53c2c10eeff984aadffc3de11aeeb4851223\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/XJnqL_iU8PSKQdQ4Rl2SjQQ-8eHra8tCXSo8A86qyEQ.gif?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=png8\\u0026s=7da4a557651422d7d4e39e54674b6b42eb1650e4\", \"width\": 320, \"height\": 180}]}}, \"id\": \"N81mqeNUu1LDEhRd9FBWgvqPmPOunNj-VpYUpA_vg8I\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/v0a9j5qfbmd41/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/v0a9j5qfbmd41/DASH_96\", \"dash_url\": \"https://v.redd.it/v0a9j5qfbmd41/DASHPlaylist.mpd\", \"duration\": 4, \"hls_url\": \"https://v.redd.it/v0a9j5qfbmd41/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2unb2\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Scarlettnine\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"promo_adult_nsfw\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/TittyDrop/comments/evf9kd/tiddy_drops_f24_oc/\", \"parent_whitelist_status\": \"promo_adult_nsfw\", \"stickied\": false, \"url\": \"https://gfycat.com/necessarycoarseappaloosa\", \"subreddit_subscribers\": 748080, \"created_utc\": 1580260212.0, \"num_crossposts\": 0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share IMG 7852 GIFs on Gfycat\", \"title\": \"Drop\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fnecessarycoarseappaloosa\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fnecessarycoarseappaloosa\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FNecessaryCoarseAppaloosa-size_restricted.gif\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 520, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/NecessaryCoarseAppaloosa-size_restricted.gif\", \"thumbnail_height\": 293}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"bodyperfection\", \"selftext\": \"\", \"author_fullname\": \"t2_17acys\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Maren Tschinkel\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/bodyperfection\", \"hidden\": false, \"pwls\": 3, \"link_flair_css_class\": \"green\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9kc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Picture\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289012.0, \"link_flair_type\": \"text\", \"wls\": 3, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?auto=webp\\u0026s=ee98823cfc7f6971db1640a6dc522503b5eb54ac\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6dff16f0f1b633bf9a67c73b47bda745ccc2221e\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e78013ba4c14dd8176d24e51776aad5260da0dd3\", \"width\": 216, \"height\": 270}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=22d7085ebed059fa362eb647eb6fba27981074b9\", \"width\": 320, \"height\": 400}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=53a189b3dad8466595efb24e5e20dab7423f411b\", \"width\": 640, \"height\": 800}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=84b798276625890088cda196ecbc10a80e0591fd\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a3c4fbf5afe24397e6a7190ae3a11a4f3180e6d9\", \"width\": 1080, \"height\": 1350}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=0b25355c45d5d402775b83bb861711ba81712a60\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=1801fa6123115251b0d87292bf5fedc568ff9267\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=670ab304ebb47391d0772e2e57725aa288b0287c\", \"width\": 216, \"height\": 270}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=4551e292252f0b27e3b4ab1a07c503858ba292b2\", \"width\": 320, \"height\": 400}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=dee42051a33e3f9eac36bc76547aefa664a3d1a2\", \"width\": 640, \"height\": 800}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=997168cbbf83d2297c2cf034c3bc595f2ce77153\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=db08d30d735d6a4c207f67619dc12fe8e8884065\", \"width\": 1080, \"height\": 1350}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=0b25355c45d5d402775b83bb861711ba81712a60\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=1801fa6123115251b0d87292bf5fedc568ff9267\", \"width\": 108, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=670ab304ebb47391d0772e2e57725aa288b0287c\", \"width\": 216, \"height\": 270}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=4551e292252f0b27e3b4ab1a07c503858ba292b2\", \"width\": 320, \"height\": 400}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=dee42051a33e3f9eac36bc76547aefa664a3d1a2\", \"width\": 640, \"height\": 800}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=997168cbbf83d2297c2cf034c3bc595f2ce77153\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://external-preview.redd.it/A_qxlO4D5Z1ux5fSD1PAfZyDAJCAgolbxo61VJW3NgU.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=db08d30d735d6a4c207f67619dc12fe8e8884065\", \"width\": 1080, \"height\": 1350}]}}, \"id\": \"xmiDQu2qPXMbz34ixzoZ24e0ywDFG-LeFXwQaIllaN4\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_38ob7\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"z22222\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"promo_adult_nsfw\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/bodyperfection/comments/evf9kc/maren_tschinkel/\", \"parent_whitelist_status\": \"promo_adult_nsfw\", \"stickied\": false, \"url\": \"https://i.imgur.com/sMOa0oJ.jpg\", \"subreddit_subscribers\": 399454, \"created_utc\": 1580260212.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Warframe\", \"selftext\": \"\", \"author_fullname\": \"t2_3sqr8xp1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Not just a 7 day booster.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/Warframe\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"scr\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": true, \"name\": \"t3_evf9kb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Screenshot\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/MvSOHgL1d7FNO52ETSGkLHa6Yt1eoxuGGPD6hwhMXDI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289011.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/o7xp1d9fbmd41.jpg?auto=webp\\u0026s=539f35f5bc4ac95a696e9fbc54bd67d38ca644d5\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/o7xp1d9fbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b0c94e86144bf02ace372a5e93c599c967057814\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/o7xp1d9fbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7e7a815874daf1f7b012a75eb42704d564e53c56\", \"width\": 216, \"height\": 121}, {\"url\": \"https://preview.redd.it/o7xp1d9fbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c90e929c7debaba1d030333a025c4a7de2c6b75b\", \"width\": 320, \"height\": 180}, {\"url\": \"https://preview.redd.it/o7xp1d9fbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=637e29a26a839638bbfa3236a26ad0a991183fa8\", \"width\": 640, \"height\": 360}, {\"url\": \"https://preview.redd.it/o7xp1d9fbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=79c4a7f3f31aafbdbd47ae9242f941ae6157eff3\", \"width\": 960, \"height\": 540}, {\"url\": \"https://preview.redd.it/o7xp1d9fbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c2a63320286dc9396310df77fb2fcf7773374ca3\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"82WpgZZaPJgPOmSLoW2GxCs1WdLQod6fo-LA_VnQzcY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2urg0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9kb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DrTravesty\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/Warframe/comments/evf9kb/not_just_a_7_day_booster/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/o7xp1d9fbmd41.jpg\", \"subreddit_subscribers\": 396283, \"created_utc\": 1580260211.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"libertarianmeme\", \"selftext\": \"\", \"author_fullname\": \"t2_4b651ocz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why did no one tell me??\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/libertarianmeme\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9ka\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nfaTwj51NSRXBVvgWhPTQjvQSBlvDof08sVXIhykvbU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289011.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/e0zoyabfbmd41.jpg?auto=webp\\u0026s=ec2aa21945f797d3033969ce858f99ef528ffd9f\", \"width\": 500, \"height\": 576}, \"resolutions\": [{\"url\": \"https://preview.redd.it/e0zoyabfbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7fd80c16b61775cec572920405493d3f505fa066\", \"width\": 108, \"height\": 124}, {\"url\": \"https://preview.redd.it/e0zoyabfbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5253ce74d823938e819f66c3bedb05e7d090b88a\", \"width\": 216, \"height\": 248}, {\"url\": \"https://preview.redd.it/e0zoyabfbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=75da7d602dbc3a28e51536f36b665b45888e05ce\", \"width\": 320, \"height\": 368}], \"variants\": {}, \"id\": \"xkINYctmf_3SISVECY4lRBA-OAgk6ihHDtzGzAv50LU\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2te5l\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ka\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"satorsquarepants\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/libertarianmeme/comments/evf9ka/why_did_no_one_tell_me/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/e0zoyabfbmd41.jpg\", \"subreddit_subscribers\": 46316, \"created_utc\": 1580260211.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"author_fullname\": \"t2_4xcpzqor\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Carl says hi\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 127, \"hide_score\": true, \"name\": \"t3_evf9k8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/d9FlvDmL6qol8ITMQF0vcprwFxLbGgDsA54RwOdy8p4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289011.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/lkv10s2fbmd41.jpg?auto=webp\\u0026s=2de3c9d274a0a532cf7f4fa711bfd4037b08b565\", \"width\": 1079, \"height\": 982}, \"resolutions\": [{\"url\": \"https://preview.redd.it/lkv10s2fbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=76934969f184b5c7800c6117cd8876497f7073e6\", \"width\": 108, \"height\": 98}, {\"url\": \"https://preview.redd.it/lkv10s2fbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=faecb072910b6eaa0d66e058bb855fc18c460c1c\", \"width\": 216, \"height\": 196}, {\"url\": \"https://preview.redd.it/lkv10s2fbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=90e5f47b0ac9d8d6d8623eb8957ae292079f6884\", \"width\": 320, \"height\": 291}, {\"url\": \"https://preview.redd.it/lkv10s2fbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1bfdfc9027eaca1b04de1f15bfadff04872b8388\", \"width\": 640, \"height\": 582}, {\"url\": \"https://preview.redd.it/lkv10s2fbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=de56542fb7fb08ac4332ea08632246d954e9eb94\", \"width\": 960, \"height\": 873}], \"variants\": {}, \"id\": \"2L3s4cRpvalprmbcpmgowMX93_HAJl4Xiao5H4LmQkA\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9k8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doggocatto12\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/evf9k8/carl_says_hi/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/lkv10s2fbmd41.jpg\", \"subreddit_subscribers\": 28328356, \"created_utc\": 1580260211.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"juryduty\", \"selftext\": \"Hey guys, \\n So I have been selected to go for a jury selection interview sometime next month. What are my chances of getting picked as a full time uni student? I really hope that I won\\u2019t get picked as it could interfere with my studies. I\\u2019m in Canada by the way. Any input will be much appreciated!\", \"author_fullname\": \"t2_2rnk7437\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Jury Duty as a full time student\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/juryduty\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9k7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289011.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.juryduty\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys, \\n So I have been selected to go for a jury selection interview sometime next month. What are my chances of getting picked as a full time uni student? I really hope that I won\\u2019t get picked as it could interfere with my studies. I\\u2019m in Canada by the way. Any input will be much appreciated!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rkpz\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9k7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_MasterWooshi\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/juryduty/comments/evf9k7/jury_duty_as_a_full_time_student/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/juryduty/comments/evf9k7/jury_duty_as_a_full_time_student/\", \"subreddit_subscribers\": 277, \"created_utc\": 1580260211.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"NSFW_Tributes\", \"selftext\": \"gonna be on for a while and will be selling cock or cum tributes. I can make them on the longer side and also do add ons like degrading or dirty talk. Let me give you the best tribute you've gotten! Either chat me on here or my Kik is on my profile!\", \"author_fullname\": \"t2_3qouf0hn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"(M4A) cock and cum tributes available!!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/NSFW_Tributes\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9k6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289011.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.NSFW_Tributes\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egonna be on for a while and will be selling cock or cum tributes. I can make them on the longer side and also do add ons like degrading or dirty talk. Let me give you the best tribute you\\u0026#39;ve gotten! Either chat me on here or my Kik is on my profile!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_34fkk\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9k6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pstewartp1234\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/NSFW_Tributes/comments/evf9k6/m4a_cock_and_cum_tributes_available/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/NSFW_Tributes/comments/evf9k6/m4a_cock_and_cum_tributes_available/\", \"subreddit_subscribers\": 42935, \"created_utc\": 1580260211.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"CommentAwardsForum\", \"selftext\": \"\", \"author_fullname\": \"t2_5h5e790x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Haha funny\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/CommentAwardsForum\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9k5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/x0p5ohFhDLfPSeYJFyBsyrHxJGKL64-CeID2OZWagio.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289011.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/7ymze3afbmd41.jpg?auto=webp\\u0026s=2d897b235a5e3c0ea6ded65106a2c04e5fab03ad\", \"width\": 768, \"height\": 768}, \"resolutions\": [{\"url\": \"https://preview.redd.it/7ymze3afbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f2802ba6f2e91dd00df5a1fcc7975fffb96fee18\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/7ymze3afbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3b3747fa5cc1d488e3456920b99f3d222fb87607\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/7ymze3afbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c9a9bfd290efde30ed41546823efcf8ac9fbf3ec\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/7ymze3afbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2a3cddaffe11d25e88de21673cc79d579130a0c7\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"j4XekO5STKVcmZrx03kEKUOGnz3d4_jQ69IRZNh1tpE\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_oewkt\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9k5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pokemongamer86\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/CommentAwardsForum/comments/evf9k5/haha_funny/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/7ymze3afbmd41.jpg\", \"subreddit_subscribers\": 24685, \"created_utc\": 1580260211.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_benzamide23\", \"selftext\": \"# DOWNLOAD LINK: megafile3.top/file/VA - Singles Awareness Day (2020) Mp3 320kbps [PMEDIA]\", \"author_fullname\": \"t2_52224aqm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VA - Singles Awareness Day (2020) Mp3 320kbps [PMEDIA]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/benzamide23\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9k3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289010.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.benzamide23\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDOWNLOAD LINK: megafile3.top/file/VA - Singles Awareness Day (2020) Mp3 320kbps [PMEDIA]\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_28rcy6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9k3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benzamide23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_benzamide23/comments/evf9k3/va_singles_awareness_day_2020_mp3_320kbps_pmedia/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_benzamide23/comments/evf9k3/va_singles_awareness_day_2020_mp3_320kbps_pmedia/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260210.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_DesignerRelation\", \"selftext\": \"Pulse-width Power Dc-dc Converters\\n\\nLink Read Online / Download : https://areapdf.com/1119009545\\n\\n[PAGES : 297] . [AUTHOR : Marian K. Kazimierczuk] . [PUBLISHER : Wiley] . [ISBN : 1119009545] . [RELEASE : 24-8-1981]\\n\\nTAGS :\\n\\nPulse-width Power Dc-dc Converters pdf download . Pulse-width Power Dc-dc Converters read online . Pulse-width Power Dc-dc Converters epub . Pulse-width Power Dc-dc Converters vk . Pulse-width Power Dc-dc Converters pdf . Pulse-width Power Dc-dc Converters amazon . Pulse-width Power Dc-dc Converters free download pdf . Pulse-width Power Dc-dc Converters pdf free . Pulse-width Power Dc-dc Converters pdf . Pulse-width Power Dc-dc Converters epub download . Pulse-width Power Dc-dc Converters online . Pulse-width Power Dc-dc Converters epub download . Pulse-width Power Dc-dc Converters epub vk . Pulse-width Power Dc-dc Converters mobi\\n\\nFollowing the success of \\\"Pulse-Width Modulated DC-DC Power Converters\\\" this second edition has been thoroughly revised and expanded to cover the latest challenges and advances in the field.Key features of 2nd edition: Four new chapters detailing the latest advances in power conversion focus on: small-signal model and dynamic characteristics of the buck converter in continuous conduction mode; voltage-mode control of buck converter; small-signal model and characteristics of the boost converter in the discontinuous conduction mode and electromagnetic compatibility EMC. Provides readers with a solid understanding of the principles of operation synthesis analysis and design of PWM power converters and semiconductor power devices including wide band-gap power devices (SiC and GaN). Fully revised Solutions for all end-of-chapter problems available to instructors via the book companion website. Step-by-step derivation of closed-form design equations with illustrations. Fully revised figures based on real data.With improved end-of-chapter summaries of key concepts review questions problems and answers biographies and case studies this is an essential textbook for graduate and senior undergraduate students in electrical engineering. Its superior readability and clarity of explanations also makes it a key reference for practicing engineers and research scientists.\\n\\n#downloadbook #book #readonline #readbookonline #ebookcollection #ebookdownload #pdf #ebook #epub #kindle\", \"author_fullname\": \"t2_5jlzvoxb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[FREE] [DOWNLOAD] Pulse-width Power Dc-dc Converters Full Books\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/DesignerRelation\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9k1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"spoiler\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289010.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.DesignerRelation\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPulse-width Power Dc-dc Converters\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELink Read Online / Download : \\u003Ca href=\\\"https://areapdf.com/1119009545\\\"\\u003Ehttps://areapdf.com/1119009545\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[PAGES : 297] . [AUTHOR : Marian K. Kazimierczuk] . [PUBLISHER : Wiley] . [ISBN : 1119009545] . [RELEASE : 24-8-1981]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETAGS :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPulse-width Power Dc-dc Converters pdf download . Pulse-width Power Dc-dc Converters read online . Pulse-width Power Dc-dc Converters epub . Pulse-width Power Dc-dc Converters vk . Pulse-width Power Dc-dc Converters pdf . Pulse-width Power Dc-dc Converters amazon . Pulse-width Power Dc-dc Converters free download pdf . Pulse-width Power Dc-dc Converters pdf free . Pulse-width Power Dc-dc Converters pdf . Pulse-width Power Dc-dc Converters epub download . Pulse-width Power Dc-dc Converters online . Pulse-width Power Dc-dc Converters epub download . Pulse-width Power Dc-dc Converters epub vk . Pulse-width Power Dc-dc Converters mobi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFollowing the success of \\u0026quot;Pulse-Width Modulated DC-DC Power Converters\\u0026quot; this second edition has been thoroughly revised and expanded to cover the latest challenges and advances in the field.Key features of 2nd edition: Four new chapters detailing the latest advances in power conversion focus on: small-signal model and dynamic characteristics of the buck converter in continuous conduction mode; voltage-mode control of buck converter; small-signal model and characteristics of the boost converter in the discontinuous conduction mode and electromagnetic compatibility EMC. Provides readers with a solid understanding of the principles of operation synthesis analysis and design of PWM power converters and semiconductor power devices including wide band-gap power devices (SiC and GaN). Fully revised Solutions for all end-of-chapter problems available to instructors via the book companion website. Step-by-step derivation of closed-form design equations with illustrations. Fully revised figures based on real data.With improved end-of-chapter summaries of key concepts review questions problems and answers biographies and case studies this is an essential textbook for graduate and senior undergraduate students in electrical engineering. Its superior readability and clarity of explanations also makes it a key reference for practicing engineers and research scientists.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Edownloadbook #book #readonline #readbookonline #ebookcollection #ebookdownload #pdf #ebook #epub #kindle\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": true, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2dzflo\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9k1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DesignerRelation\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_DesignerRelation/comments/evf9k1/free_download_pulsewidth_power_dcdc_converters/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_DesignerRelation/comments/evf9k1/free_download_pulsewidth_power_dcdc_converters/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260210.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"DanLeBatardShow\", \"selftext\": \"\", \"author_fullname\": \"t2_6ezzr29\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Stugotz\\u2019s sausage fingers are mesmerizing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/DanLeBatardShow\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 111, \"hide_score\": true, \"name\": \"t3_evf9jz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/R1e-h7V9JHpDWe9wDWfpF4LZjywlHjczF86LrKFWthM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289010.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/no2d482fbmd41.jpg?auto=webp\\u0026s=a80c942c910b66e646084d0c970055478a6f20a9\", \"width\": 2048, \"height\": 1632}, \"resolutions\": [{\"url\": \"https://preview.redd.it/no2d482fbmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0780f120f6d07933ffda6ceef9294b457e3ba7e6\", \"width\": 108, \"height\": 86}, {\"url\": \"https://preview.redd.it/no2d482fbmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=59ad53fcf2847207c6671f8d3e9c3d76c1b110d8\", \"width\": 216, \"height\": 172}, {\"url\": \"https://preview.redd.it/no2d482fbmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ed2e173277475ef53f8e37d070d58c7ea67dc25a\", \"width\": 320, \"height\": 255}, {\"url\": \"https://preview.redd.it/no2d482fbmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b95a8053b11af95708fc33188e5c30e1e0ef0f1c\", \"width\": 640, \"height\": 510}, {\"url\": \"https://preview.redd.it/no2d482fbmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=079571f35bed0b7d66f4a144a91748dced53b8c3\", \"width\": 960, \"height\": 765}, {\"url\": \"https://preview.redd.it/no2d482fbmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0965917104d0681dd3256ebfb8da0dfcf442d23a\", \"width\": 1080, \"height\": 860}], \"variants\": {}, \"id\": \"ZkG-7pkhTYtVJzsTnPrydn01A6LcN1jj3JkZgBxEqsc\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_34265\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dickyuengling2\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/DanLeBatardShow/comments/evf9jz/stugotzs_sausage_fingers_are_mesmerizing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/no2d482fbmd41.jpg\", \"subreddit_subscribers\": 25776, \"created_utc\": 1580260210.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"AskReddit\", \"selftext\": \"\", \"author_fullname\": \"t2_4p6x3l8d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"With all these horrible things happening in 2020 already, what's something that wouldn't surprise you if it happened now?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/AskReddit\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9jy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289010.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.AskReddit\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh1i\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gurururl\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/AskReddit/comments/evf9jy/with_all_these_horrible_things_happening_in_2020/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/AskReddit/comments/evf9jy/with_all_these_horrible_things_happening_in_2020/\", \"subreddit_subscribers\": 26142253, \"created_utc\": 1580260210.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"BrasildeDireita\", \"selftext\": \"\", \"author_fullname\": \"t2_4pywdwda\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How does this get 189k likes? Why is misandry cool?\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Pol\\u00edtica\"}], \"subreddit_name_prefixed\": \"r/BrasildeDireita\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"politics\", \"downs\": 0, \"thumbnail_height\": 139, \"hide_score\": true, \"name\": \"t3_evf9jx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Pol\\u00edtica\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/7JBe1rTbJ26l5NjPaMxAZ44hkVWmXaxGct13WMZyBzo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"MensRights\", \"selftext\": \"\", \"author_fullname\": \"t2_14egpniz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How does this get 189k likes? Why is misandry cool?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/MensRights\", \"hidden\": false, \"pwls\": 1, \"link_flair_css_class\": \"discri\", \"downs\": 0, \"thumbnail_height\": 139, \"hide_score\": false, \"name\": \"t3_euz63i\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2205, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discrimination\", \"can_mod_post\": false, \"score\": 2205, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/7JBe1rTbJ26l5NjPaMxAZ44hkVWmXaxGct13WMZyBzo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580207869.0, \"link_flair_type\": \"text\", \"wls\": 1, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?auto=webp\\u0026s=c222f10df2f4602ace573a1b8941f2a9a635f389\", \"width\": 1439, \"height\": 1433}, \"resolutions\": [{\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0c81d6244a7dd9216c03912db4575e1f81a232f4\", \"width\": 108, \"height\": 107}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f2e2a509f93d802865b0fe98e8bca09f0414fc17\", \"width\": 216, \"height\": 215}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=355e4338c80349635109ae6d4eb069bca32d9b87\", \"width\": 320, \"height\": 318}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b5a2c5bfa063eb7a473d2495e76cde752d7b6e06\", \"width\": 640, \"height\": 637}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=4c7b5dedefea7b350fb48fd2ebc4f07a6b653cfe\", \"width\": 960, \"height\": 955}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1f81448be9035bc3e6d21635de5302693e9fb118\", \"width\": 1080, \"height\": 1075}], \"variants\": {}, \"id\": \"ll8dpIh5t8_-Hc9FvbSvTaVCHGRb03e0cUoH0KLyMBQ\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"6b47d312-e9ba-11e4-8db0-22000b690266\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhk3\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#5086ff\", \"id\": \"euz63i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dummuru\", \"discussion_type\": null, \"num_comments\": 165, \"send_replies\": true, \"whitelist_status\": \"house_only\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/MensRights/comments/euz63i/how_does_this_get_189k_likes_why_is_misandry_cool/\", \"parent_whitelist_status\": \"house_only\", \"stickied\": false, \"url\": \"https://i.redd.it/origbe75mfd41.jpg\", \"subreddit_subscribers\": 248624, \"created_utc\": 1580179069.0, \"num_crossposts\": 4, \"media\": null, \"is_video\": false}], \"created\": 1580289010.0, \"link_flair_type\": \"richtext\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?auto=webp\\u0026s=c222f10df2f4602ace573a1b8941f2a9a635f389\", \"width\": 1439, \"height\": 1433}, \"resolutions\": [{\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0c81d6244a7dd9216c03912db4575e1f81a232f4\", \"width\": 108, \"height\": 107}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f2e2a509f93d802865b0fe98e8bca09f0414fc17\", \"width\": 216, \"height\": 215}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=355e4338c80349635109ae6d4eb069bca32d9b87\", \"width\": 320, \"height\": 318}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b5a2c5bfa063eb7a473d2495e76cde752d7b6e06\", \"width\": 640, \"height\": 637}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=4c7b5dedefea7b350fb48fd2ebc4f07a6b653cfe\", \"width\": 960, \"height\": 955}, {\"url\": \"https://preview.redd.it/origbe75mfd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1f81448be9035bc3e6d21635de5302693e9fb118\", \"width\": 1080, \"height\": 1075}], \"variants\": {}, \"id\": \"ll8dpIh5t8_-Hc9FvbSvTaVCHGRb03e0cUoH0KLyMBQ\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"3265dfa4-42a8-11e8-9a24-0e09b680510c\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_i1ffd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"downvoted-me\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_euz63i\", \"author_flair_text_color\": null, \"permalink\": \"/r/BrasildeDireita/comments/evf9jx/how_does_this_get_189k_likes_why_is_misandry_cool/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/origbe75mfd41.jpg\", \"subreddit_subscribers\": 169, \"created_utc\": 1580260210.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"BurlingtonVT\", \"selftext\": \"my girlfriends mother is getting surgery and I want to do something nice for her and I thought of baking her an apple pie. However, I am just a college student that does not have a kitchen. so I guess what I am asking is there anyone that knows of a place that does great apple pies or if anyone would be willing to make me one. if you do make one, I will reimburse you for the ingredients.\", \"author_fullname\": \"t2_5238j5af\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"i need an apple pie\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/BurlingtonVT\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9jv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289010.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.BurlingtonVT\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy girlfriends mother is getting surgery and I want to do something nice for her and I thought of baking her an apple pie. However, I am just a college student that does not have a kitchen. so I guess what I am asking is there anyone that knows of a place that does great apple pies or if anyone would be willing to make me one. if you do make one, I will reimburse you for the ingredients.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rea1\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rele628\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/BurlingtonVT/comments/evf9jv/i_need_an_apple_pie/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/BurlingtonVT/comments/evf9jv/i_need_an_apple_pie/\", \"subreddit_subscribers\": 250, \"created_utc\": 1580260210.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"CaptainSparklez\", \"selftext\": \"\", \"author_fullname\": \"t2_m18bp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"This Boss Was A Mistake (Minecraft RLCraft Modpack #32) - [60:41]\", \"link_flair_richtext\": [{\"a\": \":secondarychannel:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/wk1jv5i1jnz21_t5_2ugwy/secondarychannel\"}, {\"e\": \"text\", \"t\": \" CaptainSparklez 2\"}], \"subreddit_name_prefixed\": \"r/CaptainSparklez\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"CaptainSparklez2\", \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": true, \"name\": \"t3_evf9ju\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": \"#02bb27\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/14o_q6uIK1U?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"e93f03ae-7ca9-11e9-905a-0e5549e97c38\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"This Boss Was A Mistake (Minecraft RLCraft Modpack #32)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/14o_q6uIK1U?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"CaptainSparklez 2\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/14o_q6uIK1U/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCAJ41d46i6mcNAsvsWRc9hw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/14o_q6uIK1U?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/evf9ju\", \"height\": 338}, \"link_flair_text\": \":secondarychannel: CaptainSparklez 2\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/WfmWHHxBMNmGHGjxms6x0AVnc4DmQQQred9TpZAHvYw.jpg\", \"edited\": false, \"author_flair_css_class\": \"VideoBot\", \"author_flair_richtext\": [{\"a\": \":VideoBot:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/1hur8filmnz21_t5_2ugwy/VideoBot\"}, {\"e\": \"text\", \"t\": \" Video Bot\"}], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289010.0, \"link_flair_type\": \"richtext\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/B7yBAonJYsqIRT5LZsizXCNZSg11yR5Tdps9k7A-MLY.jpg?auto=webp\\u0026s=26f55134be6065c3f0fb671f4c0085a0a97eb6f7\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/B7yBAonJYsqIRT5LZsizXCNZSg11yR5Tdps9k7A-MLY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c951f3ab605e1270825f8c586a6b1706c2115ca6\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/B7yBAonJYsqIRT5LZsizXCNZSg11yR5Tdps9k7A-MLY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=25a3812718a4594d7b15ae500337481564560ccd\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/B7yBAonJYsqIRT5LZsizXCNZSg11yR5Tdps9k7A-MLY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9ee1c7167d5381f7793bb2a79c49a2c1b34a9726\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"m_LUbIhdARUn-azxt3PodRS05j86WqUFIkkmbybAVDA\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"9b34a344-1be9-11e7-bbbd-0effe7447c6e\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \":VideoBot: Video Bot\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2ugwy\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#2a9bb8\", \"id\": \"evf9ju\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SparklezBot\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"light\", \"permalink\": \"/r/CaptainSparklez/comments/evf9ju/this_boss_was_a_mistake_minecraft_rlcraft_modpack/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtube.com/watch?v=14o_q6uIK1U\", \"subreddit_subscribers\": 64055, \"created_utc\": 1580260210.0, \"num_crossposts\": 0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"This Boss Was A Mistake (Minecraft RLCraft Modpack #32)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/14o_q6uIK1U?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"CaptainSparklez 2\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/14o_q6uIK1U/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCAJ41d46i6mcNAsvsWRc9hw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Market76\", \"selftext\": \"\", \"author_fullname\": \"t2_3aso1z5b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PS4]H:70k 556 \\u0026 Karma W:3* B ffr or AA ffr Handmade!\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"PS4\"}], \"subreddit_name_prefixed\": \"r/Market76\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"ps4\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9jt\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": \"#00ce81\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"aaa87558-6d1d-11e9-94ca-0ee6f6d0d234\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PS4\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"green tier3\", \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"+98 Karma\"}], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289009.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"self.Market76\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"9f977b78-a829-11e8-b33f-0ee05f7ae348\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"+98 Karma\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_n9nn1\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#004098\", \"id\": \"evf9jt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EastVegasDre\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"light\", \"permalink\": \"/r/Market76/comments/evf9jt/ps4h70k_556_karma_w3_b_ffr_or_aa_ffr_handmade/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/Market76/comments/evf9jt/ps4h70k_556_karma_w3_b_ffr_or_aa_ffr_handmade/\", \"subreddit_subscribers\": 42586, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"bikewrench\", \"selftext\": \"Hello, I would like to know if I straightened this out enough or if I need to do anymore adjustments.\\n\\nThe backstory on it is I had my bike stolen a few years ago, got it back and it's a little worse for wear.\\n\\nImages: http://imgur.com/gallery/PRD30zJ\", \"author_fullname\": \"t2_28yu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Straightening bent braze on cable guide\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/bikewrench\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9js\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289009.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.bikewrench\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I would like to know if I straightened this out enough or if I need to do anymore adjustments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe backstory on it is I had my bike stolen a few years ago, got it back and it\\u0026#39;s a little worse for wear.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EImages: \\u003Ca href=\\\"http://imgur.com/gallery/PRD30zJ\\\"\\u003Ehttp://imgur.com/gallery/PRD30zJ\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/T3laBGsOrO7WfRttsR44T0FSLPXJHW9-NA9f8NSJmq8.jpg?auto=webp\\u0026s=b94af1828ffa713939ed845dd87d91ad1b5e4ca8\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/T3laBGsOrO7WfRttsR44T0FSLPXJHW9-NA9f8NSJmq8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=414bbb84c5594006a076d487bb88e7676d1875fa\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/T3laBGsOrO7WfRttsR44T0FSLPXJHW9-NA9f8NSJmq8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c5d8b585f754735b8e60d0dd068fe67db2634eea\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/T3laBGsOrO7WfRttsR44T0FSLPXJHW9-NA9f8NSJmq8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=319f6f09e8e559e140e276dcb740d29714b86fc0\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/T3laBGsOrO7WfRttsR44T0FSLPXJHW9-NA9f8NSJmq8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a494830273a026910ba26151545cd156923dc8f1\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/T3laBGsOrO7WfRttsR44T0FSLPXJHW9-NA9f8NSJmq8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=1ac902b9990cc66c3cbc559892948ddb55b07313\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/T3laBGsOrO7WfRttsR44T0FSLPXJHW9-NA9f8NSJmq8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=fc0f6dc37d0197b9af79129d76c14b558bb60c7b\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"VaRZEPvL0ddhqYB_Zo-IX4EOk8LwmcOj1WyfqXcvsmw\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2sje0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9js\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dropo\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/bikewrench/comments/evf9js/straightening_bent_braze_on_cable_guide/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/bikewrench/comments/evf9js/straightening_bent_braze_on_cable_guide/\", \"subreddit_subscribers\": 52767, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"exjw\", \"selftext\": \"Which means that who is or isn't gonna survive Armageddon and get into paradise is already set in stone which means there really is no point in the preaching work or anything really.\", \"author_fullname\": \"t2_4swgb6r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"If Jehovah and his prophets can have visions into the future and know what will happen doesn't that mean the future is predetermined?\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"General Discussion\"}], \"subreddit_name_prefixed\": \"r/exjw\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9jq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"General Discussion\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289009.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.exjw\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhich means that who is or isn\\u0026#39;t gonna survive Armageddon and get into paradise is already set in stone which means there really is no point in the preaching work or anything really.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qp5l\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Marcadesas\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/exjw/comments/evf9jq/if_jehovah_and_his_prophets_can_have_visions_into/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/exjw/comments/evf9jq/if_jehovah_and_his_prophets_can_have_visions_into/\", \"subreddit_subscribers\": 46262, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"ladybonersgw\", \"selftext\": \"\", \"author_fullname\": \"t2_3y3u3pr6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"It's been a long day at work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/ladybonersgw\", \"hidden\": false, \"pwls\": 3, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9jp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289009.0, \"link_flair_type\": \"text\", \"wls\": 3, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?auto=webp\\u0026s=fcf737925d93239d56d1cb016cca307f57d7f0e5\", \"width\": 2448, \"height\": 3264}, \"resolutions\": [{\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=196ecafc8b39c136a0e4a5092aee9080908db021\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c5cdcfda447a23100ed993b4d04442ac24f5cfc5\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7323b75ef71c99fa6a932f1c8e49421bcf7bf24e\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4686cffb76fec1b9b8798fa57712c1814e67a412\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=8af031a3b6d72543a6b4f1507db36e1ac7e702b2\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f9b16e149b17f2c2e2040febbcf34b4576afd3a7\", \"width\": 1080, \"height\": 1440}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=8fa18ac7a10c11b18dfe6d51584eacf8aeebf3e4\", \"width\": 2448, \"height\": 3264}, \"resolutions\": [{\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=57217c876d63c0bb59999152d46cc5815a5c9dc6\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=33b1495fa19fddd5d2409fb91ddd8ff87ef3e1e3\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=02057aab29da4130603bc3a42e8f9a26d74fdb8f\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=4e7a453322f66fb1914b45025dafb79f421597a3\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=4fd5340b8dab7911967a8f52bee0b4b6750ef0b8\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=282b4faf1a857409c27ea06a89d3bb76b8a6eb1d\", \"width\": 1080, \"height\": 1440}]}, \"nsfw\": {\"source\": {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=8fa18ac7a10c11b18dfe6d51584eacf8aeebf3e4\", \"width\": 2448, \"height\": 3264}, \"resolutions\": [{\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=57217c876d63c0bb59999152d46cc5815a5c9dc6\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=33b1495fa19fddd5d2409fb91ddd8ff87ef3e1e3\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=02057aab29da4130603bc3a42e8f9a26d74fdb8f\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=4e7a453322f66fb1914b45025dafb79f421597a3\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=4fd5340b8dab7911967a8f52bee0b4b6750ef0b8\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/pgtgg8uebmd41.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=282b4faf1a857409c27ea06a89d3bb76b8a6eb1d\", \"width\": 1080, \"height\": 1440}]}}, \"id\": \"kNgCqXMRtZ0ZfAr2vO_V7Eyg_TdzdbWCBvDY_gFq-6s\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2t4jw\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mydumpaccnt426\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"promo_adult_nsfw\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/ladybonersgw/comments/evf9jp/its_been_a_long_day_at_work/\", \"parent_whitelist_status\": \"promo_adult_nsfw\", \"stickied\": false, \"url\": \"https://i.redd.it/pgtgg8uebmd41.jpg\", \"subreddit_subscribers\": 183253, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"RandomActsOfBlowJob\", \"selftext\": \"Home alone hosting VR porn googles for fit DL guys 18/29 looking to get off. hit me up send age and stats in private message Chicago Lakeview free parking\", \"author_fullname\": \"t2_1a6e8kqv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"29[M4M]#Chicago Hosting VR Porn Goggles for guys looking to get off Straight fit only\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/RandomActsOfBlowJob\", \"hidden\": false, \"pwls\": 3, \"link_flair_css_class\": \"am-approved prevuser Chicago M4M-\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9jm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"\\u2642\\u2665\\u2642 Chicago\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": \"evf9jm - M4M in Chicago\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289009.0, \"link_flair_type\": \"text\", \"wls\": 3, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.RandomActsOfBlowJob\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHome alone hosting VR porn googles for fit DL guys 18/29 looking to get off. hit me up send age and stats in private message Chicago Lakeview free parking\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Chicago\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2tpfa\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clad01\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"promo_adult_nsfw\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/RandomActsOfBlowJob/comments/evf9jm/29m4mchicago_hosting_vr_porn_goggles_for_guys/\", \"parent_whitelist_status\": \"promo_adult_nsfw\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/RandomActsOfBlowJob/comments/evf9jm/29m4mchicago_hosting_vr_porn_goggles_for_guys/\", \"subreddit_subscribers\": 320387, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"catpictures\", \"selftext\": \"\", \"author_fullname\": \"t2_5gck28sm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ivy, darkness and chaos\\u2019s sister. One could call her the light bringer... or miss chonk, derp or her derpness\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/catpictures\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9jl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Oaly-7vLrrQLGEDjPvrXsqSMTHF_lMkQSnVPFFQ5PXA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289009.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/un0vj9vebmd41.jpg?auto=webp\\u0026s=7342ef1d211ca137aa0348dd8d200ff0ddea3018\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://preview.redd.it/un0vj9vebmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a7c65a011ba04bfde8c5546c6c3932d53ec47aa2\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/un0vj9vebmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=78336fdc684538c71b0f08701b5cba1c5b3e3c8b\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/un0vj9vebmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=59cc2123aca1b37b5ec45dde691be3db41c78ff0\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/un0vj9vebmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c0258cd67325137e8dd40cbb3ba433230709177f\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/un0vj9vebmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e3cc48bd8ea708ad420419c59242e2c1a17bedf0\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/un0vj9vebmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=96ca7f73d6e08830fe7b9a89c938cbd55f287f3d\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"Ix69HMHdYUbbxFsMvLixCZCS_C0T09AxZWT96c1-ZaU\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2r5i1\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Malibu199\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/catpictures/comments/evf9jl/ivy_darkness_and_chaoss_sister_one_could_call_her/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/un0vj9vebmd41.jpg\", \"subreddit_subscribers\": 121254, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_Sleeper151\", \"selftext\": \"\", \"author_fullname\": \"t2_5gzotjet\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Doja Cat \\ud83c\\udf53\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/Sleeper151\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9jk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"DarkAngels\", \"selftext\": \"\", \"author_fullname\": \"t2_y8sv9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Doja Cat \\ud83c\\udf53\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/DarkAngels\", \"hidden\": false, \"pwls\": 3, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_euyo3k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 995, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 995, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580205558.0, \"link_flair_type\": \"text\", \"wls\": 3, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?auto=webp\\u0026s=dedae4da4b02582ee232ad9e70d04c44561e567c\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2181dd68b2feb44703c558bb118be10aa54aa87b\", \"width\": 108, \"height\": 135}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4549e9b314447debd6c2d9ac018ba5bf54c3af2c\", \"width\": 216, \"height\": 270}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=70631ac70ff62811e3b38ce900616ea19a0d397f\", \"width\": 320, \"height\": 400}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=137a22b3d33349927557685c413d640fbb546b67\", \"width\": 640, \"height\": 800}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=68426b362acdf1a5e14293b8a8abbabd7607ae20\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a1e113e78ddecc7274ea49a381dd4a5cd5fdb62d\", \"width\": 1080, \"height\": 1350}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=1a67957987a80aab78408c3a7e17e6b51d13330a\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=5fe244ffcfc84fd431064469d6699335c7456d75\", \"width\": 108, \"height\": 135}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=decce3e553510a9b8117f24807dade379cd106be\", \"width\": 216, \"height\": 270}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=091b974ed94afd4746dc530af6555455394ede77\", \"width\": 320, \"height\": 400}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=7ef7e6095d82ec7fe8218aaad82708f8884a7ae9\", \"width\": 640, \"height\": 800}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=375d91486f245a04cba09714b0510d7c06d6965a\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=bd97fd0d4581e4bdd02939dd4bd71698ea8b1d96\", \"width\": 1080, \"height\": 1350}]}, \"nsfw\": {\"source\": {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=1a67957987a80aab78408c3a7e17e6b51d13330a\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=5fe244ffcfc84fd431064469d6699335c7456d75\", \"width\": 108, \"height\": 135}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=decce3e553510a9b8117f24807dade379cd106be\", \"width\": 216, \"height\": 270}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=091b974ed94afd4746dc530af6555455394ede77\", \"width\": 320, \"height\": 400}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=7ef7e6095d82ec7fe8218aaad82708f8884a7ae9\", \"width\": 640, \"height\": 800}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=375d91486f245a04cba09714b0510d7c06d6965a\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=bd97fd0d4581e4bdd02939dd4bd71698ea8b1d96\", \"width\": 1080, \"height\": 1350}]}}, \"id\": \"4oeQT7Jh_B59yvYJ8wv1zAYC99izzOdDJRuRZljd11c\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2sgav\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"euyo3k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sbjunior1203\", \"discussion_type\": null, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"promo_adult_nsfw\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/DarkAngels/comments/euyo3k/doja_cat/\", \"parent_whitelist_status\": \"promo_adult_nsfw\", \"stickied\": false, \"url\": \"https://i.redd.it/fawwb8w9ffd41.jpg\", \"subreddit_subscribers\": 225694, \"created_utc\": 1580176758.0, \"num_crossposts\": 9, \"media\": null, \"is_video\": false}], \"created\": 1580289009.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?auto=webp\\u0026s=dedae4da4b02582ee232ad9e70d04c44561e567c\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2181dd68b2feb44703c558bb118be10aa54aa87b\", \"width\": 108, \"height\": 135}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4549e9b314447debd6c2d9ac018ba5bf54c3af2c\", \"width\": 216, \"height\": 270}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=70631ac70ff62811e3b38ce900616ea19a0d397f\", \"width\": 320, \"height\": 400}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=137a22b3d33349927557685c413d640fbb546b67\", \"width\": 640, \"height\": 800}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=68426b362acdf1a5e14293b8a8abbabd7607ae20\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a1e113e78ddecc7274ea49a381dd4a5cd5fdb62d\", \"width\": 1080, \"height\": 1350}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=1a67957987a80aab78408c3a7e17e6b51d13330a\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=5fe244ffcfc84fd431064469d6699335c7456d75\", \"width\": 108, \"height\": 135}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=decce3e553510a9b8117f24807dade379cd106be\", \"width\": 216, \"height\": 270}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=091b974ed94afd4746dc530af6555455394ede77\", \"width\": 320, \"height\": 400}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=7ef7e6095d82ec7fe8218aaad82708f8884a7ae9\", \"width\": 640, \"height\": 800}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=375d91486f245a04cba09714b0510d7c06d6965a\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=bd97fd0d4581e4bdd02939dd4bd71698ea8b1d96\", \"width\": 1080, \"height\": 1350}]}, \"nsfw\": {\"source\": {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=1a67957987a80aab78408c3a7e17e6b51d13330a\", \"width\": 1080, \"height\": 1350}, \"resolutions\": [{\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=5fe244ffcfc84fd431064469d6699335c7456d75\", \"width\": 108, \"height\": 135}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=decce3e553510a9b8117f24807dade379cd106be\", \"width\": 216, \"height\": 270}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=091b974ed94afd4746dc530af6555455394ede77\", \"width\": 320, \"height\": 400}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=7ef7e6095d82ec7fe8218aaad82708f8884a7ae9\", \"width\": 640, \"height\": 800}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=375d91486f245a04cba09714b0510d7c06d6965a\", \"width\": 960, \"height\": 1200}, {\"url\": \"https://preview.redd.it/fawwb8w9ffd41.jpg?width=1080\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=bd97fd0d4581e4bdd02939dd4bd71698ea8b1d96\", \"width\": 1080, \"height\": 1350}]}}, \"id\": \"4oeQT7Jh_B59yvYJ8wv1zAYC99izzOdDJRuRZljd11c\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2d551g\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sleeper151\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_euyo3k\", \"author_flair_text_color\": null, \"permalink\": \"/r/u_Sleeper151/comments/evf9jk/doja_cat/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fawwb8w9ffd41.jpg\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"forhonor\", \"selftext\": \"So, I've seen posts already starting to surface about the new armor that the devs have said will be coming with Year 4. Trust me, I'm as excited as anyone for new armor. Centurion needs new fashion options, badly.\\n\\nBut I feel the need to clear a couple things up, since not everyone reads every dev statement and some people get themselves over-excited and then get mad at Ubisoft for not living up to their expectations.\\n\\nIt's me, I'm talking about me. I've done that. I'm sorry, Ubi.\\n\\nAnyway, let's move on to what I'm here to talk about; armor. I don't have the sources for these statements off-hand (I did a quick Google but wasn't able to find them) but I'm confident that other people on here will be able to back me up.\\n\\nFirst things first, the only things we should be expecting are:\\n\\n* Completely new armor sets for Year 1 DLC Heroes (Centurion, Gladiator, Highlander, Shaman, Shinobi, and Aramusha)\\n* A new armor set for the original 4 Wu-Lin heroes\\n* New **variations** for the original cast, like what the DLC heroes got at the Marching Fire release\\n* I wouldn't expect anything for the Year 3 characters, they're too new. If they get anything, it will be variations on existing sets\\n\\nMost of this information comes from a dev response shortly after the release of Marching Fire, when people who played the DLC heroes were miffed that they didn't get entirely new sets like the vanilla heroes did.\\n\\nHere's a second point that I really want to emphasize:\\n\\n**WE DON'T KNOW WHEN IN YEAR 4 THE NEW ARMORS ARE COMING.**\\n\\nDo I think it's likely that the new armor will release with Y4 S1? Yes. Ubi knows how much we want it, and they know how long we've already been waiting for it. I think a lot of people would be upset if new armor didn't come at the beginning of Year 4. Plus, some of the new armor (for Warden and Tiandi at least, as well as possibly Kensei and Raider) was teased in the Year 4 promo art. That seems like a bad move if they weren't planning on releasing it with the first season.\\n\\nBut nowhere did they confirm that it would be coming with the first season. They only said it would be coming \\\"this year\\\".\\n\\nI'm not saying any of this to be a party pooper, but I've already seen a couple posts like \\\"Warden needs full plate armor!\\\" or \\\"I hope that the Vikings finally get chainmail!\\\" And while I might agree with you in theory, neither of those things are probably going to happen with Year 4 since the main body of new armor will be going to the Year 1 DLC heroes and maybe the Wu-Lin. It does nobody any good to build up unrealistic expectations only to be let down by the real thing, and I would prefer it if we could avoid a massive salt-storm on release day.\\n\\nThat's all. I now return you to your regularly scheduled hyping.\", \"author_fullname\": \"t2_7iktjo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"PSA: About The Inevitable Armor Over-Hype\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"PSA\"}], \"subreddit_name_prefixed\": \"r/forhonor\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"psa\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9jh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"96a7522c-446b-11e7-a939-0e7310959b7a\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PSA\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"centurion\", \"author_flair_richtext\": [{\"a\": \":Centurion:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/cwiy63ek1qa11_t5_38p4n/Centurion\"}, {\"e\": \"text\", \"t\": \" SENATUS POPULUSQUE ROMANUS \"}, {\"a\": \":Centurion:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/cwiy63ek1qa11_t5_38p4n/Centurion\"}, {\"e\": \"text\", \"t\": \" \"}], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289009.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"self.forhonor\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo, I\\u0026#39;ve seen posts already starting to surface about the new armor that the devs have said will be coming with Year 4. Trust me, I\\u0026#39;m as excited as anyone for new armor. Centurion needs new fashion options, badly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut I feel the need to clear a couple things up, since not everyone reads every dev statement and some people get themselves over-excited and then get mad at Ubisoft for not living up to their expectations.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s me, I\\u0026#39;m talking about me. I\\u0026#39;ve done that. I\\u0026#39;m sorry, Ubi.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, let\\u0026#39;s move on to what I\\u0026#39;m here to talk about; armor. I don\\u0026#39;t have the sources for these statements off-hand (I did a quick Google but wasn\\u0026#39;t able to find them) but I\\u0026#39;m confident that other people on here will be able to back me up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst things first, the only things we should be expecting are:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECompletely new armor sets for Year 1 DLC Heroes (Centurion, Gladiator, Highlander, Shaman, Shinobi, and Aramusha)\\u003C/li\\u003E\\n\\u003Cli\\u003EA new armor set for the original 4 Wu-Lin heroes\\u003C/li\\u003E\\n\\u003Cli\\u003ENew \\u003Cstrong\\u003Evariations\\u003C/strong\\u003E for the original cast, like what the DLC heroes got at the Marching Fire release\\u003C/li\\u003E\\n\\u003Cli\\u003EI wouldn\\u0026#39;t expect anything for the Year 3 characters, they\\u0026#39;re too new. If they get anything, it will be variations on existing sets\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EMost of this information comes from a dev response shortly after the release of Marching Fire, when people who played the DLC heroes were miffed that they didn\\u0026#39;t get entirely new sets like the vanilla heroes did.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a second point that I really want to emphasize:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWE DON\\u0026#39;T KNOW WHEN IN YEAR 4 THE NEW ARMORS ARE COMING.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo I think it\\u0026#39;s likely that the new armor will release with Y4 S1? Yes. Ubi knows how much we want it, and they know how long we\\u0026#39;ve already been waiting for it. I think a lot of people would be upset if new armor didn\\u0026#39;t come at the beginning of Year 4. Plus, some of the new armor (for Warden and Tiandi at least, as well as possibly Kensei and Raider) was teased in the Year 4 promo art. That seems like a bad move if they weren\\u0026#39;t planning on releasing it with the first season.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut nowhere did they confirm that it would be coming with the first season. They only said it would be coming \\u0026quot;this year\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not saying any of this to be a party pooper, but I\\u0026#39;ve already seen a couple posts like \\u0026quot;Warden needs full plate armor!\\u0026quot; or \\u0026quot;I hope that the Vikings finally get chainmail!\\u0026quot; And while I might agree with you in theory, neither of those things are probably going to happen with Year 4 since the main body of new armor will be going to the Year 1 DLC heroes and maybe the Wu-Lin. It does nobody any good to build up unrealistic expectations only to be let down by the real thing, and I would prefer it if we could avoid a massive salt-storm on release day.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s all. I now return you to your regularly scheduled hyping.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"d2033918-a3cf-11e6-8e06-0e67b23fd904\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \":Centurion: SENATUS POPULUSQUE ROMANUS :Centurion: \", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_38p4n\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Lord_of_Brass\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/forhonor/comments/evf9jh/psa_about_the_inevitable_armor_overhype/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/forhonor/comments/evf9jh/psa_about_the_inevitable_armor_overhype/\", \"subreddit_subscribers\": 268985, \"created_utc\": 1580260209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"CommentAwardsForum\", \"selftext\": \"\", \"author_fullname\": \"t2_5h5e790x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Haha funny\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/CommentAwardsForum\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9jf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9_aZH2eFBF1DMWgZs6zBp0yk8dte4uHCEC6yneC4WRw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289008.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/0888c9zebmd41.jpg?auto=webp\\u0026s=bf5d503ae6a388dbccaf70449f1419cc4556a640\", \"width\": 768, \"height\": 768}, \"resolutions\": [{\"url\": \"https://preview.redd.it/0888c9zebmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6a8d420b1207a7ac9aac18e14d79324973c211f3\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/0888c9zebmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ed4b90981979da71c3b3d071c85adb626107970d\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/0888c9zebmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=18a284499754ab38cb289e5638a9bc2309390deb\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/0888c9zebmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=871372c29fcb43d8620b0179414f2a3b0ccce41e\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"9EVnanqbeH4n-B0IeMZyfaNTnIkP6VVvc0zho_FQB1E\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_oewkt\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pokemongamer86\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/CommentAwardsForum/comments/evf9jf/haha_funny/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/0888c9zebmd41.jpg\", \"subreddit_subscribers\": 24685, \"created_utc\": 1580260208.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"ClanMalkavian\", \"selftext\": \"\", \"author_fullname\": \"t2_33vo5tnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"When all you want is a Double Space Burger, with cheese, bacon, and guacamole. But your girlfriend is bat-shit crazy.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/ClanMalkavian\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 117, \"hide_score\": true, \"name\": \"t3_evf9je\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": \"transparent\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"ce8994d6-a961-11e9-9696-0e4274245e62\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"\\ud835\\udd6d\\ud835\\udd91\\ud835\\udd94\\ud835\\udd94\\ud835\\udd89\\ud835\\udd91\\ud835\\udd8e\\ud835\\udd93\\ud835\\udd8a\\ud835\\udd98 \", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/deYNankTJPyp5AGDl1P8q2w1mdUgiDYCiT12K-GZiqA.jpg\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289008.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/d4ts8e6abmd41.jpg?auto=webp\\u0026s=5ea3a12c40fba4a121526060e2903850c91d19f0\", \"width\": 1280, \"height\": 1077}, \"resolutions\": [{\"url\": \"https://preview.redd.it/d4ts8e6abmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0bc2700a61deebf19fdf835f458a37c77098c9a0\", \"width\": 108, \"height\": 90}, {\"url\": \"https://preview.redd.it/d4ts8e6abmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=89d6fb1cfa3ccbbd70bb5f01460d596ece596fd8\", \"width\": 216, \"height\": 181}, {\"url\": \"https://preview.redd.it/d4ts8e6abmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d058dbb1118b79a4a558f909755732b07ea87187\", \"width\": 320, \"height\": 269}, {\"url\": \"https://preview.redd.it/d4ts8e6abmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d1a570f072bf333941df721a64e366e4dc6718cf\", \"width\": 640, \"height\": 538}, {\"url\": \"https://preview.redd.it/d4ts8e6abmd41.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d83b7d24680e04da7e0b83b2491808b0e196bc86\", \"width\": 960, \"height\": 807}, {\"url\": \"https://preview.redd.it/d4ts8e6abmd41.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=902d99b229f22d8965e37d7ed179c4de5fbd7334\", \"width\": 1080, \"height\": 908}], \"variants\": {}, \"id\": \"LD_k95zWSPUgxARRD13TwY5yBimS5uNZSwN5mRt6lVM\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"0b3a191e-9567-11e9-94bb-0e7b9772b648\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\\ud83e\\udd2a \\ud835\\udd78\\ud835\\udd86\\ud835\\udd91\\ud835\\udd0e\\ud835\\udd86\\ud835\\udd9b\\ud835\\udd8e\\ud835\\udd86\\ud835\\udd93 \\ud83d\\ude1c\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_145eud\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#ff4500\", \"id\": \"evf9je\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DocFever1980\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/ClanMalkavian/comments/evf9je/when_all_you_want_is_a_double_space_burger_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/d4ts8e6abmd41.jpg\", \"subreddit_subscribers\": 449, \"created_utc\": 1580260208.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"askgaybros\", \"selftext\": \"My fianc\\u00e9 and I decided back in August of 2019 before our engagement party to make our wedding date in September of 2021. I now am prepping to start paying our venue and event people so the bill is low and he all\\nlike \\u201cwhy don\\u2019t we wait\\u201d \\u201cwell I\\u2019m focusing on other things\\u201d. We have been engaged for a year and it\\u2019ll be three years by then and we put the date out because we wanted to secure things and etc. before then. \\n\\nAm I crazy or am I like in the right mind frame? I know he is going to want to hop on help once 2021 rolls around but I feel like I\\u2019m fighting tooth and nail not to be paying out my ass.\", \"author_fullname\": \"t2_3nlpxrar\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Wedding Chaos\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/askgaybros\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9jd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289008.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.askgaybros\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy fianc\\u00e9 and I decided back in August of 2019 before our engagement party to make our wedding date in September of 2021. I now am prepping to start paying our venue and event people so the bill is low and he all\\nlike \\u201cwhy don\\u2019t we wait\\u201d \\u201cwell I\\u2019m focusing on other things\\u201d. We have been engaged for a year and it\\u2019ll be three years by then and we put the date out because we wanted to secure things and etc. before then. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAm I crazy or am I like in the right mind frame? I know he is going to want to hop on help once 2021 rolls around but I feel like I\\u2019m fighting tooth and nail not to be paying out my ass.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2vgfw\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9jd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Starfindr_\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/askgaybros/comments/evf9jd/wedding_chaos/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/askgaybros/comments/evf9jd/wedding_chaos/\", \"subreddit_subscribers\": 193554, \"created_utc\": 1580260208.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_benzamide23\", \"selftext\": \"# DOWNLOAD LINK: megafile3.top/file/VA - Singles Awareness Day (2020) Mp3 320kbps [PMEDIA] \\u2b50\\ufe0f\", \"author_fullname\": \"t2_52224aqm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VA - Singles Awareness Day (2020) Mp3 320kbps [PMEDIA] \\u2b50\\ufe0f\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/benzamide23\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ja\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289008.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.benzamide23\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDOWNLOAD LINK: megafile3.top/file/VA - Singles Awareness Day (2020) Mp3 320kbps [PMEDIA] \\u2b50\\ufe0f\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_28rcy6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ja\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benzamide23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_benzamide23/comments/evf9ja/va_singles_awareness_day_2020_mp3_320kbps_pmedia/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_benzamide23/comments/evf9ja/va_singles_awareness_day_2020_mp3_320kbps_pmedia/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260208.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"saltierthancrait\", \"selftext\": \"The ending stays the same pretty much old lady asks who she is and rey says \\\"rey\\\" and looks to see luke and leia but she gives an evil smile and a blend of hers and palpatines voice says \\\"skywalker\\\" and she ignites the red lightsaber we saw in the vision it cuts to black and we hear palpatines laugh and it cuts to the credits\", \"author_fullname\": \"t2_4wfzns48\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Better ending for rise of skywalker\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"extra salty\"}], \"subreddit_name_prefixed\": \"r/saltierthancrait\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"salty\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9j9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"1ffcd042-32c3-11e8-8987-0eda1402c6fc\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"extra salty\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"salt miner\", \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"salt miner\"}], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289008.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"self.saltierthancrait\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe ending stays the same pretty much old lady asks who she is and rey says \\u0026quot;rey\\u0026quot; and looks to see luke and leia but she gives an evil smile and a blend of hers and palpatines voice says \\u0026quot;skywalker\\u0026quot; and she ignites the red lightsaber we saw in the vision it cuts to black and we hear palpatines laugh and it cuts to the credits\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"71fa0ccc-2e25-11e8-8123-0e7ac506b882\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"salt miner\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_9d1wl\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9j9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"desert-bandit\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/saltierthancrait/comments/evf9j9/better_ending_for_rise_of_skywalker/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/saltierthancrait/comments/evf9j9/better_ending_for_rise_of_skywalker/\", \"subreddit_subscribers\": 49294, \"created_utc\": 1580260208.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"BLOW_JOBS\", \"selftext\": \"\", \"author_fullname\": \"t2_3qzo6bc8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even a facial can't stop her from deepthroating\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/BLOW_JOBS\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": true, \"name\": \"t3_evf9j7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Famazingopulentgoldenmantledgroundsquirrel\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Famazingopulentgoldenmantledgroundsquirrel\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FAmazingOpulentGoldenmantledgroundsquirrel-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share Female Pov Throat, Pussy And Tits Fucked. Mia Bandini GIFs on Gfycat\", \"title\": \"Female pov throat, pussy and tits fucked. Mia Bandini\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Famazingopulentgoldenmantledgroundsquirrel\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Famazingopulentgoldenmantledgroundsquirrel\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FAmazingOpulentGoldenmantledgroundsquirrel-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 344, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/AmazingOpulentGoldenmantledgroundsquirrel-size_restricted.gif\", \"thumbnail_height\": 194}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Famazingopulentgoldenmantledgroundsquirrel\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Famazingopulentgoldenmantledgroundsquirrel\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FAmazingOpulentGoldenmantledgroundsquirrel-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/evf9j7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289008.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?format=png8\\u0026s=d57108a26b2314c6497c66097d8b3f3c6fcc52f5\", \"width\": 344, \"height\": 194}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=141c7b3ed55f98aa7a5763fb6b1a963846270e13\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=cf577893457a6f61b8efa67153256e01fe9a04e9\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=2b32850821cff43f8ce4df67a5f2bdb1c379aecc\", \"width\": 320, \"height\": 180}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?blur=40\\u0026format=png8\\u0026s=4e634bd5b942d47141fe86ebf9d0a8b6491e9042\", \"width\": 344, \"height\": 194}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=7aabc43145bc72b96ee1e7c410b04abcbc4fcb0a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=c2c0ba325634e048a4cee7a81455c4e7e35539be\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=png8\\u0026s=86c0539054d80c89e519a485d5c1a17776601d31\", \"width\": 320, \"height\": 180}]}, \"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?s=cc27f7ab32e8c30694a81b1a95b2106f58e24bb1\", \"width\": 344, \"height\": 194}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=108\\u0026crop=smart\\u0026s=54fa4fe2796dd83a21626f681621a6e90358b550\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=216\\u0026crop=smart\\u0026s=14912ec8838e42b36aa8c4933c35ab820cd57c23\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=320\\u0026crop=smart\\u0026s=ef49a1f1d5af3fd8bd35fa98d146c9a8a6d0d87a\", \"width\": 320, \"height\": 180}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?format=mp4\\u0026s=1a84d6bce09df84c8a92cb7ba4164909436d9e40\", \"width\": 344, \"height\": 194}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=108\\u0026format=mp4\\u0026s=8b46e458412c2c84102b1bf13c3fdf7f18b3568f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=216\\u0026format=mp4\\u0026s=2b7dae489ddf1942236630c69529a7d5f729e3de\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=320\\u0026format=mp4\\u0026s=6e7b51381744e955247f60d6cd2593b4db236416\", \"width\": 320, \"height\": 180}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?blur=40\\u0026format=png8\\u0026s=4e634bd5b942d47141fe86ebf9d0a8b6491e9042\", \"width\": 344, \"height\": 194}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=7aabc43145bc72b96ee1e7c410b04abcbc4fcb0a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=c2c0ba325634e048a4cee7a81455c4e7e35539be\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/GkGj4bnuOQI65tKGQZLnGJYY6q1chmZcF0BB2rAiYGQ.gif?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=png8\\u0026s=86c0539054d80c89e519a485d5c1a17776601d31\", \"width\": 320, \"height\": 180}]}}, \"id\": \"HarxcLAy98K8npCDdNAFBXoTvPcGEZ8pjnU6XQWfF_I\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/eofrpfcfbmd41/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/eofrpfcfbmd41/DASH_96\", \"dash_url\": \"https://v.redd.it/eofrpfcfbmd41/DASHPlaylist.mpd\", \"duration\": 31, \"hls_url\": \"https://v.redd.it/eofrpfcfbmd41/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_25tshg\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9j7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dry_Yak\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/BLOW_JOBS/comments/evf9j7/even_a_facial_cant_stop_her_from_deepthroating/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/AmazingOpulentGoldenmantledgroundsquirrel\", \"subreddit_subscribers\": 4908, \"created_utc\": 1580260208.0, \"num_crossposts\": 0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share Female Pov Throat, Pussy And Tits Fucked. Mia Bandini GIFs on Gfycat\", \"title\": \"Female pov throat, pussy and tits fucked. Mia Bandini\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Famazingopulentgoldenmantledgroundsquirrel\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Famazingopulentgoldenmantledgroundsquirrel\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FAmazingOpulentGoldenmantledgroundsquirrel-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 344, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/AmazingOpulentGoldenmantledgroundsquirrel-size_restricted.gif\", \"thumbnail_height\": 194}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"Enneagram\", \"selftext\": \"Hey! I\\u2019m trying to figure out a good friend of mines type. The reason I\\u2019m trying to work this out is after something they said that I couldn\\u2019t quite believe cane out of a real person. \\n\\nThey have a rather odd relationship with their father (I think he left very early so they were raised just by their mother). Anyway they were telling me how after a lunch with their father they had little interest in seeing them again. It was cold and very little emotion behind it. When I asked why, they went on to say how they had been asked about selling scripts (my friend is a filmmaker!). Apparently my friends father had suggested selling scripts and how someone might be able to make something \\u201cbetter\\u201d out of it. This is what set my friend off. Their response to all of it was \\u201cI\\u2019m not going to waste my time with someone unable to see my greatness\\u201d...\\n\\nYeh... I\\u2019ve heard a couple similar things in the past. We actually met in film school and they sort of wowed everyone with their first short film (and while I hate to admit it they are a very talented individual). We got friendly in the second semester and had a teacher who mentioned one student as being a genius (they were the typical quiet kid with quirky ideas). This seriously triggered my friend who immediately questioned the teachers ability for not recognising their ability and completely dismissed them. \\n\\nAnyway this is already quite a post so I want to know what type you think this person is? I\\u2019m not an expert at the enneagram but I suspected they were either a 3w4, 4w3 or some kind of 8. They\\u2019re competitive and pretty outgoing but we definitely bonded over their more laidback geekier side they definitely kept hidden. I\\u2019ll say as a 9 I feel very different to this person so I feel at least that\\u2019s out the question.\", \"author_fullname\": \"t2_zxmpd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Typing an arrogant friend\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/Enneagram\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9j6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.Enneagram\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey! I\\u2019m trying to figure out a good friend of mines type. The reason I\\u2019m trying to work this out is after something they said that I couldn\\u2019t quite believe cane out of a real person. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey have a rather odd relationship with their father (I think he left very early so they were raised just by their mother). Anyway they were telling me how after a lunch with their father they had little interest in seeing them again. It was cold and very little emotion behind it. When I asked why, they went on to say how they had been asked about selling scripts (my friend is a filmmaker!). Apparently my friends father had suggested selling scripts and how someone might be able to make something \\u201cbetter\\u201d out of it. This is what set my friend off. Their response to all of it was \\u201cI\\u2019m not going to waste my time with someone unable to see my greatness\\u201d...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYeh... I\\u2019ve heard a couple similar things in the past. We actually met in film school and they sort of wowed everyone with their first short film (and while I hate to admit it they are a very talented individual). We got friendly in the second semester and had a teacher who mentioned one student as being a genius (they were the typical quiet kid with quirky ideas). This seriously triggered my friend who immediately questioned the teachers ability for not recognising their ability and completely dismissed them. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway this is already quite a post so I want to know what type you think this person is? I\\u2019m not an expert at the enneagram but I suspected they were either a 3w4, 4w3 or some kind of 8. They\\u2019re competitive and pretty outgoing but we definitely bonded over their more laidback geekier side they definitely kept hidden. I\\u2019ll say as a 9 I feel very different to this person so I feel at least that\\u2019s out the question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2sdjj\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9j6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HelioMons\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/Enneagram/comments/evf9j6/typing_an_arrogant_friend/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/Enneagram/comments/evf9j6/typing_an_arrogant_friend/\", \"subreddit_subscribers\": 32130, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"DenverBroncos\", \"selftext\": \"I hate Clark Hunt and the chiefs even more. \\n\\n\\n[https://www.espn.com/nfl/story/\\\\_/id/28584898/chiefs-chairman-says-tyreek-hill-behavior-season-validates-new-deal?fbclid=IwAR04aNtJNq9-BJmGz5bjfeN6ccEGDm\\\\_R\\\\_22n7RfL4eIoqOSgYFYEfzXh9VM](https://www.espn.com/nfl/story/_/id/28584898/chiefs-chairman-says-tyreek-hill-behavior-season-validates-new-deal?fbclid=IwAR04aNtJNq9-BJmGz5bjfeN6ccEGDm_R_22n7RfL4eIoqOSgYFYEfzXh9VM)\", \"author_fullname\": \"t2_13rn90\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clark Hunt says Hill's behavior this season validates new deal. WHATT\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/DenverBroncos\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9j5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.DenverBroncos\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hate Clark Hunt and the chiefs even more. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.espn.com/nfl/story/_/id/28584898/chiefs-chairman-says-tyreek-hill-behavior-season-validates-new-deal?fbclid=IwAR04aNtJNq9-BJmGz5bjfeN6ccEGDm_R_22n7RfL4eIoqOSgYFYEfzXh9VM\\\"\\u003Ehttps://www.espn.com/nfl/story/_/id/28584898/chiefs-chairman-says-tyreek-hill-behavior-season-validates-new-deal?fbclid=IwAR04aNtJNq9-BJmGz5bjfeN6ccEGDm_R_22n7RfL4eIoqOSgYFYEfzXh9VM\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JLZsxf4HAhLKXsuoEngpGlt8pKNddE7ydAS06zUM9iI.jpg?auto=webp\\u0026s=aca465f9346f0195f452d5c298138693efdf6ee5\", \"width\": 1296, \"height\": 729}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JLZsxf4HAhLKXsuoEngpGlt8pKNddE7ydAS06zUM9iI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=96fdf08d130bd432855390d781dac95fa4d875da\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/JLZsxf4HAhLKXsuoEngpGlt8pKNddE7ydAS06zUM9iI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=916de0a69464d894cdbeca6c5afc07188049a55c\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/JLZsxf4HAhLKXsuoEngpGlt8pKNddE7ydAS06zUM9iI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=dfbea89d2c686f8d808cac18119df59bc2973540\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/JLZsxf4HAhLKXsuoEngpGlt8pKNddE7ydAS06zUM9iI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dce80b4a2c76d910afbc012b6fec2ded7be6cef5\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/JLZsxf4HAhLKXsuoEngpGlt8pKNddE7ydAS06zUM9iI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=42acfc64240cb52e6e531602e229b94fb9c0d5df\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/JLZsxf4HAhLKXsuoEngpGlt8pKNddE7ydAS06zUM9iI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ac8d4a360df53554be3f63eaf56cceec370c0163\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"SyzQtPrPbQSRPVc_aTTB5YMW6AzKZvR6Gl_NaOAuqIM\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s51j\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9j5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gwatt21\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/DenverBroncos/comments/evf9j5/clark_hunt_says_hills_behavior_this_season/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/DenverBroncos/comments/evf9j5/clark_hunt_says_hills_behavior_this_season/\", \"subreddit_subscribers\": 75855, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"buildapc\", \"selftext\": \"Hi all, this will be my first time building an AMD build. I've always been Intel, but now I'd love to move to a Ryzen build. I have everything I need already.. PSU, Case, SSD, and a GTX 1070. I usually play games on low/medium settings to get the best FPS possible on my 144hz monitor.\\n\\nNow here is the thing. I am building this computer and on a budget and the only items I need is RAM, CPU, and a motherboard.\\n\\nMy Budget = $350\\n\\nI'm reading online that I should pair a B40 \\u0026 a Ryzen 5 3600, but one of the issues I will run into is that most B40 board need a bios update. I do not have an older Ryzen CPU to do this update. \\n\\nCan someone help me build a good combo for a B40+CPU+RAM. Or should I go X470+CPU+RAM?\", \"author_fullname\": \"t2_uarg0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Need help... First AMD build.. ever!\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Build Help\"}], \"subreddit_name_prefixed\": \"r/buildapc\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"buildhelp\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9j4\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Build Help\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.buildapc\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, this will be my first time building an AMD build. I\\u0026#39;ve always been Intel, but now I\\u0026#39;d love to move to a Ryzen build. I have everything I need already.. PSU, Case, SSD, and a GTX 1070. I usually play games on low/medium settings to get the best FPS possible on my 144hz monitor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow here is the thing. I am building this computer and on a budget and the only items I need is RAM, CPU, and a motherboard.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy Budget = $350\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m reading online that I should pair a B40 \\u0026amp; a Ryzen 5 3600, but one of the issues I will run into is that most B40 board need a bios update. I do not have an older Ryzen CPU to do this update. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan someone help me build a good combo for a B40+CPU+RAM. Or should I go X470+CPU+RAM?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"7338e9ba-5cc3-11e3-9815-12313b0ae6f4\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rnve\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#ffaa50\", \"id\": \"evf9j4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Deepdiscount4you\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/buildapc/comments/evf9j4/need_help_first_amd_build_ever/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/buildapc/comments/evf9j4/need_help_first_amd_build_ever/\", \"subreddit_subscribers\": 1915856, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"GamePassGameClub\", \"selftext\": \"I just got dead cells the other day still not finished I only got to 1BC but it\\u2019s amazing. Any other games like this or good side scrolls on gamepass? (Other than hollow knight)\", \"author_fullname\": \"t2_qjqtspj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone know any good games to download like Dead cells?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/GamePassGameClub\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9j3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.GamePassGameClub\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just got dead cells the other day still not finished I only got to 1BC but it\\u2019s amazing. Any other games like this or good side scrolls on gamepass? (Other than hollow knight)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2dq7wg\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9j3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"supremeseby\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/GamePassGameClub/comments/evf9j3/anyone_know_any_good_games_to_download_like_dead/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/GamePassGameClub/comments/evf9j3/anyone_know_any_good_games_to_download_like_dead/\", \"subreddit_subscribers\": 6521, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"babyyodahate\", \"selftext\": \"It was cute, now it's just annoying. Nice to know I'm not alone.\", \"author_fullname\": \"t2_4ujqszua\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Please stop\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/babyyodahate\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9j0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.babyyodahate\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt was cute, now it\\u0026#39;s just annoying. Nice to know I\\u0026#39;m not alone.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_29a3lb\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9j0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bunnygal234\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/babyyodahate/comments/evf9j0/please_stop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/babyyodahate/comments/evf9j0/please_stop/\", \"subreddit_subscribers\": 2405, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"SCJerk\", \"selftext\": \"\", \"author_fullname\": \"t2_rvneq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"M'Alexa ends racism at last\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SCJerk\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": true, \"name\": \"t3_evf9iy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"SquaredCircle\", \"selftext\": \"\", \"author_fullname\": \"t2_vy4bo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Alexa Bliss chokeslams Tessa Blanchard\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SquaredCircle\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"watch\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ev8ikm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 524, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 524, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580261403.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?format=png8\\u0026s=76dbdb7f0d569a35fe18e683144b2dd3aec0252a\", \"width\": 728, \"height\": 408}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=c794169061b62f198ba0740c1ee792a423602923\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=19168d901351148d86833810c82948e2988fb415\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=f7b11c5d0f9543d2c132b05dad1d376908ea5062\", \"width\": 320, \"height\": 179}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=c0d13fd677b186d7bfb0b000138fca0b4d7552ea\", \"width\": 640, \"height\": 358}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?s=ccb6a9afbe7341634c0afb4b85abcac753f7a384\", \"width\": 728, \"height\": 408}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=108\\u0026crop=smart\\u0026s=9a10cd5ae4870f623be56166c665571b59f6290b\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=216\\u0026crop=smart\\u0026s=69976d570285e3b361252fae680c6caf76094f0f\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=320\\u0026crop=smart\\u0026s=ee675277764d732c3d0b3fec3b3f2d5890e0fffc\", \"width\": 320, \"height\": 179}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=640\\u0026crop=smart\\u0026s=acbd7361e117f4733172d4c954d8e8bbf8541922\", \"width\": 640, \"height\": 358}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?format=mp4\\u0026s=8a7020aafbe7ff0942911528b6f8ea48832b166e\", \"width\": 728, \"height\": 408}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=108\\u0026format=mp4\\u0026s=86fd869a07aebf4af7841bae71ea8915d062a4cb\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=216\\u0026format=mp4\\u0026s=2117a69a469d27dec3d55c86e2b548002734ef82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=320\\u0026format=mp4\\u0026s=1406e5f4fdd10716185e398babea05893e1ebf77\", \"width\": 320, \"height\": 179}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=640\\u0026format=mp4\\u0026s=f89ebe3a3e8cd15ec8f1fdc05905396d4008a7fd\", \"width\": 640, \"height\": 358}]}}, \"id\": \"gqaGD5rK-08sAs8IyMmI3EerlbpeYYk7WG57DH3ByX0\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/yoahnddd1kd41/DASH_480\", \"height\": 480, \"width\": 854, \"scrubber_media_url\": \"https://v.redd.it/yoahnddd1kd41/DASH_96\", \"dash_url\": \"https://v.redd.it/yoahnddd1kd41/DASHPlaylist.mpd\", \"duration\": 35, \"hls_url\": \"https://v.redd.it/yoahnddd1kd41/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2sljg\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ev8ikm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"biker_taker\", \"discussion_type\": null, \"num_comments\": 136, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SquaredCircle/comments/ev8ikm/alexa_bliss_chokeslams_tessa_blanchard/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://imgur.com/MMMWXrX.gifv\", \"subreddit_subscribers\": 454764, \"created_utc\": 1580232603.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?format=png8\\u0026s=76dbdb7f0d569a35fe18e683144b2dd3aec0252a\", \"width\": 728, \"height\": 408}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=c794169061b62f198ba0740c1ee792a423602923\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=19168d901351148d86833810c82948e2988fb415\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=f7b11c5d0f9543d2c132b05dad1d376908ea5062\", \"width\": 320, \"height\": 179}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=c0d13fd677b186d7bfb0b000138fca0b4d7552ea\", \"width\": 640, \"height\": 358}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?s=ccb6a9afbe7341634c0afb4b85abcac753f7a384\", \"width\": 728, \"height\": 408}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=108\\u0026crop=smart\\u0026s=9a10cd5ae4870f623be56166c665571b59f6290b\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=216\\u0026crop=smart\\u0026s=69976d570285e3b361252fae680c6caf76094f0f\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=320\\u0026crop=smart\\u0026s=ee675277764d732c3d0b3fec3b3f2d5890e0fffc\", \"width\": 320, \"height\": 179}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=640\\u0026crop=smart\\u0026s=acbd7361e117f4733172d4c954d8e8bbf8541922\", \"width\": 640, \"height\": 358}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?format=mp4\\u0026s=8a7020aafbe7ff0942911528b6f8ea48832b166e\", \"width\": 728, \"height\": 408}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=108\\u0026format=mp4\\u0026s=86fd869a07aebf4af7841bae71ea8915d062a4cb\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=216\\u0026format=mp4\\u0026s=2117a69a469d27dec3d55c86e2b548002734ef82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=320\\u0026format=mp4\\u0026s=1406e5f4fdd10716185e398babea05893e1ebf77\", \"width\": 320, \"height\": 179}, {\"url\": \"https://external-preview.redd.it/41nJuAAIXArvLcVGUwjREk4vl7sK0IfsFQKM-yWMx14.gif?width=640\\u0026format=mp4\\u0026s=f89ebe3a3e8cd15ec8f1fdc05905396d4008a7fd\", \"width\": 640, \"height\": 358}]}}, \"id\": \"gqaGD5rK-08sAs8IyMmI3EerlbpeYYk7WG57DH3ByX0\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/yoahnddd1kd41/DASH_480\", \"height\": 480, \"width\": 854, \"scrubber_media_url\": \"https://v.redd.it/yoahnddd1kd41/DASH_96\", \"dash_url\": \"https://v.redd.it/yoahnddd1kd41/DASHPlaylist.mpd\", \"duration\": 35, \"hls_url\": \"https://v.redd.it/yoahnddd1kd41/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3ckoa\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9iy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"white-pinkman\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_ev8ikm\", \"author_flair_text_color\": null, \"permalink\": \"/r/SCJerk/comments/evf9iy/malexa_ends_racism_at_last/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://imgur.com/MMMWXrX.gifv\", \"subreddit_subscribers\": 10883, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"miniatures\", \"selftext\": \" [https://www.youtube.com/watch?v=e6S3j6t-pVU](https://www.youtube.com/watch?v=e6S3j6t-pVU) \\n\\n\\nSCIFI Chibi MIniatures Board Game \\n\\n\\nLinks on the video's description\", \"author_fullname\": \"t2_1qh892ww\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Space Dunjon!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/miniatures\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ix\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.miniatures\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=e6S3j6t-pVU\\\"\\u003Ehttps://www.youtube.com/watch?v=e6S3j6t-pVU\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESCIFI Chibi MIniatures Board Game \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELinks on the video\\u0026#39;s description\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/3gqvFutAAKVasNfAIQqseZbMIpJ8os8juIaA93uWBWk.jpg?auto=webp\\u0026s=2056a4bdfa31df019bcfa90837f0123d6a94a75b\", \"width\": 1280, \"height\": 720}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/3gqvFutAAKVasNfAIQqseZbMIpJ8os8juIaA93uWBWk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=55d365c6fe3381ae5511fd3aca9e69c183eb2f60\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/3gqvFutAAKVasNfAIQqseZbMIpJ8os8juIaA93uWBWk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcd82626ae3a23684f63f8f04499d243fac2eac6\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/3gqvFutAAKVasNfAIQqseZbMIpJ8os8juIaA93uWBWk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cb2205455c8426a9a6275519e80eea4ddffd7454\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/3gqvFutAAKVasNfAIQqseZbMIpJ8os8juIaA93uWBWk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f9b7e6338c1ecbc27b042e66917dc992d135b85d\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/3gqvFutAAKVasNfAIQqseZbMIpJ8os8juIaA93uWBWk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=388b18f246b18a95a59c5b4a8b759b2be712483f\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/3gqvFutAAKVasNfAIQqseZbMIpJ8os8juIaA93uWBWk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=570714a9db07a1c93b440b0d3d148cb63d31d67f\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"ZsvSTpdFBn3myGAwmSe0IAHKZysNCgM0Cjz_pC2mRTE\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2r7at\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ix\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DanyQuest\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/miniatures/comments/evf9ix/space_dunjon/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/miniatures/comments/evf9ix/space_dunjon/\", \"subreddit_subscribers\": 19927, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"AskReddit\", \"selftext\": \"\", \"author_fullname\": \"t2_5a5w0f1e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where to buy authentic Japanese Kimono in US?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/AskReddit\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9iw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.AskReddit\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh1i\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9iw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"COLLINS08__66\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/AskReddit/comments/evf9iw/where_to_buy_authentic_japanese_kimono_in_us/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/AskReddit/comments/evf9iw/where_to_buy_authentic_japanese_kimono_in_us/\", \"subreddit_subscribers\": 26142253, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"LarkinLoveXXX\", \"selftext\": \"\", \"author_fullname\": \"t2_2lmrslrw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Goth status: masturbating in a graveyard \\ud83e\\udd18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LarkinLoveXXX\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": true, \"name\": \"t3_evf9iv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fforthrightuniquegrouper\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fforthrightuniquegrouper-larkinlovexxx-public-goth\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FForthrightUniqueGrouper-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share Larkin Love GIFs and Public GIFs on Gfycat\", \"title\": \"larkin love public graveyard masturbation\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fforthrightuniquegrouper\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fforthrightuniquegrouper-larkinlovexxx-public-goth\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FForthrightUniqueGrouper-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 640, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ForthrightUniqueGrouper-size_restricted.gif\", \"thumbnail_height\": 360}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fforthrightuniquegrouper\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fforthrightuniquegrouper-larkinlovexxx-public-goth\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FForthrightUniqueGrouper-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/evf9iv\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289007.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?format=png8\\u0026s=63d2a07552a271ff991e2d1a3797247788ef2fce\", \"width\": 444, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=7bdee9846622b42b261cf4df66d2242503f59965\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=fadda25244cf0de3d527c55eca8cecbc56bc8bce\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=c47a84d9d2369a410c3ad13b9172ad08954c001d\", \"width\": 320, \"height\": 180}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?blur=40\\u0026format=png8\\u0026s=aa3652143b9cc02b0a3a8833b6b253339c710b75\", \"width\": 444, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=7e31f583627f9cc0bd8340ba12d21ceb5679cdbc\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=b77c9e6f372a4daf591bfa29f731e503997c02bd\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=png8\\u0026s=807a7a1cb0927c5918033bef6f6ad5f0c1b00023\", \"width\": 320, \"height\": 180}]}, \"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?s=ba51f0237e5703e929137ac822dde9ab1c012a22\", \"width\": 444, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=108\\u0026crop=smart\\u0026s=7b24ad006fab513931e44d4a84cb50e301af0a62\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=216\\u0026crop=smart\\u0026s=0f736ea52caa222530b343ea2e7ddb6e1ca75f33\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=320\\u0026crop=smart\\u0026s=8c5314dca1ebcb2dcffa23f6febbde6255d2dca4\", \"width\": 320, \"height\": 180}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?format=mp4\\u0026s=d0c7c9eb6e7cf535d2fd36a7f716904ce0ac70e6\", \"width\": 444, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=108\\u0026format=mp4\\u0026s=a9b91bb92b361da6ed14bc7b9a89d3eaf20051ac\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=216\\u0026format=mp4\\u0026s=5d6d266675c710ae57fef9baf40f7e81691a49d4\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=320\\u0026format=mp4\\u0026s=19d31121ac703dea5bc9abdf8e952418d0eb70ca\", \"width\": 320, \"height\": 180}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?blur=40\\u0026format=png8\\u0026s=aa3652143b9cc02b0a3a8833b6b253339c710b75\", \"width\": 444, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=png8\\u0026s=7e31f583627f9cc0bd8340ba12d21ceb5679cdbc\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=png8\\u0026s=b77c9e6f372a4daf591bfa29f731e503997c02bd\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/gdd-NGJag_ntcY52LWTUwTkK2Hy-PEwA937a3Su8Ue8.gif?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=png8\\u0026s=807a7a1cb0927c5918033bef6f6ad5f0c1b00023\", \"width\": 320, \"height\": 180}]}}, \"id\": \"zCcnZwHm_YdJk4894V0KvsqKscGHr-I3H0F2CZ6Evs0\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/40ucmc6fbmd41/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/40ucmc6fbmd41/DASH_96\", \"dash_url\": \"https://v.redd.it/40ucmc6fbmd41/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/40ucmc6fbmd41/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_dwway\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9iv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"larkinlovexxx\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LarkinLoveXXX/comments/evf9iv/goth_status_masturbating_in_a_graveyard/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/forthrightuniquegrouper-larkinlovexxx-larkin-love-public-goth\", \"subreddit_subscribers\": 47102, \"created_utc\": 1580260207.0, \"num_crossposts\": 0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch and share Larkin Love GIFs and Public GIFs on Gfycat\", \"title\": \"larkin love public graveyard masturbation\", \"type\": \"video\", \"author_name\": \"Gfycat\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Fforthrightuniquegrouper\\u0026display_name=Gfycat\\u0026url=https%3A%2F%2Fgfycat.com%2Fforthrightuniquegrouper-larkinlovexxx-public-goth\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FForthrightUniqueGrouper-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" title=\\\"Gfycat embed\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 640, \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ForthrightUniqueGrouper-size_restricted.gif\", \"thumbnail_height\": 360}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"privacy\", \"selftext\": \"\", \"author_fullname\": \"t2_1h1hfeve\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Fuck off Google! - Let's kick Google and co. out of our Lives and Spaces!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/privacy\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 80, \"hide_score\": true, \"name\": \"t3_evf9it\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289006.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"fuckoffgoogle.de\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2RyvQq9LI_nAkJcCeHQC5pP3As7EvMov03SNiZ3HMJE.jpg?auto=webp\\u0026s=7ab2851bbb178f331285807abb322c879e20522b\", \"width\": 1104, \"height\": 634}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2RyvQq9LI_nAkJcCeHQC5pP3As7EvMov03SNiZ3HMJE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2d820d4d49e1c088695a6db51970b126c0e5831e\", \"width\": 108, \"height\": 62}, {\"url\": \"https://external-preview.redd.it/2RyvQq9LI_nAkJcCeHQC5pP3As7EvMov03SNiZ3HMJE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c655db5a6f234ea063da4b30a3d7b680843f3931\", \"width\": 216, \"height\": 124}, {\"url\": \"https://external-preview.redd.it/2RyvQq9LI_nAkJcCeHQC5pP3As7EvMov03SNiZ3HMJE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9728d3556801e4100cc397e1f4f68a716e21f919\", \"width\": 320, \"height\": 183}, {\"url\": \"https://external-preview.redd.it/2RyvQq9LI_nAkJcCeHQC5pP3As7EvMov03SNiZ3HMJE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bca357a712cac5ab94e0aae9d3021d8f177662f4\", \"width\": 640, \"height\": 367}, {\"url\": \"https://external-preview.redd.it/2RyvQq9LI_nAkJcCeHQC5pP3As7EvMov03SNiZ3HMJE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=25af8c44a9ddc719f61fa84e28b721a6bf21a8fd\", \"width\": 960, \"height\": 551}, {\"url\": \"https://external-preview.redd.it/2RyvQq9LI_nAkJcCeHQC5pP3As7EvMov03SNiZ3HMJE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b0bb1219b33eef1e8eae8c70fcc9daab23e0fc69\", \"width\": 1080, \"height\": 620}], \"variants\": {}, \"id\": \"v2urcl08aLpXkjv88r2A2C-3xN68Cz1G_DHLwDMWUjA\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhlc\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9it\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AgreeableLandscape3\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/privacy/comments/evf9it/fuck_off_google_lets_kick_google_and_co_out_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://fuckoffgoogle.de/\", \"subreddit_subscribers\": 656494, \"created_utc\": 1580260206.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"CUNY\", \"selftext\": \"Attend hunter right now, want to tranfer to City College for mechanical engineering, but I don't have letters of recommendations or a personal statement prepared, if I just complete the application, How likely will I be able to transfer?\", \"author_fullname\": \"t2_2tlp1gl0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How likely will I be able to tranfer from one cuny to another?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/CUNY\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9is\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289006.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.CUNY\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAttend hunter right now, want to tranfer to City College for mechanical engineering, but I don\\u0026#39;t have letters of recommendations or a personal statement prepared, if I just complete the application, How likely will I be able to transfer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2shus\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9is\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Yf15\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/CUNY/comments/evf9is/how_likely_will_i_be_able_to_tranfer_from_one/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/CUNY/comments/evf9is/how_likely_will_i_be_able_to_tranfer_from_one/\", \"subreddit_subscribers\": 1663, \"created_utc\": 1580260206.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_benzamide23\", \"selftext\": \"# DOWNLOAD LINK: megafile3.top/file/VA - Schumann Essentials (2020)\", \"author_fullname\": \"t2_52224aqm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VA - Schumann Essentials (2020)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/benzamide23\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9iq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289006.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.benzamide23\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDOWNLOAD LINK: megafile3.top/file/VA - Schumann Essentials (2020)\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_28rcy6\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9iq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benzamide23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_benzamide23/comments/evf9iq/va_schumann_essentials_2020/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_benzamide23/comments/evf9iq/va_schumann_essentials_2020/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260206.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_AcrobaticDonkey4\", \"selftext\": \"Title : Make Lemonade\\nLink Read Online / Download : https://localpdf.com/250924\\nAuthor : Virginia Euwer Wolff\\nPages : 478\\nPublisher : Henry Holt and Company\\nISBN : 250924\\nRelease Date : 20-11-2009\\n\\n#downloadbook #book #readonline #readbookonline #ebookcollection #ebookdownload #pdf #ebook #epub #kindle\", \"author_fullname\": \"t2_5juy8cyy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BEST PDF Make Lemonade E-book download\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/AcrobaticDonkey4\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ip\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"spoiler\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289006.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.AcrobaticDonkey4\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETitle : Make Lemonade\\nLink Read Online / Download : \\u003Ca href=\\\"https://localpdf.com/250924\\\"\\u003Ehttps://localpdf.com/250924\\u003C/a\\u003E\\nAuthor : Virginia Euwer Wolff\\nPages : 478\\nPublisher : Henry Holt and Company\\nISBN : 250924\\nRelease Date : 20-11-2009\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Edownloadbook #book #readonline #readbookonline #ebookcollection #ebookdownload #pdf #ebook #epub #kindle\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": true, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2e275m\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ip\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AcrobaticDonkey4\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_AcrobaticDonkey4/comments/evf9ip/best_pdf_make_lemonade_ebook_download/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/u_AcrobaticDonkey4/comments/evf9ip/best_pdf_make_lemonade_ebook_download/\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260206.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"u_shine19ashuskincare\", \"selftext\": \"\", \"author_fullname\": \"t2_4zv2rdeb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The simplest way to get a desired parlor is to Google about hair salons in your area. You can also take help of salon directory.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/shine19ashuskincare\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 116, \"hide_score\": true, \"name\": \"t3_evf9io\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/codeJBobVVMClFVukvtRn6YhEWePe-fs1UrxlRmxisA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289006.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/pybd56f3bmd41.jpg?auto=webp\\u0026s=2050c0b7b2dd957b294650cda20eb8705e973ca4\", \"width\": 600, \"height\": 500}, \"resolutions\": [{\"url\": \"https://preview.redd.it/pybd56f3bmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fabea25801c847964d8d32b07482b3bb9debbfa2\", \"width\": 108, \"height\": 90}, {\"url\": \"https://preview.redd.it/pybd56f3bmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ff7b081792fc1c40ed97f77de1ebbfc4efe0a7e5\", \"width\": 216, \"height\": 180}, {\"url\": \"https://preview.redd.it/pybd56f3bmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=355f3a8461ca715bc403c23ee54b1fda3875b29d\", \"width\": 320, \"height\": 266}], \"variants\": {}, \"id\": \"xp9j8BMboSmVI3eoU-7GDN01aL5sflm9SYwlUnuMkeY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_288g5z\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9io\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shine19ashuskincare\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_shine19ashuskincare/comments/evf9io/the_simplest_way_to_get_a_desired_parlor_is_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/pybd56f3bmd41.jpg\", \"subreddit_subscribers\": 0, \"created_utc\": 1580260206.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"referralcodes\", \"selftext\": \"\", \"author_fullname\": \"t2_159tw0k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Skip The Dishes - \\ud83c\\udf54\\ud83c\\udf5f Hungry? Get $5 off your first delivery or pickup order over $15! \\ud83c\\udf54\\ud83c\\udf5f\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/referralcodes\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": true, \"name\": \"t3_evf9in\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QGyRM-aTKLGnYve4lNfBOsn9gZjGThBaSw1F1GfsAac.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"u_missyb77\", \"selftext\": \"You should order with Skip The Dishes! Sign up with this link to get **$5 off your first order over $15**:\\n\\n\\u0026#x200B;\\n\\n[https://www.skipthedishes.com/r/vfPjweb2o6](https://www.skipthedishes.com/r/vfPjweb2o6)\\n\\n\\u0026#x200B;\\n\\nSome restaurants offer free delivery over a certain amount. You can also reuse a referral if you create a new account.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://preview.redd.it/lfnt5fomksb41.jpg?width=360\\u0026format=pjpg\\u0026auto=webp\\u0026s=72911074a9fc30f4baafe5864e62d7ec13459443\", \"author_fullname\": \"t2_159tw0k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Skip The Dishes - \\ud83c\\udf54\\ud83c\\udf5f Hungry? Get $5 off your first delivery or pickup order over $15 \\ud83c\\udf54\\ud83c\\udf5f\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"u/missyb77\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"media_metadata\": {\"lfnt5fomksb41\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/jpg\", \"p\": [{\"y\": 56, \"x\": 108, \"u\": \"https://external-preview.redd.it/lfnt5fomksb41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=33737a9ac019a6b4826e24cb2f8163bbca4b1718\"}, {\"y\": 113, \"x\": 216, \"u\": \"https://external-preview.redd.it/lfnt5fomksb41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fc233539cd259ef34b2f280eb661a3558895a38a\"}, {\"y\": 168, \"x\": 320, \"u\": \"https://external-preview.redd.it/lfnt5fomksb41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab6ef58e3306eee0527bcc949559dfa20366c9b9\"}], \"s\": {\"y\": 189, \"x\": 360, \"u\": \"https://preview.redd.it/lfnt5fomksb41.jpg?width=360\\u0026format=pjpg\\u0026auto=webp\\u0026s=72911074a9fc30f4baafe5864e62d7ec13459443\"}, \"id\": \"lfnt5fomksb41\"}}, \"name\": \"t3_er1f6n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"user\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QGyRM-aTKLGnYve4lNfBOsn9gZjGThBaSw1F1GfsAac.jpg\", \"edited\": 1579464738.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1579493081.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.missyb77\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou should order with Skip The Dishes! Sign up with this link to get \\u003Cstrong\\u003E$5 off your first order over $15\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.skipthedishes.com/r/vfPjweb2o6\\\"\\u003Ehttps://www.skipthedishes.com/r/vfPjweb2o6\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome restaurants offer free delivery over a certain amount. You can also reuse a referral if you create a new account.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://preview.redd.it/lfnt5fomksb41.jpg?width=360\\u0026amp;format=pjpg\\u0026amp;auto=webp\\u0026amp;s=72911074a9fc30f4baafe5864e62d7ec13459443\\\"\\u003Ehttps://preview.redd.it/lfnt5fomksb41.jpg?width=360\\u0026amp;format=pjpg\\u0026amp;auto=webp\\u0026amp;s=72911074a9fc30f4baafe5864e62d7ec13459443\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"qa\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?auto=webp\\u0026s=63305fe6621a8fbdbca8f3108afd841077cb3ba5\", \"width\": 360, \"height\": 189}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a5157d4cf4f03bba4420c90f9d555794abf56158\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e832ccacf5206f9926059fcd792e7ac492149212\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3fc2d028edce3b3b673df2e9794de483fb0bb23d\", \"width\": 320, \"height\": 168}], \"variants\": {}, \"id\": \"jBkiD9qO0jCyg-3szfWiJ23HyY5qLNFJy-tUqZcM6rw\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_w2zax\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"er1f6n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"missyb77\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/u_missyb77/comments/er1f6n/skip_the_dishes_hungry_get_5_off_your_first/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/u_missyb77/comments/er1f6n/skip_the_dishes_hungry_get_5_off_your_first/\", \"subreddit_subscribers\": 0, \"created_utc\": 1579464281.0, \"num_crossposts\": 253, \"media\": null, \"is_video\": false}], \"created\": 1580289005.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.missyb77\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?auto=webp\\u0026s=63305fe6621a8fbdbca8f3108afd841077cb3ba5\", \"width\": 360, \"height\": 189}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a5157d4cf4f03bba4420c90f9d555794abf56158\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e832ccacf5206f9926059fcd792e7ac492149212\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/9ofUVgBvSDyAMPgwXbnT2u2-unorfM7BKojlnD-1kWg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3fc2d028edce3b3b673df2e9794de483fb0bb23d\", \"width\": 320, \"height\": 168}], \"variants\": {}, \"id\": \"jBkiD9qO0jCyg-3szfWiJ23HyY5qLNFJy-tUqZcM6rw\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_31den\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9in\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"missyb77\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_er1f6n\", \"author_flair_text_color\": null, \"permalink\": \"/r/referralcodes/comments/evf9in/skip_the_dishes_hungry_get_5_off_your_first/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"/user/missyb77/comments/er1f6n/skip_the_dishes_hungry_get_5_off_your_first/\", \"subreddit_subscribers\": 7514, \"created_utc\": 1580260205.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"USF\", \"selftext\": \"\", \"author_fullname\": \"t2_4oige\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"USF Softball is outside the preseason Top 25 in a couple major polls, but is receiving votes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/USF\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": true, \"name\": \"t3_evf9im\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"width\": 350, \"scrolling\": false, \"height\": 200}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"66b5baa8-fc10-11e0-9bb9-12313d096aae\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"twitter.com\", \"oembed\": {\"provider_url\": \"https://twitter.com\", \"version\": \"1.0\", \"url\": \"https://twitter.com/American_SBall/status/1222258318099566593\", \"author_name\": \"American Softball\", \"height\": null, \"width\": 350, \"html\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"author_url\": \"https://twitter.com/American_SBall\", \"provider_name\": \"Twitter\", \"cache_age\": 3153600000, \"type\": \"rich\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"width\": 350, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/evf9im\", \"height\": 200}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": \"alumn\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"GoBulls\", \"selftext\": \"\", \"author_fullname\": \"t2_4oige\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"USF Softball is outside the preseason Top 25 in a couple major polls, but is receiving votes\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Softball\"}], \"subreddit_name_prefixed\": \"r/GoBulls\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": true, \"name\": \"t3_evedf9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"transparent\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"width\": 350, \"scrolling\": false, \"height\": 360}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"d0a3cec0-04fc-11ea-bdb0-0e7fef67724d\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"twitter.com\", \"oembed\": {\"provider_url\": \"https://twitter.com\", \"version\": \"1.0\", \"url\": \"https://twitter.com/American_SBall/status/1222258318099566593\", \"author_name\": \"American Softball\", \"height\": 360, \"width\": 350, \"html\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"author_url\": \"https://twitter.com/American_SBall\", \"provider_name\": \"Twitter\", \"cache_age\": 3153600000, \"type\": \"rich\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"width\": 350, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/evedf9\", \"height\": 360}, \"link_flair_text\": \"Softball\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ix6lpUINHI3TGvBtkAijGZjc3llCQjccvYK-yMN-Afc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [{\"a\": \":f23:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/ep89ksdshdy31_t5_3ohin/f23\"}], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580285232.0, \"link_flair_type\": \"richtext\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"twitter.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Pniljq96bGha8CYHsp6X9LT2doRw7PemY5oEo3AKB7E.jpg?auto=webp\\u0026s=6177020a48317dd17d79773e36d8133369345868\", \"width\": 140, \"height\": 73}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Pniljq96bGha8CYHsp6X9LT2doRw7PemY5oEo3AKB7E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=014b4035adab3180f9b9d9524a8c022d59a59b0a\", \"width\": 108, \"height\": 56}], \"variants\": {}, \"id\": \"_kHcC8QLcmXOVLSh7h1cCOeO1DIDUQ4HTRzH_0jlh8s\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"df809c4a-a81b-11e9-aae2-0e5f3a53f4dc\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \":f23:\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3ohin\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#dadada\", \"id\": \"evedf9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"japplefield\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/GoBulls/comments/evedf9/usf_softball_is_outside_the_preseason_top_25_in_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://twitter.com/American_SBall/status/1222258318099566593?s=19\", \"subreddit_subscribers\": 508, \"created_utc\": 1580256432.0, \"num_crossposts\": 1, \"media\": {\"type\": \"twitter.com\", \"oembed\": {\"provider_url\": \"https://twitter.com\", \"version\": \"1.0\", \"url\": \"https://twitter.com/American_SBall/status/1222258318099566593\", \"author_name\": \"American Softball\", \"height\": 360, \"width\": 350, \"html\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"author_url\": \"https://twitter.com/American_SBall\", \"provider_name\": \"Twitter\", \"cache_age\": 3153600000, \"type\": \"rich\"}}, \"is_video\": false}], \"created\": 1580289005.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"twitter.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Pniljq96bGha8CYHsp6X9LT2doRw7PemY5oEo3AKB7E.jpg?auto=webp\\u0026s=6177020a48317dd17d79773e36d8133369345868\", \"width\": 140, \"height\": 73}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Pniljq96bGha8CYHsp6X9LT2doRw7PemY5oEo3AKB7E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=014b4035adab3180f9b9d9524a8c022d59a59b0a\", \"width\": 108, \"height\": 56}], \"variants\": {}, \"id\": \"_kHcC8QLcmXOVLSh7h1cCOeO1DIDUQ4HTRzH_0jlh8s\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2r3i8\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9im\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"japplefield\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_evedf9\", \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/USF/comments/evf9im/usf_softball_is_outside_the_preseason_top_25_in_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://twitter.com/American_SBall/status/1222258318099566593?s=19\", \"subreddit_subscribers\": 7628, \"created_utc\": 1580260205.0, \"num_crossposts\": 0, \"media\": {\"type\": \"twitter.com\", \"oembed\": {\"provider_url\": \"https://twitter.com\", \"version\": \"1.0\", \"url\": \"https://twitter.com/American_SBall/status/1222258318099566593\", \"author_name\": \"American Softball\", \"height\": null, \"width\": 350, \"html\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003E\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in USA Today/\\u003Ca href=\\\"https://twitter.com/NFCAorg?ref_src=twsrc%5Etfw\\\"\\u003E@NFCAorg\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/RV?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#RV\\u003C/a\\u003E in ESPN/\\u003Ca href=\\\"https://twitter.com/USASoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USASoftball\\u003C/a\\u003E Top 25 \\u2705\\u003Ca href=\\\"https://twitter.com/hashtag/AmericanSB?src=hash\\u0026amp;ref_src=twsrc%5Etfw\\\"\\u003E#AmericanSB\\u003C/a\\u003E\\u0026#39;s predicted favorite \\u003Ca href=\\\"https://twitter.com/USFSoftball?ref_src=twsrc%5Etfw\\\"\\u003E@USFSoftball\\u003C/a\\u003E heads into 2020 in the national polls! \\u003Ca href=\\\"https://t.co/mv6lx0igDC\\\"\\u003Epic.twitter.com/mv6lx0igDC\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; American Softball (@American_SBall) \\u003Ca href=\\\"https://twitter.com/American_SBall/status/1222258318099566593?ref_src=twsrc%5Etfw\\\"\\u003EJanuary 28, 2020\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"author_url\": \"https://twitter.com/American_SBall\", \"provider_name\": \"Twitter\", \"cache_age\": 3153600000, \"type\": \"rich\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"NobodyAsked\", \"selftext\": \"\", \"author_fullname\": \"t2_3nozqqg1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"That\\u2019s some aggressive and unrelated dog hate ya got there\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/NobodyAsked\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9il\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/KCw1beMy0-N5lsMASfMX6gbbNZf-zwe2jJzKbgF-05o.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289005.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/zbr3vekebmd41.jpg?auto=webp\\u0026s=8fc70e444410cc565c07be020d6497db8cef844e\", \"width\": 828, \"height\": 1313}, \"resolutions\": [{\"url\": \"https://preview.redd.it/zbr3vekebmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=df79a8c45b74f6076ba6c048f691bfb16cf686dd\", \"width\": 108, \"height\": 171}, {\"url\": \"https://preview.redd.it/zbr3vekebmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=538d7a5d2c39c362d28f11aa7a0d3db7aeeb79f0\", \"width\": 216, \"height\": 342}, {\"url\": \"https://preview.redd.it/zbr3vekebmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4ffe59a821e3ddd8aa3223db29e0a89c9e0245ef\", \"width\": 320, \"height\": 507}, {\"url\": \"https://preview.redd.it/zbr3vekebmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c6449fbc306d590cf0048aec1175ef9cb0a29c00\", \"width\": 640, \"height\": 1014}], \"variants\": {}, \"id\": \"zXLujykBcAYv9TVc4y9bkprioMJ3B0a_4FEJHWRfgY0\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3ods7\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9il\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SailorRose23\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/NobodyAsked/comments/evf9il/thats_some_aggressive_and_unrelated_dog_hate_ya/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/zbr3vekebmd41.jpg\", \"subreddit_subscribers\": 285427, \"created_utc\": 1580260205.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"memes\", \"selftext\": \"\", \"author_fullname\": \"t2_rw6yo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"All the time\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/memes\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 135, \"hide_score\": true, \"name\": \"t3_evf9ij\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/26v3CVZi7DDBaIDe78-SzBdk5A6_KtmA8n5BCbnADWU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289005.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/9th9v1mebmd41.jpg?auto=webp\\u0026s=ec46f840ffef7e75de22705e77e4bdf1a249ebd0\", \"width\": 750, \"height\": 728}, \"resolutions\": [{\"url\": \"https://preview.redd.it/9th9v1mebmd41.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=667877afa09d51971bf6c0753f5abb8cad1c4470\", \"width\": 108, \"height\": 104}, {\"url\": \"https://preview.redd.it/9th9v1mebmd41.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=75caae8a67296b78607badaed3d2f4e04116ba35\", \"width\": 216, \"height\": 209}, {\"url\": \"https://preview.redd.it/9th9v1mebmd41.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d8a0498e1d34a675aab6035ffec7ef5a941f80b5\", \"width\": 320, \"height\": 310}, {\"url\": \"https://preview.redd.it/9th9v1mebmd41.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a11210fad3d061e37686c318ad81ac1c7f7ff053\", \"width\": 640, \"height\": 621}], \"variants\": {}, \"id\": \"mIJ7No_3KK5LAfYHIU5VhOT3__w2eGQASQ_Axvi86sw\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qjpg\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ij\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"castor2015\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/memes/comments/evf9ij/all_the_time/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/9th9v1mebmd41.jpg\", \"subreddit_subscribers\": 8075581, \"created_utc\": 1580260205.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"NaughtyNerdGirls\", \"selftext\": \"\", \"author_fullname\": \"t2_52wv7kax\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[selling] 21 from the UK, kik me for some naughty fun @ FunBex | skype shows, sexting, nudes, vids and whatever your horny heart desires \\ud83d\\ude18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/NaughtyNerdGirls\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_evf9ii\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289005.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?auto=webp\\u0026s=d1161befc46aca9324d86cfe972f09af70ef11b9\", \"width\": 567, \"height\": 727}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c9ca6fae027c42de8b383f961b347cf5fcb2d493\", \"width\": 108, \"height\": 138}, {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9299c8e091116fc8404ba4a87647cbd482fc290f\", \"width\": 216, \"height\": 276}, {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=156737c2f4a44a434e1660b3c163bec24d5d9cc2\", \"width\": 320, \"height\": 410}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=74571ff540058ede4c260ff4e7f0d1385c96d34d\", \"width\": 567, \"height\": 727}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=4d6ec770a6a5832960971053082a4175d2f6180d\", \"width\": 108, \"height\": 138}, {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=1fb8cc5b42d52f20ec0c6385f9c67021256e4236\", \"width\": 216, \"height\": 276}, {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=33ab8ba6eb858d2de63e9b69eb6f9b80c5875378\", \"width\": 320, \"height\": 410}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=74571ff540058ede4c260ff4e7f0d1385c96d34d\", \"width\": 567, \"height\": 727}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=4d6ec770a6a5832960971053082a4175d2f6180d\", \"width\": 108, \"height\": 138}, {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=1fb8cc5b42d52f20ec0c6385f9c67021256e4236\", \"width\": 216, \"height\": 276}, {\"url\": \"https://external-preview.redd.it/5dWOEuJ0ns0EnO5r0a0QPrhroL2NKttTKHP5a4q5U5E.png?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=33ab8ba6eb858d2de63e9b69eb6f9b80c5875378\", \"width\": 320, \"height\": 410}]}}, \"id\": \"UqW37Zkr9Kf7DcwVQhkibIxh95WjNVyP_WOi2ISi83Q\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2sp5u\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ii\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FunBex21\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/NaughtyNerdGirls/comments/evf9ii/selling_21_from_the_uk_kik_me_for_some_naughty/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/BNpWeXt.png\", \"subreddit_subscribers\": 24814, \"created_utc\": 1580260205.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"howto\", \"selftext\": \"A link to the tutorial is [here](https://www.youtube.com/watch?v=dQw4w9WgXcQ).\", \"author_fullname\": \"t2_316ij86r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to rickroll people\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/howto\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ih\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1580289004.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.howto\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA link to the tutorial is \\u003Ca href=\\\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?auto=webp\\u0026s=5487d4a6ae23e3b94d586bb584923bb19d3a603c\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=998537f336fa3fcc9e0ed74476828befa9d031af\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4aa154516bb72542256166ef0befe549992fd131\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6cfc8255bc47ec2a88f706156e217f45398a9cdc\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"2mMW0FbTBSmF1RGs1Jn2FaCQasLS-MQP60joQR9D7Jk\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh69\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ih\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"UltroGmr\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/howto/comments/evf9ih/how_to_rickroll_people/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/howto/comments/evf9ih/how_to_rickroll_people/\", \"subreddit_subscribers\": 1337207, \"created_utc\": 1580260204.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"tableau\", \"selftext\": \"\", \"author_fullname\": \"t2_3hz9u1ig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Bridge to Prosperity\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/tableau\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_evf9ig\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1580289004.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"public.tableau.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2uolo\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"evf9ig\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Analyst_R\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/tableau/comments/evf9ig/bridge_to_prosperity/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://public.tableau.com/profile/shah.pankaj#!/vizhome/MOM_wk_4/MOM_wk_4\", \"subreddit_subscribers\": 26310, \"created_utc\": 1580260204.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_evf9ig\", \"before\": null}}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "470575" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Date": [ + "Wed, 29 Jan 2020 01:10:26 GMT" + ], + "Server": [ + "snooserv" + ], + "Strict-Transport-Security": [ + "max-age=15552000; includeSubDomains; preload" + ], + "Vary": [ + "accept-encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "MISS" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Moose": [ + "majestic" + ], + "X-Served-By": [ + "cache-lga21948-LGA" + ], + "X-Timer": [ + "S1580260226.549786,VS0,VE899" + ], + "access-control-allow-origin": [ + "*" + ], + "access-control-expose-headers": [ + "X-Moose" + ], + "cache-control": [ + "max-age=0, must-revalidate" + ], + "set-cookie": [ + "loid=00000000005juzybwh.2.1580260225417.Z0FBQUFBQmVNTnVDbXMyUmU1VUpmSUpSVHFPcjN4dGljWFIwTnB0NnYwSXczNjFoaVl4am5YbXhlMlYtRVZ6WGp2R2xNSHp5dmNVaWsxeUliZnlENEx3T2R6SlF4VDQ4SXJaQUJacnFiWjlaTEFaM2ZlWU45YS1lVWttaTEtZEdhWDVsZU13bGozZ0Q; Domain=reddit.com; Max-Age=63071999; Path=/; expires=Fri, 28-Jan-2022 01:10:26 GMT; secure", + "session_tracker=InJfgQndYIWkDFwGQ2.0.1580260225575.Z0FBQUFBQmVNTnVDd09HdVpXb0hQUUdqRW9SZDRTdGNCLTV0SHhzak5zWHBFVnJCNGctOXd2SWMtVlhUeWNGdEVjZG1VSDhkQ2FIVDZoekMyS283SjAxLWVLTHVPX2ZDTlYxV1g5RXZ0U1J3QUdTTHg5RDJ5TFVUY1hEdVRCRlBYZlhGZm9Kakk1MEc; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 29-Jan-2020 03:10:26 GMT; secure" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "x-ua-compatible": [ + "IE=edge" + ], + "x-xss-protection": [ + "1; mode=block" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/r/all/new?limit=100&raw_json=1" + } + } + ], + "recorded_with": "betamax/0.8.1" +} \ No newline at end of file diff --git a/tests/integration/models/reddit/test_subreddit.py b/tests/integration/models/reddit/test_subreddit.py index dc864c256..103a63246 100644 --- a/tests/integration/models/reddit/test_subreddit.py +++ b/tests/integration/models/reddit/test_subreddit.py @@ -1777,6 +1777,18 @@ def test_comments__with_skip_existing(self, _): # that there are at least 400 comments in the stream. assert count < 400 + @mock.patch("time.sleep", return_value=None) + def test_comments_all(self, _): + with self.recorder.use_cassette("TestSubredditStreams.comments_new"): + generator = self.reddit.subreddit( + "all", use_new_stream=True + ).stream.comments() + items = [generator.__next__() for i in range(400)] + for i in range(400 - 1): + cur = items[i] + next = items[i + 1] + assert (int(next.id, base=36) - int(cur.id, base=36)) <= 1 + def test_submissions(self): with self.recorder.use_cassette("TestSubredditStreams.submissions"): generator = self.reddit.subreddit("all").stream.submissions() @@ -1811,6 +1823,20 @@ def test_submissions__with_pause_and_skip_after(self, _): submission = next(generator) assert submission_count < 100 + @mock.patch("time.sleep", return_value=None) + def test_submissions_all(self, _): + with self.recorder.use_cassette( + "TestSubredditStreams.submissions_new" + ): + generator = self.reddit.subreddit( + "all", use_new_stream=True + ).stream.submissions() + items = [generator.__next__() for i in range(101)] + for i in range(101 - 1): + cur = items[i] + next = items[i + 1] + assert (int(next.id, base=36) - int(cur.id, base=36)) <= 1 + class TestSubredditModerationStreams(IntegrationTest): @property diff --git a/tests/unit/models/test_util.py b/tests/unit/models/test_util.py index 389e3aab2..a754be41c 100644 --- a/tests/unit/models/test_util.py +++ b/tests/unit/models/test_util.py @@ -1,9 +1,20 @@ """Test praw.models.util.""" -from praw.models.util import ExponentialCounter, permissions_string +from praw.models.util import BoundedSet, ExponentialCounter, permissions_string from .. import UnitTest +class TestBoundedSet(UnitTest): + def test_limit(self): + bset = BoundedSet(2) + for i in range(10): + bset.add(i) + assert 8 in bset + assert 9 in bset + assert 7 not in bset + assert 0 not in bset + + class TestExponentialCounter(UnitTest): MAX_DELTA = 1.0 / 32