From 8ed5644f818822095884c0e57e32b022e484a758 Mon Sep 17 00:00:00 2001 From: elburg Date: Fri, 3 Feb 2023 22:13:32 -0800 Subject: [PATCH] first commit for cute snep u//w//u --- exif.py | 81 + getpub.py | 7 + iptc.py | 0 main.py | 22 + matroska.py | 0 png.py | 0 tests/deviantart.image.json | 4911 ++++++++++++++++++++++++++++++++++ tests/furaffinity.image.json | 60 + xmp.py | 123 + 9 files changed, 5204 insertions(+) create mode 100644 exif.py create mode 100644 getpub.py create mode 100644 iptc.py create mode 100644 main.py create mode 100644 matroska.py create mode 100644 png.py create mode 100644 tests/deviantart.image.json create mode 100644 tests/furaffinity.image.json create mode 100644 xmp.py diff --git a/exif.py b/exif.py new file mode 100644 index 0000000..e4785a2 --- /dev/null +++ b/exif.py @@ -0,0 +1,81 @@ +import logging +logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) + +allowed_exts=[ + "tif","tiff", # TIFF + "jpeg","jpg","pjpeg","pjpg","jpe", # JPEG + "webp", # Webp +# "wav","wave", # RIFF Wave + "png","apng" # PNG (since 1.2) +] + +def backupMetadata(file): + from PIL import Image, ExifTags + + logging.debug(f"loading file {file}") + img = Image.open(file) + logging.debug("file loaded. getting exif") + img_exif = img.getexif() + + full=[] + + if img_exif is None: + logging.warning("Could not load EXIF Data... Either something happened with Pillow, the file disappeared, or you don't have access to the file. Try running verbose!") + break + else: + logging.debug("loaded tags") + for key, val in img_exif.items(): + logging.debug(f"for key:'{key}', val:'{val}' in img_exif.items()") + if key in ExifTags.TAGS: + logging.debug(f"{key} is known exif tag! ({ExifTags.TAGS[key]})") + full.append({ + 'tagName': str(key), + 'realName': str(ExifTags.TAGS[key]), + 'value': str(val) + }) + else: + logging.warning(f"{key} is an unknown exif tag!") + full.append({ + 'tagName': str(key), + 'realName': None, + 'value': str(val) + }) + + logging.info("writing backup data") + import json + + #import tempfile + #temp = tempfile.TemporaryFile(mode='w+') + #json.dump(full,temp,sort_keys=True) + with open(f"{file}.exif_backup.json.xz",'w+b') as bfile + logging.debug(f"writing to {bfile}") + import lzma + bfile.write(lzma.compress( + bytes(json.dumps(full,sort_keys=True)), + format=FORMAT_XZ, + check=CHECK_SHA256, + preset=9 + )) + logging.debug("wrote backup data") + + logging.info("backup done!") + +def writeTags(file,tags): + from PIL import Image + image=Image.open(file) + exif = image.getexif() + + if artist in tags: + if type(tag.artist) == str: + exif[0x013b] = tags.artist + elif tags.category == "deviantart": + exif[0x013b] = tags.artist.username + + if title in tags: + exif[0x0010e] = tags.title + + if description in tags: + exif[0x9286] = tags.description + + + \ No newline at end of file diff --git a/getpub.py b/getpub.py new file mode 100644 index 0000000..5d13a19 --- /dev/null +++ b/getpub.py @@ -0,0 +1,7 @@ +def getPub(input): + if fa_category in input or input.category == 'furaffinity': + return 'Furaffinity' + elif input.category == 'deviantart': + return 'DeviantArt' + else: + return 'Unknown' \ No newline at end of file diff --git a/iptc.py b/iptc.py new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..1668ade --- /dev/null +++ b/main.py @@ -0,0 +1,22 @@ +# module imports +import sys +import json +import logging + +# init logging +logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) + +# variable init +infojson={} +source=sys.argv[1] + +logging.info(f"loading info.json for {source}...") +with open(f"{source}.json") as file: + infojson=json.load(file) + +# TODO: insert method to check url or dict +logging.debug("determining file type...") +import exif +if infojson.extension in exif.allowed_exts: + logging.debug(f"exif module supports {infojson.extesnion} files. using it... ") + \ No newline at end of file diff --git a/matroska.py b/matroska.py new file mode 100644 index 0000000..e69de29 diff --git a/png.py b/png.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/deviantart.image.json b/tests/deviantart.image.json new file mode 100644 index 0000000..4f7d019 --- /dev/null +++ b/tests/deviantart.image.json @@ -0,0 +1,4911 @@ +{ + "allows_comments": true, + "author": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + }, + "can_post_comment": false, + "category": "deviantart", + "category_path": "digitalart/paintings/other", + "collection": { + "index": "86785325", + "owner": "Nrythmic", + "title": "random furry stuff", + "uuid": "7811FCAB-DF2F-80C7-17C5-1B8C634D0774" + }, + "comments": [ + { + "body": "
Hes at the top o the world. He even survived a night at Flumptys (O HO FUNNI REFERNCE AAAAAA)
", + "commentid": "5BE29F68-5875-DA1B-D3F2-27B02DBA6D1D", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2022-10-10T22:48:29-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/y/rythor888.png?10", + "userid": "9CB0CBF1-F2BF-D530-188D-691D5605A6D4", + "username": "Rythor888" + } + }, + { + "body": "
Meloetta underated imo
", + "commentid": "FE35D34A-2D27-5DDF-8790-9835C2C40A2B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2022-08-21T05:41:56-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/w/a/wallwa11wall.jpg?2", + "userid": "8BCF2E25-4FEF-D4A9-20E6-C72DA402CF09", + "username": "WallWa11Wall" + } + }, + { + "body": "
My god, 300+ comments.
Goes to show how good this art is
", + "commentid": "41BC5C4F-CB14-A68B-9B6C-FA384C744EBA", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2022-06-11T13:39:13-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "7A56951D-85E4-62AB-29EB-5AEC88741002", + "username": "IJDGuy" + } + }, + { + "body": "
Gardevoir, Tsareena and Meloetta are best ones
", + "commentid": "A0ACB692-F639-5D12-692B-B065081D1676", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2022-04-25T13:29:44-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/e/deandre712.jpg?2", + "userid": "4944DAF1-FFC3-3E92-3287-1403BAF8E5B0", + "username": "DeAndre712" + } + }, + { + "body": "
,
\"Snap-bauk-ts-reality-memes-7f6c67104ecae24e-86d1e0\"
", + "commentid": "10434165-1FD1-84F2-31EF-302D59E802CE", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 4, + "parentid": null, + "posted": "2022-02-26T13:44:09-0800", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/o/gokudrad.jpg?9", + "userid": "BD921B0E-5DE5-243C-61C4-ACF99776DE40", + "username": "gokudrad" + } + }, + { + "body": "
Lol
", + "commentid": "10B692C5-D268-BEFB-ADC9-0DC85BC6478D", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "10434165-1FD1-84F2-31EF-302D59E802CE", + "posted": "2022-12-02T07:08:51-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/f/a/fattybeauty9.jpg?6", + "userid": "2589307E-F304-5204-FCE7-17814DA9600E", + "username": "fattybeauty9" + } + }, + { + "body": "
Sadge
", + "commentid": "D44EFEB2-BC2E-6115-895F-8026913BBF83", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "10434165-1FD1-84F2-31EF-302D59E802CE", + "posted": "2022-03-11T22:16:50-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "4DBB137D-A6CC-3641-57E1-D5CDF9F7CE75", + "username": "doyounoedewhey" + } + }, + { + "body": "
I see Pokemon trainer is a man of culture
", + "commentid": "738A54C6-CE5A-9FA7-A657-3DD34334C895", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 2, + "parentid": null, + "posted": "2022-01-27T22:41:52-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/a/ragnarok1337.jpg?4", + "userid": "E724BA14-E7DF-04E8-22C8-F26E4F8DD76A", + "username": "ragnarok1337" + } + }, + { + "body": "
300th Comment: This Is Great, Also Soft
", + "commentid": "4F0225D3-CB37-A3B3-E0EA-DA39AB4B63E1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2022-01-25T12:57:39-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/u/sussybaka598.jpg", + "userid": "6CE0A754-7128-94D5-08A6-F1C4A5856A23", + "username": "Sussybaka598" + } + }, + { + "body": "
Hehe someone really into their indulgence ;3 nice Harem...I think ill do the same with my boys... B3~
", + "commentid": "EBDB6DEA-F63B-ACC3-E62E-8E49E3FF48E1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2022-01-17T21:54:26-0800", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/y/cyber-panda.gif?10", + "userid": "0C74BF07-6890-C785-79E6-63BFBCE80249", + "username": "cYbEr-PaNdA" + } + }, + { + "body": "
Do it.
", + "commentid": "D9329A83-B340-FC1F-057B-9EA3525B6261", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "EBDB6DEA-F63B-ACC3-E62E-8E49E3FF48E1", + "posted": "2023-01-11T22:52:16-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "BFDFA6A2-9395-9B79-5EA9-8C67C30E9F06", + "username": "Rjfyk" + } + }, + { + "body": "
,
\"Snap-bauk-ts-reality-memes-7f6c67104ecae24e-86d1e0\"
", + "commentid": "C84D6EBE-2130-C1EA-1A70-E1F1EC79A207", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 5, + "parentid": "EBDB6DEA-F63B-ACC3-E62E-8E49E3FF48E1", + "posted": "2022-02-26T13:44:25-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/o/gokudrad.jpg?9", + "userid": "BD921B0E-5DE5-243C-61C4-ACF99776DE40", + "username": "gokudrad" + } + }, + { + "body": "
Gonna make headcanon character bios, if that's ok.
", + "commentid": "CBB51B19-5C97-49C9-BA98-1618BF70AFE1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2021-12-01T14:13:27-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/h/chubl.jpg?2", + "userid": "932094EF-E6FE-9DD1-56D9-847C59820AF9", + "username": "chubl" + } + }, + { + "body": "
Do you take art trades or collabs or requests or ideas or something else or not?
", + "commentid": "A9787BA2-37A6-616F-6FE9-08416A8F6BFB", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2021-09-26T03:55:21-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/8/a89iksm.jpg?2", + "userid": "93BEF681-6719-EDFA-AC62-BC1319A4A658", + "username": "A89iksm" + } + }, + { + "body": "
*Visible Jealousy*
", + "commentid": "F30C7EB0-08DE-0312-22D6-83CB16E81FE6", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 2, + "parentid": null, + "posted": "2021-08-23T18:14:07-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "D0222C1C-56CC-A655-E078-8116EC1C6A82", + "username": "Username64405" + } + }, + { + "body": "
BIG SAME
", + "commentid": "97DB082C-D35A-6BC9-9CA7-7CED206B5EAF", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F30C7EB0-08DE-0312-22D6-83CB16E81FE6", + "posted": "2021-11-14T11:48:19-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/o/rock6660.jpg?10", + "userid": "FF41A7CA-308C-11DF-4ECD-DF5FAB623045", + "username": "rock6660" + } + }, + { + "body": "
this is awesome but where are lopunny and roserade
", + "commentid": "0926761E-25BC-44A2-A3E7-FB500C80DD1B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2021-05-15T09:01:46-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/i/rickytherock.jpg?10", + "userid": "B21DA132-1308-C207-06F6-40E6964E814B", + "username": "rickytherock" + } + }, + { + "body": "
these gals are huge... but still kinda cute to me X3
", + "commentid": "303B5D36-DAF9-DAB8-51E6-4391668454E4", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2021-05-07T08:19:14-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/n/e/neonmewtwo21.jpg?10", + "userid": "44DB31DF-08BF-162B-FE41-BA7AB7CE2713", + "username": "neonmewtwo21" + } + }, + { + "body": "
This is fan fiction worthy...Is it fan fiction if it's a random fetish piece?
", + "commentid": "70E403B2-6151-7DD2-2EF6-CB24E99DE44F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2021-04-20T12:07:44-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/h/chubl.jpg?2", + "userid": "932094EF-E6FE-9DD1-56D9-847C59820AF9", + "username": "chubl" + } + }, + { + "body": "
@Jeetdoh, is it a bad sign if I recognize all of these Pokemon?
", + "commentid": "0DBE7444-5077-C52C-79A1-92CF2F109F16", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2021-04-06T19:32:05-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/m/a/maidenofunderland666.jpg?10", + "userid": "77CDAB5E-8FC1-4A95-BC87-622E6A53EF76", + "username": "MaidenofUnderland666" + } + }, + { + "body": "
It's beautiful.... I've looked at this for 5 hours now.
", + "commentid": "4A014F8D-4B41-9E4E-4E8D-BB4BEA3A3800", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2021-02-24T14:12:13-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/l/bla5t3r.jpg?4", + "userid": "3EC06CF0-FE39-ADC6-A7DC-3D2A9303D8A2", + "username": "BLA5T3R" + } + }, + { + "body": "
Where is Lopunny lol
and i would love to see their boobs and belly buttons
", + "commentid": "78AF451B-6A1E-ACC9-2835-1D78EA5AB66B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2021-01-11T01:15:17-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/a/sabaoi.jpg", + "userid": "BA7DF569-30A4-48C0-2683-0451710A2884", + "username": "SabaOi" + } + }, + { + "body": "
Die
", + "commentid": "C15495D0-F65C-FD87-4983-A98130CE7FD7", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2020-12-30T08:02:13-0800", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/i/l/ilovevideos99.jpg?12", + "userid": "E3DA5AFC-1459-A350-29DE-BCD3036A8F6F", + "username": "ilovevideos99" + } + }, + { + "body": "", + "commentid": "945B94A0-9078-7772-BFB6-06B0E72FE6AE", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "C15495D0-F65C-FD87-4983-A98130CE7FD7", + "posted": "2022-01-25T12:58:59-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/u/sussybaka598.jpg", + "userid": "6CE0A754-7128-94D5-08A6-F1C4A5856A23", + "username": "Sussybaka598" + } + }, + { + "body": "
Understandable.
", + "commentid": "62B210F5-D8B3-649F-B586-F5982DD7BF52", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "C15495D0-F65C-FD87-4983-A98130CE7FD7", + "posted": "2021-09-03T03:54:01-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/m/e/mewmath737212.png?13", + "userid": "8CB5BB76-FFBC-AF64-1077-6FB2FD2DCDDE", + "username": "mewmath737212" + } + }, + { + "body": "
that guy must be happy
", + "commentid": "3F82C992-BF32-9659-5A83-6E19B667AF90", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 3, + "parentid": null, + "posted": "2020-11-26T19:30:03-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/f/a/fattylover14.jpg?6", + "userid": "07BA6848-781C-6EAF-FA89-94A7A037A967", + "username": "FattyLover14" + } + }, + { + "body": "
Beating the Pokemon league must be way easier now.
", + "commentid": "3A796B25-9166-9863-7F61-3E0F84EDED4C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2020-10-31T22:53:03-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/i/sircleartentacels.jpg?12", + "userid": "882E1D37-A6E4-1864-C0F1-79599FE5BF04", + "username": "SirClearTentacels" + } + }, + { + "body": "
Agreed
", + "commentid": "6EDF2F30-4E85-7760-AD6D-961D517158E8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "3A796B25-9166-9863-7F61-3E0F84EDED4C", + "posted": "2020-12-04T09:39:04-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/e/realdocter012.jpg?2", + "userid": "95FAC784-89D7-66A2-7B59-1D84A3F94B97", + "username": "RealDocter012" + } + }, + { + "body": "
Dang Gardevoir looks so beautiful
", + "commentid": "BBC2B5AB-4AEE-B2CE-C1DA-D13F59EA9B7A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2020-08-27T16:12:28-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/a/baccazard2020.png?2", + "userid": "BF918C1F-25FD-E078-6C18-90482A395F2F", + "username": "Baccazard2020" + } + }, + { + "body": "
Does anyone wanna roleplay this with me?
", + "commentid": "8D86F115-C7F0-AEC7-FD0A-3D4735CCB89F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-08-25T23:54:11-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/a/baccazard2020.png?2", + "userid": "BF918C1F-25FD-E078-6C18-90482A395F2F", + "username": "Baccazard2020" + } + }, + { + "body": "
I do , but in chat.
", + "commentid": "E765A49C-0A56-DFC6-2DF2-F1D88F201958", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "8D86F115-C7F0-AEC7-FD0A-3D4735CCB89F", + "posted": "2022-03-20T17:13:25-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/h/thatclevermoth.jpg", + "userid": "38C7CCBB-0084-6778-E6FD-39F24990E027", + "username": "ThatCleverMoth" + } + }, + { + "body": "
i just realized that guy is you
", + "commentid": "33CAC2E3-5C8D-022F-EABA-D51FFCFF4735", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-08-06T02:12:08-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "564F3C25-0D2D-1630-2379-34A8C23BD4EC", + "username": "assssassss" + } + }, + { + "body": "
Is that lucky son of a bitch brendon
", + "commentid": "E41377ED-F3AB-BEB6-7F50-4BDF189517BF", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-08-04T12:23:23-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/o/loksop123.jpg?2", + "userid": "7F43C6AD-52CE-004D-68B0-C025B1B09A6B", + "username": "Loksop123" + } + }, + { + "body": "
Can someone tell me the pokemons i don't know them
", + "commentid": "C17BD7C3-5D85-0938-4C40-87E855842C36", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-06-29T00:17:39-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/o/loksop123.jpg?2", + "userid": "7F43C6AD-52CE-004D-68B0-C025B1B09A6B", + "username": "Loksop123" + } + }, + { + "body": "
From top row to bottom;
there's meloetta, florges,
lurantis,
tsareena, lilligant, and gardevoir.
", + "commentid": "ECAA8074-6D79-FC61-33CD-A3234F55F6E1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "C17BD7C3-5D85-0938-4C40-87E855842C36", + "posted": "2020-07-08T23:21:58-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/u/sumolopunny36.jpg?2", + "userid": "79FC6BED-89BA-857C-EADE-B8E2E9E0E0A2", + "username": "sumolopunny36" + } + }, + { + "body": "Nice harem my dude!", + "commentid": "CF244896-0D0B-D7E6-13EB-94AD9EB5D24F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-04-30T08:03:17-0700", + "replies": 0, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/d/i/dilldrawsstuff.png?7", + "userid": "3C77852A-46B8-D75A-0A3C-2B81AB2CDA3B", + "username": "DillDrawsStuff" + } + }, + { + "body": "
and thats why gyms are illegal now
", + "commentid": "7436274C-ED08-315C-579C-9909DEFB2A5D", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 2, + "parentid": null, + "posted": "2020-04-10T11:53:45-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/a/ratrunner48.png?2", + "userid": "1CE53892-47CF-7ED1-C66E-A81C30DFFDA2", + "username": "RatRunner48" + } + }, + { + "body": "
Zero exercise, 100 fat
", + "commentid": "0D5C2537-A2A0-1009-9235-5E5C3A24FB74", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 2, + "parentid": null, + "posted": "2020-03-07T00:04:06-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/n/snipergames15.jpg?9", + "userid": "A65F33A6-E5A5-6DA3-AE13-BAECA3EB32F8", + "username": "SniperGames15" + } + }, + { + "body": "
Damn the trainer must be a lucky guy to have that many large Pokemon girls
", + "commentid": "E0A20690-386C-8825-DD16-89D459C0CE54", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 4, + "parentid": null, + "posted": "2020-03-06T20:20:40-0800", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/r/crossz-grimlock.png?2", + "userid": "EAF6FDBB-3500-82E1-E15F-5286E44ABCBE", + "username": "Crossz-Grimlock" + } + }, + { + "body": "
(Tis but an oof)
", + "commentid": "764A6610-DEDC-7F54-6C5E-0EC5B6136B45", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "E0A20690-386C-8825-DD16-89D459C0CE54", + "posted": "2020-08-01T01:17:37-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "BB5871AD-C7D4-FA11-6A5B-98797B359A8C", + "username": "Comar2601404" + } + }, + { + "body": "(Pardon?)", + "commentid": "5BF18588-C62D-5681-5919-E7B705597569", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "764A6610-DEDC-7F54-6C5E-0EC5B6136B45", + "posted": "2020-08-01T09:10:55-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/r/crossz-grimlock.png?2", + "userid": "EAF6FDBB-3500-82E1-E15F-5286E44ABCBE", + "username": "Crossz-Grimlock" + } + }, + { + "body": "
(Just a meme, but anyways, im here)
", + "commentid": "AB23415B-AA20-59AC-3076-16C9C9DA0178", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "5BF18588-C62D-5681-5919-E7B705597569", + "posted": "2020-08-01T13:15:00-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "BB5871AD-C7D4-FA11-6A5B-98797B359A8C", + "username": "Comar2601404" + } + }, + { + "body": "(Alright then here’s the script)

(Kyle is a young boy who is both a chubby chaser and a Pokémon trainer the Pokémon in the pic are his fat Pokémon harem and they love having him feed them and play with their fat bodies)", + "commentid": "60EF40BF-3E34-5688-441E-020A2C9FC80B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "AB23415B-AA20-59AC-3076-16C9C9DA0178", + "posted": "2020-08-01T13:17:04-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/r/crossz-grimlock.png?2", + "userid": "EAF6FDBB-3500-82E1-E15F-5286E44ABCBE", + "username": "Crossz-Grimlock" + } + }, + { + "body": "
(K, lets start)
", + "commentid": "D630CC7E-1DD1-7132-2920-3A70D30B236F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "60EF40BF-3E34-5688-441E-020A2C9FC80B", + "posted": "2020-08-01T18:12:01-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "BB5871AD-C7D4-FA11-6A5B-98797B359A8C", + "username": "Comar2601404" + } + }, + { + "body": "
no
", + "commentid": "541F0DEB-618C-25B1-123A-A2DBBF9F51F8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "E0A20690-386C-8825-DD16-89D459C0CE54", + "posted": "2020-04-10T11:53:32-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/a/ratrunner48.png?2", + "userid": "1CE53892-47CF-7ED1-C66E-A81C30DFFDA2", + "username": "RatRunner48" + } + }, + { + "body": "
What do you mean no
", + "commentid": "71C19932-4373-05AB-BC5B-EFF36A079EE1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "541F0DEB-618C-25B1-123A-A2DBBF9F51F8", + "posted": "2020-04-10T12:06:16-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/r/crossz-grimlock.png?2", + "userid": "EAF6FDBB-3500-82E1-E15F-5286E44ABCBE", + "username": "Crossz-Grimlock" + } + }, + { + "body": "
A gardefender will gather all of those
", + "commentid": "89A8A214-9E9F-33E1-2D25-C2CD2B509073", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "71C19932-4373-05AB-BC5B-EFF36A079EE1", + "posted": "2020-04-11T18:00:39-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/a/ratrunner48.png?2", + "userid": "1CE53892-47CF-7ED1-C66E-A81C30DFFDA2", + "username": "RatRunner48" + } + }, + { + "body": "
Oh
", + "commentid": "08103767-BB56-C486-EE57-25B0A780E63B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "89A8A214-9E9F-33E1-2D25-C2CD2B509073", + "posted": "2020-04-11T18:02:18-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/r/crossz-grimlock.png?2", + "userid": "EAF6FDBB-3500-82E1-E15F-5286E44ABCBE", + "username": "Crossz-Grimlock" + } + }, + { + "body": "
yee, those rounded sweeties will have a better life
", + "commentid": "1C5F3499-899B-A7A5-84FE-A65F9241F1C8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "08103767-BB56-C486-EE57-25B0A780E63B", + "posted": "2020-04-11T18:41:32-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/a/ratrunner48.png?2", + "userid": "1CE53892-47CF-7ED1-C66E-A81C30DFFDA2", + "username": "RatRunner48" + } + }, + { + "body": "It needs more magenta.", + "commentid": "A29B6B5C-9B3C-1CBD-8F14-BF254685245E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-02-22T22:31:46-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/f/l/flemen-the-pemen-2.jpg?6", + "userid": "FD2EF9B9-F526-B20D-7E58-FDBA7B8A019B", + "username": "Flemen-The-Pemen-2" + } + }, + { + "body": "
Pls, create a sequel
", + "commentid": "EF5BFA00-EC35-1984-BEC3-44FD2543066F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-02-18T17:24:49-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/n/anonymuoslayers.jpg?4", + "userid": "B805E28B-D3AB-4731-E9D0-4F863BB8F47D", + "username": "AnonymuoSlayers" + } + }, + { + "body": "
Hopefully you become the best trainer
", + "commentid": "948EAE6E-682C-AE07-5217-87B7F30051C9", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2020-01-26T18:30:05-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/f/a/fatanime369.jpg?2", + "userid": "498588E5-0488-9E50-E891-13584904903A", + "username": "fatanime369" + } + }, + { + "body": "you're just straight up vibin', my dude.", + "commentid": "99A8F51B-D3E9-87DE-FB3B-2106B332694B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2020-01-17T04:12:51-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/m/a/maxtheg.png?6", + "userid": "21902BAA-D002-FD5B-E2A7-39EF1AB5B3A0", + "username": "MaxtheG" + } + }, + { + "body": "dats a lot-a chonks :3", + "commentid": "CF232119-1AF2-F9F6-BC9E-0DFCF8E5048F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2019-12-17T17:40:26-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/m/smolfishyboi.png?6", + "userid": "B66E3333-7E40-49AA-3D64-4E3E6569BD57", + "username": "SmolFishyBoi" + } + }, + { + "body": "This is what hapeens in a speedrun, you run and they dont", + "commentid": "2A71FF2F-C9C3-D456-F45D-9F42BAAF31F8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2019-11-24T01:44:56-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/i/m/im-nut-weird.gif?9", + "userid": "83A9F898-DEA6-88DB-B3FD-0D6AD95199DE", + "username": "im-nut-weird" + } + }, + { + "body": "
I wish I could be spoiled like those pokemon~!
", + "commentid": "738C1839-E543-D418-DC0B-BAC939E40766", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-09-13T16:14:34-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/e/dewthevaporeon.png?2", + "userid": "304810DD-A59C-DFA7-82F3-AE882E62547F", + "username": "dewthevaporeon" + } + }, + { + "body": "Infinite Extra Fries", + "commentid": "D5D0CB99-E94A-AB88-24C6-7C2EA5EA9D4C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-09-08T00:29:43-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/h/o/horneyforchubbygirls.gif?3", + "userid": "E2F422CD-C57F-8243-26D6-B613C5C5FEDC", + "username": "HorneyForChubbyGirls" + } + }, + { + "body": "
Replace florges with braixen and you have the BEST fat Pokémon team
", + "commentid": "017D0B29-79B7-FFC3-B907-54C7C47F7ACA", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-08-23T17:33:51-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/e/g/eggmanland.jpg?2", + "userid": "B39F5514-F5B0-BA3F-B13D-50833C1CBA80", + "username": "Eggmanland" + } + }, + { + "body": "
Here’s what Chad Virginson thought; “YAAAASSSSS. Fat Gardevoir is so adorable!!! She is my number one dream waifu!!!”
", + "commentid": "6B167AA4-190D-8CA5-3812-20D3AAEBF491", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "017D0B29-79B7-FFC3-B907-54C7C47F7ACA", + "posted": "2019-08-27T21:56:50-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/w/e/weekapaugal.png?2", + "userid": "44A90BB2-C8EE-7870-8689-53D89EB71708", + "username": "WeekapaugAl" + } + }, + { + "body": "
Make a skinny version,but with you laying on a bean bag. Don't get me wrong,this is hot but,I wanna see what it'd look like
", + "commentid": "CD1A731B-6E21-A1BC-AC4F-3BA37CC069C0", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-08-16T22:17:26-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/g/lgbt2727.jpg?8", + "userid": "385B4B5F-80AC-52B2-9BCA-4B091AC6DD0C", + "username": "lgbt2727" + } + }, + { + "body": "
Why not replace trainer with zoidberg?
", + "commentid": "B562B157-12A3-EE8D-B16C-1444899E44D5", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "CD1A731B-6E21-A1BC-AC4F-3BA37CC069C0", + "posted": "2019-09-21T21:06:57-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/w/e/weekapaugal.png?2", + "userid": "44A90BB2-C8EE-7870-8689-53D89EB71708", + "username": "WeekapaugAl" + } + }, + { + "body": "Need a new insert? Why not Zoidberg?", + "commentid": "7882E5E9-EBED-A657-8955-E6733DE8CD34", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "B562B157-12A3-EE8D-B16C-1444899E44D5", + "posted": "2019-12-28T15:06:34-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/i/d/idlemanrpg.jpg?10", + "userid": "C89A1054-25FE-D4A9-45DA-B0432333537D", + "username": "IdleManRPG" + } + }, + { + "body": "pls make a sequel", + "commentid": "397181BB-31F9-3932-CD97-873AF21D689A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2019-08-10T16:14:01-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/i/pigment43.jpg?7", + "userid": "3FBF0F20-976D-CF72-3DD5-9666EFA5C24C", + "username": "pigment43" + } + }, + { + "body": "How ironic", + "commentid": "933C2E8F-B8D0-BD7B-17FF-B07BD249BF2B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-08-02T22:26:08-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/h/shaggyiszoinked.gif?7", + "userid": "0C20EA53-CD38-59A5-B7EF-B399D8851F8D", + "username": "Shaggyiszoinked" + } + }, + { + "body": "swap lurantis for lopunny and you have my real alola team", + "commentid": "AE10358C-CE5D-4692-83E0-927621A45E83", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-07-08T14:38:44-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/u/guywholooksatstuff.jpg?2", + "userid": "65B8B0AB-4D34-F2FD-6724-3A42F3E24D6F", + "username": "guywholooksatstuff" + } + }, + { + "body": "and swap meloetta for a primarina", + "commentid": "1EFEED54-C343-D104-6B98-968745A02E03", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "AE10358C-CE5D-4692-83E0-927621A45E83", + "posted": "2019-07-17T11:42:17-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/u/guywholooksatstuff.jpg?2", + "userid": "65B8B0AB-4D34-F2FD-6724-3A42F3E24D6F", + "username": "guywholooksatstuff" + } + }, + { + "body": "Soft lurantis", + "commentid": "5120723B-3100-AE38-4B2C-5561DE8C2136", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-06-21T20:55:22-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/u/supposedlyweirdguy.jpg?6", + "userid": "750E22BF-A5B4-970C-0A05-CF9BBA0A07A3", + "username": "SupposedlyWeirdGuy" + } + }, + { + "body": "Liligant is so fuging cute", + "commentid": "A812AC67-322C-1232-D7B7-42A93E5BABB2", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2019-06-21T20:28:10-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/u/supposedlyweirdguy.jpg?6", + "userid": "750E22BF-A5B4-970C-0A05-CF9BBA0A07A3", + "username": "SupposedlyWeirdGuy" + } + }, + { + "body": "I hope there will be more pics of your B.B.P.Ls", + "commentid": "7F4926CB-5106-AA3C-1DC5-F29A3EEFFCB4", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-04-13T11:30:33-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/n/anti-worlder0317.gif?2", + "userid": "493CE531-23D2-5638-22D2-B75CB46DCB97", + "username": "anti-worlder0317" + } + }, + { + "body": "Pokemon! Gotta fap em' all!", + "commentid": "96A27938-F48A-D03C-3E21-42C90E544A65", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-04-09T23:51:34-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/e/l/eliannilator.gif?7", + "userid": "C5B65336-0DE7-997E-08C4-E78E5C2CCD22", + "username": "Eliannilator" + } + }, + { + "body": "My favorite is the Tsareena", + "commentid": "F64E2876-D265-1407-FA39-9CA061328F5A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2019-01-08T12:45:12-0800", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/e/personwhomisaperson.jpg?6", + "userid": "131DC1F4-6340-3EE6-B6D2-FFBA36E5CD68", + "username": "PersonWhomIsAPerson" + } + }, + { + "body": "Oh my god Meloetta is holding McDonald's", + "commentid": "F9E38BA8-B9E4-1766-832D-5CA3C7AF611D", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F64E2876-D265-1407-FA39-9CA061328F5A", + "posted": "2019-01-08T13:18:41-0800", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/e/personwhomisaperson.jpg?6", + "userid": "131DC1F4-6340-3EE6-B6D2-FFBA36E5CD68", + "username": "PersonWhomIsAPerson" + } + }, + { + "body": "
thats my wife :/
", + "commentid": "92869944-0F7F-75BC-375D-48449B67D0F3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F9E38BA8-B9E4-1766-832D-5CA3C7AF611D", + "posted": "2020-06-22T08:13:20-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/i/m/im-nut-weird.gif?9", + "userid": "83A9F898-DEA6-88DB-B3FD-0D6AD95199DE", + "username": "im-nut-weird" + } + }, + { + "body": "Aww~ That's so cute~ That perfectly symbolizes my dream female pokemon team too~! \":love:\"", + "commentid": "37374993-9DE7-000C-A868-E6855E520511", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2018-09-22T07:28:38-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/o/tolkardragon18.jpg?2", + "userid": "A85A4407-921E-A348-4A8B-D5FAB47BC1DE", + "username": "TolkarDragon18" + } + }, + { + "body": "Dude, what have you been feeding them?", + "commentid": "BAD4ECCF-7228-9F50-A743-D4BA7902BF26", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-09-15T20:22:09-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/a/sacredterrador.jpg?9", + "userid": "F487369E-47EC-98DC-08B9-133C265B4E20", + "username": "SacredTerrador" + } + }, + { + "body": "Not even God knows what...", + "commentid": "078F0011-67EF-80F4-B462-A2AFBCDA5375", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "BAD4ECCF-7228-9F50-A743-D4BA7902BF26", + "posted": "2019-05-05T22:16:27-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/h/phoenix3445.jpg?7", + "userid": "BF60C1B4-C162-E1FC-8463-EA6808BE97DF", + "username": "phoenix3445" + } + }, + { + "body": "Geez, I gotta figure out where to order that stuff in Kalos. ", + "commentid": "2EC5B84D-0E53-D999-03B7-3F8ED13A622C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "078F0011-67EF-80F4-B462-A2AFBCDA5375", + "posted": "2019-05-06T07:36:55-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/a/sacredterrador.jpg?9", + "userid": "F487369E-47EC-98DC-08B9-133C265B4E20", + "username": "SacredTerrador" + } + }, + { + "body": "A harem of Big Beautiful Poke-Waifus? I'm sold.", + "commentid": "58A7F582-C19F-7EB1-E111-678892BFBD5D", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-09-11T03:34:43-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/o/gokuandsonic707.jpg?4", + "userid": "52741DE0-2DA0-1F4E-4880-2E3742DE8CBD", + "username": "GokuandSonic707" + } + }, + { + "body": "the only one im liking is gardavoir because shes actually human looking lol", + "commentid": "95A867AD-2183-85BA-6BCB-F671584B3511", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2018-09-02T13:42:06-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/i/giggity105.png?13", + "userid": "C23DC600-5CED-F0ED-143D-09098A98EC0D", + "username": "Giggity105" + } + }, + { + "body": "With my own response to this, I must say, I can see a good amount of effort put into it.
Shades of natural green and round curves seem to go together really well. Overall, this is a good art.

Would've been more harsher, but this piece just doesn't deserve such nasty speech. After all, it's only lightweight stuff... quite ironic for an image depicting this squishy hexad of girls.

Basically, 10/10, even if some bias slipped through with that rating.", + "commentid": "69500C4D-FF62-EAC4-A85D-96DB74409A5F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-08-26T13:15:09-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/o/dolsejetsent.png", + "userid": "F40C4098-2AEA-CED2-1C5A-05B423B1F64A", + "username": "Dolsejetsent" + } + }, + { + "body": "Is this beastiality?...", + "commentid": "710A295D-C238-F552-9A5F-EBB31CDA49C3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-08-21T10:04:34-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/i/a/iamasupersaiyan4.jpg?4", + "userid": "D0229BC8-0700-ED04-3DF4-5A6C1D41EEE2", + "username": "Iamasupersaiyan4" + } + }, + { + "body": "It's a less wrong level of such, maybe not even so given these girls display sentience in the art they're in.

So basically, really light gray area.", + "commentid": "A69E03C9-C5FD-7696-0F9A-F30A93EDACDB", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "710A295D-C238-F552-9A5F-EBB31CDA49C3", + "posted": "2018-08-25T21:01:19-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/o/dolsejetsent.png", + "userid": "F40C4098-2AEA-CED2-1C5A-05B423B1F64A", + "username": "Dolsejetsent" + } + }, + { + "body": "Maybe just white, even.", + "commentid": "CC8E66E2-742E-8EE1-A037-3A6973A5F62C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "A69E03C9-C5FD-7696-0F9A-F30A93EDACDB", + "posted": "2018-08-25T21:03:37-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/o/dolsejetsent.png", + "userid": "F40C4098-2AEA-CED2-1C5A-05B423B1F64A", + "username": "Dolsejetsent" + } + }, + { + "body": "So these are your ladies? Mines are Gardevoir, Lopunny, Lilligant, Gothitelle, Gourgeist, Primarina & Guzzlord.", + "commentid": "67C9A833-082D-62F8-5A8B-FEC4C11F1A1E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-08-06T11:23:20-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/a/rayman901.jpg?11", + "userid": "4FA6DA18-6019-EB59-1471-4AFEC602E648", + "username": "Rayman901" + } + }, + { + "body": "I mean according to diamond and pearl, humans and pokemon used to be one and the same and ised to matry and stuff so this isnt that off putting.", + "commentid": "809A8E4E-98C6-EF43-7627-7F34B9B718B4", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-08-05T08:57:30-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/l/bluecanary2013.jpg?5", + "userid": "2F57D821-EA2D-49D8-EF41-9D70AEACF42A", + "username": "BlueCanary2013" + } + }, + { + "body": "the fuck", + "commentid": "291ED966-B05F-915D-C8B3-7576A82DCB19", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-03-10T21:56:23-0800", + "replies": 2, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/a/savanna-t.gif?4", + "userid": "A2E2E48A-B673-77BB-8551-DC4CAA456C9C", + "username": "Savanna-T" + } + }, + { + "body": "Florges steals the show.", + "commentid": "D4CE1D88-4191-9216-6A53-86F2733CD068", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "291ED966-B05F-915D-C8B3-7576A82DCB19", + "posted": "2018-06-10T19:59:06-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/e/benjamilk.jpg?15", + "userid": "55D03D23-BBCA-CD86-C3C3-F4E532483798", + "username": "Benjamilk" + } + }, + { + "body": "Welcome to the internet", + "commentid": "3F33D920-2810-2008-7182-1801E91D8D01", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "291ED966-B05F-915D-C8B3-7576A82DCB19", + "posted": "2018-05-28T02:54:02-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/n/o/nonname123.jpg?6", + "userid": "0EE7EA7E-65B7-33CA-CA05-8518DA66A216", + "username": "nonname123" + } + }, + { + "body": "What a great welcome that was", + "commentid": "57A567FA-02A5-DE95-1B28-CC4BD89F7CF7", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "3F33D920-2810-2008-7182-1801E91D8D01", + "posted": "2018-05-28T14:51:57-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/a/savanna-t.gif?4", + "userid": "A2E2E48A-B673-77BB-8551-DC4CAA456C9C", + "username": "Savanna-T" + } + }, + { + "body": "I wonder how your life in the internet is going now", + "commentid": "3CBDF04E-BDDC-B939-0605-62C1739E8288", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "57A567FA-02A5-DE95-1B28-CC4BD89F7CF7", + "posted": "2019-05-05T22:17:28-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/h/phoenix3445.jpg?7", + "userid": "BF60C1B4-C162-E1FC-8463-EA6808BE97DF", + "username": "phoenix3445" + } + }, + { + "body": "idk- you tell me", + "commentid": "F84049CA-084E-D3C0-12F2-884E33E54FCF", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "3CBDF04E-BDDC-B939-0605-62C1739E8288", + "posted": "2019-05-06T01:26:05-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/a/savanna-t.gif?4", + "userid": "A2E2E48A-B673-77BB-8551-DC4CAA456C9C", + "username": "Savanna-T" + } + }, + { + "body": "Working on one myself.", + "commentid": "E15BC87B-7F50-44AD-B9B8-7785D1FE8171", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-01-30T17:06:31-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/y/cyberkirby19.jpg", + "userid": "28CEB2AC-DD42-2611-BFF3-EBB21C240ACD", + "username": "CyberKirby19" + } + }, + { + "body": "Great, I love it!!!!!!", + "commentid": "6F49404C-2D8F-8F4F-DEC5-FBF4B146D4E4", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-01-25T10:36:10-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/e/devianmtuser.jpg?8", + "userid": "4E15CCAC-56C8-6E86-3796-1800B89287C5", + "username": "DevianmtUser" + } + }, + { + "body": "well fuck i dont i can beat this gym there heath is so god damn big even with toxic and reivie spaming to", + "commentid": "DCE8AF23-9A9E-92AA-DADF-4BE0BF1A3C39", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2018-01-01T01:22:05-0800", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/i/biganimegirlbelly.jpg?6", + "userid": "C2939D81-FA2B-8EA9-4BED-0F4D46281296", + "username": "Biganimegirlbelly" + } + }, + { + "body": "Don't worry, if there's a will, there's a way and I have a way.", + "commentid": "F5CC794F-E422-1D7D-4EA9-BDAE4B1B938B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "DCE8AF23-9A9E-92AA-DADF-4BE0BF1A3C39", + "posted": "2018-03-13T13:52:05-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/e/x/explodingdrillhands.png?11", + "userid": "644ED84A-F93C-AECE-726E-3234FEC06ACF", + "username": "ExplodingDrillHands" + } + }, + { + "body": "wut have u been feeding your pokemon?! damn too much poke puffs gardivore is still cute though \":D \"Heart\" ", + "commentid": "472E0339-F225-00CD-6AB2-CAD32CF1AB6A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-12-31T15:26:24-0800", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/i/giggity105.png?13", + "userid": "C23DC600-5CED-F0ED-143D-09098A98EC0D", + "username": "Giggity105" + } + }, + { + "body": "I feed em with love. \"Heart\" ", + "commentid": "A44FBE42-75E9-A719-9C04-B0A392EE4347", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "472E0339-F225-00CD-6AB2-CAD32CF1AB6A", + "posted": "2018-01-01T01:44:45-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "There Defense must be through the roof.", + "commentid": "666F409F-2A3E-A0A1-E7C3-8A42A3170F6F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-12-25T00:03:00-0800", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/k/i/kingdedede238.png?4", + "userid": "7081C3B9-584B-4E5D-BBC7-D82441B5C885", + "username": "Kingdedede238" + } + }, + { + "body": "And since they all love to eat, their HP's also amazing!", + "commentid": "254C35CD-45F8-B01F-B549-9A52815E61BA", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "666F409F-2A3E-A0A1-E7C3-8A42A3170F6F", + "posted": "2018-11-21T09:37:54-0800", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/u/burningblaster.png?1", + "userid": "1AFDE169-1442-F7F4-9BE5-B332A64E7117", + "username": "Burningblaster" + } + }, + { + "body": "Gonna give Snorlax a run for it’s money. ", + "commentid": "C6D818B9-5866-9C27-FFD1-AAC628E7D6C5", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "254C35CD-45F8-B01F-B549-9A52815E61BA", + "posted": "2019-06-01T05:13:41-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/a/sacredterrador.jpg?9", + "userid": "F487369E-47EC-98DC-08B9-133C265B4E20", + "username": "SacredTerrador" + } + }, + { + "body": "Yep!", + "commentid": "73DEA753-E571-6A61-CF0D-34B094AE1FCB", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "C6D818B9-5866-9C27-FFD1-AAC628E7D6C5", + "posted": "2019-06-01T06:18:38-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/u/burningblaster.png?1", + "userid": "1AFDE169-1442-F7F4-9BE5-B332A64E7117", + "username": "Burningblaster" + } + }, + { + "body": "God I wish that were me.", + "commentid": "97F5F0A2-E87F-E053-FCDA-31B12E5B6AC7", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2017-12-17T14:03:43-0800", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/d/a/datrueself.gif?5", + "userid": "2CC88480-1F90-80F2-D365-5AA0C367D8C4", + "username": "DaTrueSelf" + } + }, + { + "body": "0////0", + "commentid": "5988D48F-8FEE-F606-7769-94EFBF7021F3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "97F5F0A2-E87F-E053-FCDA-31B12E5B6AC7", + "posted": "2017-12-23T09:21:32-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/i/r/iron-ninja327.jpg?15", + "userid": "333FBA68-C7C8-3805-42AE-D662AE53C428", + "username": "iron-ninja327" + } + }, + { + "body": "THE FUCKING LILLIGANT 
IT'S A MARSERHMELLOW ", + "commentid": "08E201A6-01E0-0333-9ECA-0835742732A9", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-11-13T00:40:26-0800", + "replies": 2, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/l/e/lesbiancunt.gif?3", + "userid": "E4A357E7-5335-D54F-BC89-EFA5A93196E0", + "username": "LesbianCunt" + } + }, + { + "body": "AAAAAAAAAAA", + "commentid": "9F3692B8-4849-E053-8A7A-61699B30BCF1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "08E201A6-01E0-0333-9ECA-0835742732A9", + "posted": "2019-05-17T05:51:17-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/h/phoenix3445.jpg?7", + "userid": "BF60C1B4-C162-E1FC-8463-EA6808BE97DF", + "username": "phoenix3445" + } + }, + { + "body": "AAAAAAAAAAAAA", + "commentid": "2BEA4D5A-B98D-5B64-9DD5-A7E4A009A2A8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "9F3692B8-4849-E053-8A7A-61699B30BCF1", + "posted": "2019-05-17T05:59:31-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/l/e/lesbiancunt.gif?3", + "userid": "E4A357E7-5335-D54F-BC89-EFA5A93196E0", + "username": "LesbianCunt" + } + }, + { + "body": "AAAAAAAAAAAAAAAAAAAAAAA", + "commentid": "81352142-4DF3-593E-AF0B-FF7ADF3A1A7E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "2BEA4D5A-B98D-5B64-9DD5-A7E4A009A2A8", + "posted": "2019-07-31T13:21:22-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/u/guywholooksatstuff.jpg?2", + "userid": "65B8B0AB-4D34-F2FD-6724-3A42F3E24D6F", + "username": "guywholooksatstuff" + } + }, + { + "body": "HOLY SHIT
YOU'RE RIGHT!", + "commentid": "F993C22F-3B71-3A6A-3915-CB7ADB6BD3D3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "08E201A6-01E0-0333-9ECA-0835742732A9", + "posted": "2018-05-27T01:39:18-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/w/h/whokno.png?10", + "userid": "B1DE6215-8B99-E1F9-5101-8227CCBBB2F2", + "username": "WhoKno" + } + }, + { + "body": "i'm surprised you made a fat Lilligant XD", + "commentid": "C4BC97AF-D9E0-B4ED-D059-B43A95B03847", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-11-12T04:44:27-0800", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/r/profxchasepines.jpg?5", + "userid": "8D966D96-1D16-4452-9A20-F3C5199A1F54", + "username": "ProfXChasePines" + } + }, + { + "body": "Don't wat to be rude but I'm really confused. Is this some kind of fetish?", + "commentid": "BE53BD63-CC43-F577-397B-6C4B07C4CCDF", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-11-01T08:34:07-0700", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/n/z/nzo-l.jpg?8", + "userid": "413C025C-FDDA-8DFE-F4A0-2C897BDA130C", + "username": "NZO-L" + } + }, + { + "body": "The internet is lovely, isn't it?", + "commentid": "9FFBA1DD-B1F6-C40B-8174-69F84D6B6584", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "BE53BD63-CC43-F577-397B-6C4B07C4CCDF", + "posted": "2019-05-18T00:30:11-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/h/phoenix3445.jpg?7", + "userid": "BF60C1B4-C162-E1FC-8463-EA6808BE97DF", + "username": "phoenix3445" + } + }, + { + "body": "yup", + "commentid": "CE4A9DC1-6BDF-EBD4-C892-01F7B951656C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "BE53BD63-CC43-F577-397B-6C4B07C4CCDF", + "posted": "2017-11-01T12:20:43-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "B22151F4-BDE9-32DC-2A73-D63FF028BADF", + "username": "beaversonbutthead" + } + }, + { + "body": "weell i guess this is his haraem", + "commentid": "F57FEFC1-9C13-EEF3-BE7C-174BB13C4B22", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-10-31T22:00:10-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/b/i/biganimegirlbelly.jpg?6", + "userid": "C2939D81-FA2B-8EA9-4BED-0F4D46281296", + "username": "Biganimegirlbelly" + } + }, + { + "body": "Cool", + "commentid": "2BFA9319-D7B9-F434-7B7F-6CDE7F6AF1D8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-10-29T16:51:43-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/h/thesirenlord.png?11", + "userid": "A6138A2A-1D69-9B8B-8B7B-AC5278FC6639", + "username": "TheSirenLord" + } + }, + { + "body": "Much squishy! :0 

Liligant tho! QwQ So cute!", + "commentid": "9FC28E1C-5466-7B2A-1B7F-9058B84ABAC3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-08-04T20:39:20-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/m/smolfishyboi.png?6", + "userid": "B66E3333-7E40-49AA-3D64-4E3E6569BD57", + "username": "SmolFishyBoi" + } + }, + { + "body": "That team has a huge poison weakness, Alolan Muk would destroy them all.", + "commentid": "F1753317-C2DB-77EE-6A2D-97DF473D0EA1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-07-09T19:45:09-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/c/scottrocks20.jpg?15", + "userid": "65FADFA2-A04E-3CC3-2A8E-E08DA2B0AB38", + "username": "ScottRocks20" + } + }, + { + "body": "I'm pretty sure that battle is the LAST thing this team was built for.", + "commentid": "74729B4E-F387-AFDF-76CF-8776A56C2BFE", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F1753317-C2DB-77EE-6A2D-97DF473D0EA1", + "posted": "2018-05-26T17:08:29-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/y/ryanboi14.png?3", + "userid": "979FC013-29FF-ED67-B11B-E5F09CEC8CB4", + "username": "RyanBoi14" + } + }, + { + "body": "Then they are USELESS.", + "commentid": "07D65B8F-AF09-1DB5-4602-CEF35574206C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "74729B4E-F387-AFDF-76CF-8776A56C2BFE", + "posted": "2018-05-26T17:24:34-0700", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/c/scottrocks20.jpg?15", + "userid": "65FADFA2-A04E-3CC3-2A8E-E08DA2B0AB38", + "username": "ScottRocks20" + } + }, + { + "body": "they are for loving not fighting", + "commentid": "3221C07F-EABD-99DD-8C2F-AAEF2E8D7D4B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "07D65B8F-AF09-1DB5-4602-CEF35574206C", + "posted": "2019-08-02T04:32:52-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/u/guywholooksatstuff.jpg?2", + "userid": "65B8B0AB-4D34-F2FD-6724-3A42F3E24D6F", + "username": "guywholooksatstuff" + } + }, + { + "body": "Not if you use your imagination.  ( ͡° ͜ʖ ͡°)", + "commentid": "E39DD08B-E28F-4FDA-D405-76B23C41B4B4", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "07D65B8F-AF09-1DB5-4602-CEF35574206C", + "posted": "2018-05-26T17:32:58-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/y/ryanboi14.png?3", + "userid": "979FC013-29FF-ED67-B11B-E5F09CEC8CB4", + "username": "RyanBoi14" + } + }, + { + "body": "Awww, I love Florges so much.... you should do her by herself, nice round body and big breast...❤️❤️❤️❤️❤️", + "commentid": "CF5B6E1B-713D-4334-503C-BB83561A1B11", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2017-06-26T00:10:46-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "2D321AC8-5C3C-C319-2760-25FAB475FC7E", + "username": "Fatlover2174" + } + }, + { + "body": "[Flagged as Spam]", + "commentid": "82FCC9A6-AB5A-6BCC-4122-EDCC52A2868F", + "hidden": "hidden_as_spam", + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "CF5B6E1B-713D-4334-503C-BB83561A1B11", + "posted": "2017-07-05T11:01:27-0700", + "replies": 4, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/m/a/markdbunnell.gif?2", + "userid": "9CA1BD71-47C8-30C9-708C-5D8E07562008", + "username": "MarkDBunnell" + } + }, + { + "body": "oh, mark d bunnell! your antics always please me!", + "commentid": "D3C05D03-1189-32EF-0913-658CF160676A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "82FCC9A6-AB5A-6BCC-4122-EDCC52A2868F", + "posted": "2017-07-23T14:13:12-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/g/r/gren-men-ten.gif?3", + "userid": "08E756E2-E915-5030-0C01-BEB70D9C3776", + "username": "gren-men-ten" + } + }, + { + "body": "Well, aren't we just a ray of fucking sunshine.", + "commentid": "7D83E8C6-FB01-23D4-1EE0-9B0342F9B2A6", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "82FCC9A6-AB5A-6BCC-4122-EDCC52A2868F", + "posted": "2017-07-09T20:15:03-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/r/y/ryanboi14.png?3", + "userid": "979FC013-29FF-ED67-B11B-E5F09CEC8CB4", + "username": "RyanBoi14" + } + }, + { + "body": "Lol a fetish is developed by early sexual experiences, indirect or not, but is only further used to cope with these things just as is every other type of porn.

Literally disabled a short essay with a sentence. If you do your research, you wont have to rant. I'm not the happiest with my fetish and i know it promotes unhealthiness, but i can't stop it. Fetishes are natural things and i just happened to get unlucky exposure.", + "commentid": "69217A61-7FE9-FDA0-1A88-5513C814FD87", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "82FCC9A6-AB5A-6BCC-4122-EDCC52A2868F", + "posted": "2017-07-08T20:34:32-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/r/truemetrack.png?6", + "userid": "DB907A8E-F8F1-B5FD-34EC-08579105D334", + "username": "TrueMetrack" + } + }, + { + "body": "If you don't like our opinions, don't say anything. While I'm at it I might as well say, if you don't like fetish art, why are you here just to hate?", + "commentid": "89970736-21D7-0E12-9F2A-7D93D191C199", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "82FCC9A6-AB5A-6BCC-4122-EDCC52A2868F", + "posted": "2017-07-05T16:58:47-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "2D321AC8-5C3C-C319-2760-25FAB475FC7E", + "username": "Fatlover2174" + } + }, + { + "body": "[Flagged as Spam]", + "commentid": "DD587D34-420D-CB9B-BC0E-2FCE57DF9F16", + "hidden": "hidden_as_spam", + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "89970736-21D7-0E12-9F2A-7D93D191C199", + "posted": "2017-07-05T17:09:54-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/m/a/markdbunnell.gif?2", + "userid": "9CA1BD71-47C8-30C9-708C-5D8E07562008", + "username": "MarkDBunnell" + } + }, + { + "body": "If you have nothing good to say, don't say it", + "commentid": "5C688D6C-34C2-DA5F-C261-EC5A5E37266B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "DD587D34-420D-CB9B-BC0E-2FCE57DF9F16", + "posted": "2017-07-05T22:17:50-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "2D321AC8-5C3C-C319-2760-25FAB475FC7E", + "username": "Fatlover2174" + } + }, + { + "body": "[Flagged as Spam]", + "commentid": "F62D0F60-846C-56F4-2924-16E5D51B3255", + "hidden": "hidden_as_spam", + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "5C688D6C-34C2-DA5F-C261-EC5A5E37266B", + "posted": "2017-07-05T22:35:38-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/m/a/markdbunnell.gif?2", + "userid": "9CA1BD71-47C8-30C9-708C-5D8E07562008", + "username": "MarkDBunnell" + } + }, + { + "body": "What pokemon would you recommend for me?", + "commentid": "95AC94AD-392D-A22F-EE3F-93DE8B040539", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-06-13T08:10:46-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/i/pillowbelly.jpg?2", + "userid": "2FC3C138-AAF0-2C07-9A4D-82DF736D7CAF", + "username": "Pillowbelly" + } + }, + { + "body": "I wanna squeeze the lilligant, she looks so cute >w<", + "commentid": "CF2FB189-17CB-C87D-35BB-20E20803A58E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-06-08T18:46:52-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/m/smolfishyboi.png?6", + "userid": "B66E3333-7E40-49AA-3D64-4E3E6569BD57", + "username": "SmolFishyBoi" + } + }, + { + "body": "MOER M8! I LOVE FAT POKEMON AND FAT POKEPUFFS M8!", + "commentid": "7E81CA4E-295A-33E5-1065-E530DE3DDB1A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-06-07T14:31:25-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/m/l/mlgwesleyfaze.png?10", + "userid": "6FF3A904-02AB-08D9-BC27-2B5A566E8212", + "username": "MLGWesleyFaZe" + } + }, + { + "body": "thIs bReAkS rUlEs
gYmS dON't eXiSt In alOlA", + "commentid": "E258A8AE-CEB7-1F6C-70C4-84448E6C2742", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-06-02T19:51:29-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/b/a/baroncuntsalot.png?6", + "userid": "E5F49D98-7136-5D46-398D-7DBCE6E7FC81", + "username": "BaronCuntsAlot" + } + }, + { + "body": "Grass, Fairy, and Psychic...
Good thing Alolan Muk exists.", + "commentid": "D9C02909-974F-7385-D98E-F26AC5C5EA01", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-23T10:04:12-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "11447FD4-BF67-3AA6-1E8D-5C541C35396B", + "username": "BigBellyBoss" + } + }, + { + "body": "how dare you even think about hurting them", + "commentid": "74A14541-3310-C0D4-FBF5-52D4BD46FF03", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "D9C02909-974F-7385-D98E-F26AC5C5EA01", + "posted": "2019-08-02T04:34:45-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/u/guywholooksatstuff.jpg?2", + "userid": "65B8B0AB-4D34-F2FD-6724-3A42F3E24D6F", + "username": "guywholooksatstuff" + } + }, + { + "body": "Is that your actual team?", + "commentid": "32FD276B-6C32-C93E-D18A-28F1F503F308", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-18T19:39:51-0700", + "replies": 1, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/c/h/chubbinator.jpg?9", + "userid": "6E260CCE-6110-4ACE-FF09-41F13C5A3F49", + "username": "Chubbinator" + } + }, + { + "body": "Nope! 
But they should!", + "commentid": "B340C41D-6537-4292-F6DF-1C3FADF56EE8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "32FD276B-6C32-C93E-D18A-28F1F503F308", + "posted": "2017-05-23T10:00:00-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Definitely", + "commentid": "CDC449AA-22D7-E271-7F05-98BE5B944BBA", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "B340C41D-6537-4292-F6DF-1C3FADF56EE8", + "posted": "2017-05-24T17:20:32-0700", + "replies": 0, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/c/h/chubbinator.jpg?9", + "userid": "6E260CCE-6110-4ACE-FF09-41F13C5A3F49", + "username": "Chubbinator" + } + }, + { + "body": "[Flagged as Spam]", + "commentid": "14C4D465-D3D6-6ED3-FCEC-502E701ED260", + "hidden": "hidden_as_spam", + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-17T17:31:56-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/s/ssjwarrior9.gif", + "userid": "C44A95C0-3E38-5B7F-99AF-16BDFDEBF5F1", + "username": "Ssjwarrior9" + } + }, + { + "body": "Why does the human race let you live?", + "commentid": "CB93A3EC-F09E-8F3B-BE7D-6DCF2D3D3EA4", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "14C4D465-D3D6-6ED3-FCEC-502E701ED260", + "posted": "2017-05-26T18:25:45-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/t/ltmwasneverhere.jpg", + "userid": "6A0A3873-3AA4-B522-3D78-FDD2AE9B10CC", + "username": "LTMwasneverhere" + } + }, + { + "body": "Eh, I', just here for my gym badge.
Awww, ain't that cute? Your gym is technically the Fat Type!

Alright, enough talk. Let's fight, prepare yourself  of the wrath of Poison, Dark, & Fighting-types, and allow me to initiate my battle theme: youtu.be/nX2hOoaLb4Y?t=1m31s
Yes, it has to be HIS theme.", + "commentid": "4BD6D495-9F73-845D-A76B-C664ABF5DD19", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-11T21:17:32-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/z/e/zerodivisiontoons.png?7", + "userid": "901DEE07-D523-CEE5-1AB2-E24C93A8FA65", + "username": "ZeroDivisionToons" + } + }, + { + "body": "www.youtube.com/watch?v=TLfEzL…

you'd go better with a high quality rip", + "commentid": "21D0656D-FFC1-50CF-7B41-72D8591C3D8B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "4BD6D495-9F73-845D-A76B-C664ABF5DD19", + "posted": "2017-06-04T15:40:57-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "5B989BFB-CF55-7ACA-AFCF-764BFC7F5A86", + "username": "rarelol" + } + }, + { + "body": "Hahahahahahahahahaha.

FUCK THAT GUY.
(Yeah, I said it.)", + "commentid": "F9C88DD7-7D6B-27F6-3885-0FB5F9E88386", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "21D0656D-FFC1-50CF-7B41-72D8591C3D8B", + "posted": "2017-06-04T18:53:57-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/z/e/zerodivisiontoons.png?7", + "userid": "901DEE07-D523-CEE5-1AB2-E24C93A8FA65", + "username": "ZeroDivisionToons" + } + }, + { + "body": "They all look adorable", + "commentid": "D42EA342-226F-0EC6-CB95-A253F14845CA", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-10T04:34:51-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/w/awsomethewolf.png?13", + "userid": "4DEF8DE0-2CA8-3C88-ED59-E21E0CAEB9CD", + "username": "awsomethewolf" + } + }, + { + "body": "Heavy Slam is now a one hit KO", + "commentid": "60DBB379-0A0E-F9FC-A679-1777C3BAE382", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-09T18:19:54-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/m/e/megamurf.jpg?8", + "userid": "6DEE6F78-E6FE-75B2-39D2-2FAC1CBFB9D5", + "username": "MegaMurf" + } + }, + { + "body": "I couldn't fight them, it would break my heart!", + "commentid": "9F776F8B-F8DA-AA77-EC52-B5B435915A5E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-07T13:54:54-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "32E33BD0-857E-FA01-761F-136CF7330165", + "username": "Greenman1502" + } + }, + { + "body": "I wouldn't either man.", + "commentid": "95F08C86-74A1-A715-E51C-91EE1E5AA745", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "9F776F8B-F8DA-AA77-EC52-B5B435915A5E", + "posted": "2017-05-09T09:15:06-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Awww! I love this so much! The adorable little Lilligant blob is my fave~ Just a big ol' ball of plant pudge", + "commentid": "063ABC89-50A8-48B3-3ADA-B5C353AB7BEB", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-06T16:56:43-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/p/u/pudgythings.gif?2", + "userid": "E6D26A07-83FF-B0CF-DF6F-3FEEBAB76F79", + "username": "PudgyThings" + } + }, + { + "body": "Haha! Thanks.", + "commentid": "3E93A55B-7C13-38D2-009F-C96D78083BDF", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "063ABC89-50A8-48B3-3ADA-B5C353AB7BEB", + "posted": "2017-05-09T09:14:56-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Pokemon Gym?
You seem more of the champion if anything!", + "commentid": "2D1D666E-6D6A-5ADF-2577-33BB76352847", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-05T17:21:44-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/t/ltmwasneverhere.jpg", + "userid": "6A0A3873-3AA4-B522-3D78-FDD2AE9B10CC", + "username": "LTMwasneverhere" + } + }, + { + "body": "Living the dream man.", + "commentid": "DDC9F823-7814-94CA-5573-CEDB695C47F6", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "2D1D666E-6D6A-5ADF-2577-33BB76352847", + "posted": "2017-05-09T09:15:22-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "You sure are.

Now I shall precede to earn my gym badge/ champion title with my team of Steel-Type Pokeymongz.
(BATTLE MUSIC ENGAGE!)", + "commentid": "0A3784F3-597C-4258-36C1-F8FB4BAB8874", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "DDC9F823-7814-94CA-5573-CEDB695C47F6", + "posted": "2017-05-09T20:09:10-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/t/ltmwasneverhere.jpg", + "userid": "6A0A3873-3AA4-B522-3D78-FDD2AE9B10CC", + "username": "LTMwasneverhere" + } + }, + { + "body": "Wonderful", + "commentid": "2CA0B324-90E4-B8D8-8659-CBADDFB81949", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-05-04T00:30:03-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/y/cyberkirby19.jpg", + "userid": "28CEB2AC-DD42-2611-BFF3-EBB21C240ACD", + "username": "CyberKirby19" + } + }, + { + "body": ": D", + "commentid": "90A7E0EF-DFD9-6952-1CD2-89053CE926C9", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "2CA0B324-90E4-B8D8-8659-CBADDFB81949", + "posted": "2017-05-09T09:14:44-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "It's perfection.", + "commentid": "53AE6AA8-5B0D-B974-1390-8EBE2BE2204F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "90A7E0EF-DFD9-6952-1CD2-89053CE926C9", + "posted": "2017-05-09T09:15:27-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/y/cyberkirby19.jpg", + "userid": "28CEB2AC-DD42-2611-BFF3-EBB21C240ACD", + "username": "CyberKirby19" + } + }, + { + "body": "If I beat you could I hug all of them?", + "commentid": "61C4BF30-C0DF-E648-6431-763F0464EA8A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2017-05-03T18:20:12-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/u/jupaso514.jpg?5", + "userid": "C57F1574-6DCC-B462-2915-8EF10C73C82B", + "username": "Jupaso514" + } + }, + { + "body": "You ain't beating this team boi.", + "commentid": "D36477DF-F3E7-0966-974A-00980C8E8D04", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "61C4BF30-C0DF-E648-6431-763F0464EA8A", + "posted": "2017-05-09T09:14:38-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "If I have high enough attack and special attack I will plus the type advantage.", + "commentid": "560F2304-332C-5327-77C8-4DB3293CFFD0", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "D36477DF-F3E7-0966-974A-00980C8E8D04", + "posted": "2017-05-09T11:48:22-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/u/jupaso514.jpg?5", + "userid": "C57F1574-6DCC-B462-2915-8EF10C73C82B", + "username": "Jupaso514" + } + }, + { + "body": "I'm also using shedninja only so you are mostly likely dead", + "commentid": "A069CB83-4B75-D0E1-CB7F-5CB4F0AB8E18", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "560F2304-332C-5327-77C8-4DB3293CFFD0", + "posted": "2017-06-01T19:22:45-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/u/jupaso514.jpg?5", + "userid": "C57F1574-6DCC-B462-2915-8EF10C73C82B", + "username": "Jupaso514" + } + }, + { + "body": "If I entered this gym, I'd have to surrender, wouldn't want to hurt such delicate beauties!", + "commentid": "3913F582-0D68-B7A1-FC22-DBB8DC6EFC02", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-28T02:46:03-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/g/a/gam3nut20.gif?11", + "userid": "FABF93F2-D7E2-1598-FBFB-687120D6CC16", + "username": "gam3nut20" + } + }, + { + "body": "That's how I beacame undefeated for so long!", + "commentid": "D199BDE0-9584-C8BE-5BA7-988F502DA3EC", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "3913F582-0D68-B7A1-FC22-DBB8DC6EFC02", + "posted": "2017-04-28T08:39:54-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "I ponder, are we going to see more of these fine ladies (In more way then one, possibly?)", + "commentid": "DA4AE15A-3824-7D83-E5E6-8F09E1D1A852", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-25T07:10:03-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/h/thewretcheddeeps.jpg?5", + "userid": "436745AE-B843-9625-CD15-F6AD705219F2", + "username": "TheWretchedDeeps" + } + }, + { + "body": "MAYBE", + "commentid": "C9C0C95F-F258-E28A-06E5-86E065A302A2", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "DA4AE15A-3824-7D83-E5E6-8F09E1D1A852", + "posted": "2017-05-09T09:14:10-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Oh, I see~", + "commentid": "917E94D5-08F5-5433-DC6D-8885DF3C0AEC", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "C9C0C95F-F258-E28A-06E5-86E065A302A2", + "posted": "2017-05-09T15:13:00-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/h/thewretcheddeeps.jpg?5", + "userid": "436745AE-B843-9625-CD15-F6AD705219F2", + "username": "TheWretchedDeeps" + } + }, + { + "body": "Living the dream there man.

What is it with waifumons and grass/green anyway? It just seems like a winning combination.", + "commentid": "7A24BB85-204A-76E8-FF46-A5F048E5B708", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-24T17:02:42-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/a/tacospork.png?9", + "userid": "01A8B792-0E4F-4BCC-5B60-741913725AE7", + "username": "TacoSpork" + } + }, + { + "body": "I know right?", + "commentid": "E65C4B9C-1AA0-7227-924A-590462180821", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "7A24BB85-204A-76E8-FF46-A5F048E5B708", + "posted": "2017-05-09T09:14:03-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "That Meloatta tho......

Want. Lol <3", + "commentid": "CD0AD68F-E7CC-E528-6485-F98467F94B28", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-24T08:20:32-0700", + "replies": 1, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/c/h/chloedanvers13.jpg?12", + "userid": "652DC4B9-3427-DF05-D633-86BCDBC22C9B", + "username": "ChloeDanvers13" + } + }, + { + "body": "lol", + "commentid": "CD700D09-056A-78A8-A460-8C2C5216C3B2", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "CD0AD68F-E7CC-E528-6485-F98467F94B28", + "posted": "2017-05-09T09:13:51-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "that Lurantis is HUGE X3 must be soo comfy...", + "commentid": "F6DD0480-F970-2780-6516-69AE2B9BE226", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-23T22:18:01-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/a/samuraiknight.png?11", + "userid": "8B311EB9-99A4-B15B-624D-F5953F55F5A7", + "username": "SamuraiKnight" + } + }, + { + "body": "Dat beanbag chair! lol", + "commentid": "9F11FD2E-2072-0472-03CD-B1FCE712AB47", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F6DD0480-F970-2780-6516-69AE2B9BE226", + "posted": "2017-05-09T09:13:45-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Cute team. You might need to feed them more though", + "commentid": "E01CFA1A-6692-CB40-198D-FF332B376C9B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-22T21:11:55-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/t/stuffedbunny1.jpg?5", + "userid": "12619D12-64CE-61B4-5C0E-977FA5D9BE86", + "username": "StuffedBunny1" + } + }, + { + "body": "Too much of a good thing is too much of a good thing.", + "commentid": "171132F2-9D58-641C-322C-58C9010C2AF8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "E01CFA1A-6692-CB40-198D-FF332B376C9B", + "posted": "2017-04-23T09:30:18-0700", + "replies": 2, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/t/h/thegreattorotheking.gif?7", + "userid": "AB62BD7E-468E-A378-0832-27A3C23B07A7", + "username": "TheGreatTorotheKing" + } + }, + { + "body": "Live life to the fullest", + "commentid": "07D3A28D-D3F9-8FE2-E49C-EDFB8B7D31D2", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "171132F2-9D58-641C-322C-58C9010C2AF8", + "posted": "2017-04-23T19:14:58-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/t/stuffedbunny1.jpg?5", + "userid": "12619D12-64CE-61B4-5C0E-977FA5D9BE86", + "username": "StuffedBunny1" + } + }, + { + "body": "Agreed", + "commentid": "A32EDB71-7980-02D1-56FB-E12FF0689AE3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "171132F2-9D58-641C-322C-58C9010C2AF8", + "posted": "2017-04-23T19:14:42-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/s/t/stuffedbunny1.jpg?5", + "userid": "12619D12-64CE-61B4-5C0E-977FA5D9BE86", + "username": "StuffedBunny1" + } + }, + { + "body": "They must be quite soft to the touch.", + "commentid": "BE026C12-BBC6-9E96-6141-67390EAAEBF6", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-22T18:49:56-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/t/h/thegreattorotheking.gif?7", + "userid": "AB62BD7E-468E-A378-0832-27A3C23B07A7", + "username": "TheGreatTorotheKing" + } + }, + { + "body": "Squishy!", + "commentid": "BA189234-37D4-A99F-84AE-871747455EA1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "BE026C12-BBC6-9E96-6141-67390EAAEBF6", + "posted": "2017-05-09T09:13:19-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "I'm not normally a fan of pokemon chub, but this is really cute! Looks very soft and pillowy and cozy.", + "commentid": "F83195AF-C7B8-4B9A-B46D-DEB885E86C20", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-19T15:15:59-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/a/n/anon5151.gif?1", + "userid": "B6FF9897-0DDB-9D3A-7FF8-0C8ABAFDC47D", + "username": "Anon5151" + } + }, + { + "body": "I'm surprised Roserade is not on here, neither is Lopunny or Salazzle", + "commentid": "E49AFEC2-60C6-D0F3-9BB3-337A011DB45E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F83195AF-C7B8-4B9A-B46D-DEB885E86C20", + "posted": "2017-04-20T09:01:20-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/q/u/quintonshark8713.jpg?4", + "userid": "E5C041F0-099B-2277-C7A2-A4BFF9D30E93", + "username": "quintonshark8713" + } + }, + { + "body": "if only pokemon games worked like that,", + "commentid": "67FB3A4B-C8D0-BA91-5C6D-88A9D3354A18", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-17T16:56:34-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/n/a/nam-coffeehouse.jpg?13", + "userid": "4A03EB62-20AE-E434-169D-F2D0970EE7C6", + "username": "NAM-CoffeeHouse" + } + }, + { + "body": "I wish!", + "commentid": "84975788-2424-210B-F8E2-0AD8BE6F8D75", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "67FB3A4B-C8D0-BA91-5C6D-88A9D3354A18", + "posted": "2017-05-09T09:12:43-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "how do these ladies fair in battle? I bet they have alot of fun throwing their weight around at challengers!", + "commentid": "07AE3E90-BCAC-3B7D-D421-DE270F801B72", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-17T13:00:00-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/p/i/pinkie25.gif?1", + "userid": "FC12671C-B8D2-163C-1FEB-0742D634BFAD", + "username": "pinkie25" + } + }, + { + "body": "Who needs battling if the enemy can't hurt em. XD", + "commentid": "709CF553-FFA4-4AB6-635B-ABC38AD3E147", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "07AE3E90-BCAC-3B7D-D421-DE270F801B72", + "posted": "2017-05-09T09:13:11-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "...I do not normally fave anything with a fat Gardevoir on it, nevermind comment on it.  Under normal circumstances, that is not how I roll.

...But DAMN is this well drawn!  Fuck it, you get my fave.", + "commentid": "AEED3BD6-C8CA-FA29-A5E6-8C13687388C4", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-17T11:31:51-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/e/g/ego-man25.png?4", + "userid": "A77C04CC-18B3-D0B5-CD78-AFD87E8E3E27", + "username": "Ego-Man25" + } + }, + { + "body": "APPRECIATED!", + "commentid": "2D79064D-D24C-2E17-0822-9D7279CD9322", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "AEED3BD6-C8CA-FA29-A5E6-8C13687388C4", + "posted": "2017-05-09T09:12:08-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Once again, beautiful artwork, Jeetdoh! <3 I love how you took your previous drawing of the best Pokémon girls all fattened up, and made a sequel with them cuddling with their master! It's so sweet! >u< Oh, how I wish this was a feature you could do in the games (as well as in the anime too)! That would be nice! c:", + "commentid": "E33A4DD0-DD70-9DFF-9154-571286470354", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-17T08:03:17-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "54978989-F36F-378C-310A-31F1B5EF7B69", + "username": "Kingnewcomer" + } + }, + { + "body": "Don't we all wish that? lol", + "commentid": "07932AC0-8227-2E49-4C7F-5E0E1FF93ABA", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "E33A4DD0-DD70-9DFF-9154-571286470354", + "posted": "2017-05-09T09:11:37-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Indeed! \"Bunny You've definitely spoiled those girls too, huh? haha XD Not that I blame you, I'd totally do the same thing to them! lol", + "commentid": "66F1AAE4-6EF0-5693-6EEE-DDAED3D3E703", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "07932AC0-8227-2E49-4C7F-5E0E1FF93ABA", + "posted": "2017-05-09T10:22:53-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "54978989-F36F-378C-310A-31F1B5EF7B69", + "username": "Kingnewcomer" + } + }, + { + "body": "that's what i call paradise", + "commentid": "FBE87491-D4BC-C001-D560-EA7F80BD5370", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-16T20:35:50-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/o/m/omega1518.gif?13", + "userid": "A1F5F2F5-D22B-1D13-8CD5-C081EAE2B79C", + "username": "omega1518" + } + }, + { + "body": "+W+", + "commentid": "9489112F-B1CB-3B4C-D5ED-25A2ADECA026", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "FBE87491-D4BC-C001-D560-EA7F80BD5370", + "posted": "2017-04-17T17:35:20-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "having plump poke girls like that that be paradise for me and you", + "commentid": "A4E144FD-981C-B671-7C1D-53E03D4DC805", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "9489112F-B1CB-3B4C-D5ED-25A2ADECA026", + "posted": "2017-04-17T17:37:01-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/o/m/omega1518.gif?13", + "userid": "A1F5F2F5-D22B-1D13-8CD5-C081EAE2B79C", + "username": "omega1518" + } + }, + { + "body": "A full team of ample harem 'Mons, complete with total loyalty?
Where do I sign up?", + "commentid": "BF847E66-EE66-6D75-EB73-488CFF11DEDC", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-16T19:19:45-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/h/chupitrooper.png?4", + "userid": "DAF76F0D-9173-078A-4E3E-081FEAC315F6", + "username": "ChupiTrooper" + } + }, + { + "body": "Imagination land! ", + "commentid": "EBFA7F30-9A86-F358-EF05-9F45B8FC5C19", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "BF847E66-EE66-6D75-EB73-488CFF11DEDC", + "posted": "2017-04-17T17:35:09-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "They need more food, they are thin", + "commentid": "FEB01E25-7589-37EF-23C8-345914249423", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-16T13:39:35-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/i/pillowbelly.jpg?2", + "userid": "2FC3C138-AAF0-2C07-9A4D-82DF736D7CAF", + "username": "Pillowbelly" + } + }, + { + "body": "If they're thin now, whats fat for you?", + "commentid": "F1888EF6-9217-D0D2-F67B-B8776CAC0ED0", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "FEB01E25-7589-37EF-23C8-345914249423", + "posted": "2017-04-16T18:11:48-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Twice the size of them now.", + "commentid": "B87234F7-4D61-2D6A-16F6-56B4BB4A3DB7", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F1888EF6-9217-D0D2-F67B-B8776CAC0ED0", + "posted": "2017-04-16T19:14:55-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/i/pillowbelly.jpg?2", + "userid": "2FC3C138-AAF0-2C07-9A4D-82DF736D7CAF", + "username": "Pillowbelly" + } + }, + { + "body": "These are things that I love to imagine. \":D\"", + "commentid": "1FF3AFAB-60C1-274E-1760-CB63D733398C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-16T13:13:30-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/f/a/fanficfetishist.gif?1", + "userid": "E2E7B377-09D4-E833-1180-F024ECF272E8", + "username": "FanficFetishist" + } + }, + { + "body": "Sweet Imagination!", + "commentid": "43508642-2C39-CB3A-6D6E-492E165C3B1A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "1FF3AFAB-60C1-274E-1760-CB63D733398C", + "posted": "2017-04-16T18:12:18-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "A harem of lovely fat beauties to snuggle with?  Absolute bliss.  This is a beautiful rendition of that fantasy.", + "commentid": "80106DA1-3841-248F-6286-F9F116A2D28B", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "43508642-2C39-CB3A-6D6E-492E165C3B1A", + "posted": "2017-04-16T20:04:07-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/f/a/fanficfetishist.gif?1", + "userid": "E2E7B377-09D4-E833-1180-F024ECF272E8", + "username": "FanficFetishist" + } + }, + { + "body": "this is too great!\"Gregg\" \"Right ", + "commentid": "C5728CDE-602A-3482-BA27-08FF80AF81CA", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-15T22:37:12-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/g/o/godzilla511.gif?15", + "userid": "40B7A8F9-215C-D901-3490-A8870C2927C1", + "username": "godzilla511" + } + }, + { + "body": "Thanks!", + "commentid": "CB68CB20-65E8-8F77-0A34-E35CD5EE8A4A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "C5728CDE-602A-3482-BA27-08FF80AF81CA", + "posted": "2017-04-16T18:14:35-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "That's a very nice Lilligant-shaped beanbag you have there.", + "commentid": "3F190669-E082-E335-A9CA-6A4AA2FDD8BE", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-15T15:43:53-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/e/generichsfan.png?5", + "userid": "0A2437F0-87A8-38A4-6DCE-43153F71C921", + "username": "GenericHSFan" + } + }, + { + "body": "A good piece.", + "commentid": "16A1B043-C0ED-EEF0-8767-5600952E2B86", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "3F190669-E082-E335-A9CA-6A4AA2FDD8BE", + "posted": "2017-04-16T18:14:59-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Too cute!", + "commentid": "03186268-254B-BEE5-F455-F4AAD49BDDB6", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T23:17:11-0700", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/w/o/wojti2000.jpg", + "userid": "71CFDAEA-882E-9C65-620D-DA8F06725095", + "username": "wojti2000" + } + }, + { + "body": ": D", + "commentid": "8FC04AD7-8B86-63E9-C646-02AC6E868D0E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "03186268-254B-BEE5-F455-F4AAD49BDDB6", + "posted": "2017-04-16T18:15:05-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "I want to hug them all.", + "commentid": "0A59B179-7533-8F95-5CD0-1825B65EAFF2", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "8FC04AD7-8B86-63E9-C646-02AC6E868D0E", + "posted": "2017-04-16T22:44:34-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/w/o/wojti2000.jpg", + "userid": "71CFDAEA-882E-9C65-620D-DA8F06725095", + "username": "wojti2000" + } + }, + { + "body": "Yes yes more more 😄", + "commentid": "B40D599D-546E-BF78-9C47-CB1F23E8187E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "03186268-254B-BEE5-F455-F4AAD49BDDB6", + "posted": "2017-04-15T11:03:50-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/n/anti-worlder0317.gif?2", + "userid": "493CE531-23D2-5638-22D2-B75CB46DCB97", + "username": "anti-worlder0317" + } + }, + { + "body": "Yes!", + "commentid": "CEF46626-69E6-DBD3-A087-A46C96122660", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "B40D599D-546E-BF78-9C47-CB1F23E8187E", + "posted": "2017-04-15T11:20:27-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/w/o/wojti2000.jpg", + "userid": "71CFDAEA-882E-9C65-620D-DA8F06725095", + "username": "wojti2000" + } + }, + { + "body": "We really need more fat Florgess, Lilligant and Lurantis <3!", + "commentid": "6880C3F6-9661-92CB-DFEB-C74F635AC797", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T22:40:36-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/o/softwinter.gif?4", + "userid": "51770021-73C6-4837-E78C-B30959B620C2", + "username": "Softwinter" + } + }, + { + "body": "Here we are. lol", + "commentid": "33310DD2-6693-9F35-5F05-D03556369A01", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "6880C3F6-9661-92CB-DFEB-C74F635AC797", + "posted": "2017-04-16T18:15:38-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Yeah LOL XD", + "commentid": "DCA87603-C943-EE74-E7A4-0D1142687C52", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "33310DD2-6693-9F35-5F05-D03556369A01", + "posted": "2017-04-17T15:15:00-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/o/softwinter.gif?4", + "userid": "51770021-73C6-4837-E78C-B30959B620C2", + "username": "Softwinter" + } + }, + { + "body": "Round Lilligant is the cutest thing =w=
And of course Lurantis~", + "commentid": "1A66591F-818F-2A14-210A-80220EDF5444", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T20:02:11-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/d/r/drflamingoaquason.gif?12", + "userid": "A1229160-AF80-EBB4-109A-CD189504B043", + "username": "DrFlamingoAquason" + } + }, + { + "body": "Thanks mate!", + "commentid": "A0545423-ED44-1D50-64C9-4F3725C39F55", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "1A66591F-818F-2A14-210A-80220EDF5444", + "posted": "2017-04-16T18:21:08-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Damn that looks soft! Loving it even without Roserade!", + "commentid": "EC41AD2F-8FB9-1541-1312-9652BDAA8E56", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T19:39:21-0700", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "1F743608-9247-CBE5-A508-547C8BAB0409", + "username": "mecha-phor" + } + }, + { + "body": "Is this the new meta for competitive?", + "commentid": "6704A865-839F-5DC1-3F13-577777D4FD38", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "EC41AD2F-8FB9-1541-1312-9652BDAA8E56", + "posted": "2017-04-16T21:21:28-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "C10AC399-4F23-DFE4-3941-F8EAE7730199", + "username": "mrover9000" + } + }, + { + "body": "Roserade just wasn't for me. LOL", + "commentid": "5DAEE256-E5F8-A448-350B-9B8F55739FB1", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "EC41AD2F-8FB9-1541-1312-9652BDAA8E56", + "posted": "2017-04-16T18:21:59-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Hey you know what they say: Live life with no regrets.", + "commentid": "A407D0B6-275C-B16E-8B10-A43C96AD9554", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T18:57:24-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/g/a/garymega77.png?11", + "userid": "9FE1790E-EEE9-CFE5-1125-512021F4439A", + "username": "GaryMega77" + } + }, + { + "body": "OF COURSE!", + "commentid": "28A906C2-6DB8-5476-B579-BE4D331F2470", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "A407D0B6-275C-B16E-8B10-A43C96AD9554", + "posted": "2017-04-16T18:21:18-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Watch as they suddenly realize what you did, then suffocate you.", + "commentid": "C024F71B-A5EE-A408-DA25-5AF3A158F448", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T16:22:28-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/u/puffgpx.jpg?12", + "userid": "3A234C4A-D161-0264-AFD0-4D26BD3DC494", + "username": "PuffGPX" + } + }, + { + "body": "with love!", + "commentid": "0AEC6326-91CE-8237-7A86-4423833BA2B7", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "C024F71B-A5EE-A408-DA25-5AF3A158F448", + "posted": "2017-04-16T18:22:08-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "...Yeah, why not.", + "commentid": "8F4219C4-0C5A-281A-8E56-DBC5D028414A", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "0AEC6326-91CE-8237-7A86-4423833BA2B7", + "posted": "2017-04-16T21:15:46-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/u/puffgpx.jpg?12", + "userid": "3A234C4A-D161-0264-AFD0-4D26BD3DC494", + "username": "PuffGPX" + } + }, + { + "body": "This is amazing!!!!", + "commentid": "B9DBF530-4FAB-FEFE-B0DC-5CABF9DAE67D", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T15:12:42-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/e/peach-500.png?4", + "userid": "7C4173AC-D928-0A74-1484-867AF3A8587A", + "username": "peach-500" + } + }, + { + "body": "I want to poke them all in the tummy. ", + "commentid": "B2572A04-719D-8306-730B-98C444C8623E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T12:08:48-0700", + "replies": 1, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/d/o/dollwoman.png?4", + "userid": "790B0E48-17EE-0222-0A38-76A1FD091122", + "username": "Dollwoman" + } + }, + { + "body": "Poke em mon!", + "commentid": "8F3F05E9-05DE-0613-4418-3CDFE3939C11", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "B2572A04-719D-8306-730B-98C444C8623E", + "posted": "2017-04-16T18:59:48-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "i assume roserade and lopunny are in the pc", + "commentid": "10BC64BF-A9B6-8FCD-A370-3CD4B68127E0", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T11:47:25-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "5B989BFB-CF55-7ACA-AFCF-764BFC7F5A86", + "username": "rarelol" + } + }, + { + "body": "Now thats a team I would love to see!", + "commentid": "54370739-38BC-AA3B-02E2-BF62A6943095", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T11:45:31-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/h/thebonggolem.png?7", + "userid": "70D1A027-1365-F6A5-9178-61675B8D12D3", + "username": "TheBongGolem" + } + }, + { + "body": "All the fat Fairies!", + "commentid": "E16F68F5-62BD-2C79-A9D5-BD8745F5833C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T10:48:28-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/d/e/dedoarts.gif?1", + "userid": "E824764B-71F7-446F-50A6-8877C29FCEB6", + "username": "DedoArts" + } + }, + { + "body": "Lucky to be with so many poke-cuties and all the softness. Can never have enough softness and them being fatter.

Great work on it.", + "commentid": "41359563-7C7E-9979-CD9D-D6C07C7F0F25", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T10:05:02-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/u/luminargamer.jpg?10", + "userid": "D4D07E30-32A1-6BE3-F71F-D75C742619B1", + "username": "Luminargamer" + } + }, + { + "body": "so cute.", + "commentid": "38B5AD45-8FFD-7065-2834-9DAE5A150E9C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T09:02:01-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "1A906B76-25CA-126D-9725-23EB5CB3383B", + "username": "MSPfan" + } + }, + { + "body": "You know, if you brought in a pervy salazzle, and some male pokemon to get nosebleeds and be jealous of the trainer, you'd have the makings of a great harem anime", + "commentid": "D98271D8-2042-7628-5259-9553AC0AB83C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T09:00:05-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/a/dark-ninja92.png?6", + "userid": "A500DB7E-7286-D30E-FAFD-35FDABE2868F", + "username": "dark-ninja92" + } + }, + { + "body": "We all wish this was possible in the games >w>", + "commentid": "7404FFD6-C56F-9DFB-18F6-C0998996BF95", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T08:54:21-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/h/shoclu.gif?7", + "userid": "F5D96447-1BFC-5E2B-F5EF-4E9E34C26436", + "username": "Shoclu" + } + }, + { + "body": "Don't we all?", + "commentid": "72FC5231-FC77-76A8-235D-00F0F1C39FA3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "7404FFD6-C56F-9DFB-18F6-C0998996BF95", + "posted": "2017-04-16T19:00:50-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Poor Lurantis :<", + "commentid": "3A98F526-20B6-1B31-A95E-DFB6E3EFE795", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T08:26:59-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/u/purrine.png?4", + "userid": "264CEEBA-626F-FD42-4F80-2537D1BF74B7", + "username": "Purrine" + } + }, + { + "body": "Why poor?", + "commentid": "CF5D31B8-2327-966A-CDDE-33D99F709377", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "3A98F526-20B6-1B31-A95E-DFB6E3EFE795", + "posted": "2017-04-16T19:01:03-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Everyone's sittin' and laying on her :<", + "commentid": "B87DA198-5B96-0EF4-9D0E-89DF4378E7B9", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "CF5D31B8-2327-966A-CDDE-33D99F709377", + "posted": "2017-04-16T19:35:22-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/u/purrine.png?4", + "userid": "264CEEBA-626F-FD42-4F80-2537D1BF74B7", + "username": "Purrine" + } + }, + { + "body": "You basically got yourself a harem of fatty female animals (?)

Be carefull not to indulge that luch yourself or you'll end up in a tight spot as well joe (?)", + "commentid": "5B6CE443-4413-7DAC-F3D4-8A0315C46DA9", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T08:23:20-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/a/danyantto.jpg?15", + "userid": "35F75F9D-5DEE-0CCE-3F79-0119C761FAD2", + "username": "DANYANTTO" + } + }, + { + "body": "Thats the cutest thing I saw in my entire life
Good job man :v-b", + "commentid": "4CB80883-CCB2-06BB-BFD3-C372DA8B3848", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T07:58:12-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/f/a/fatfurluver123.jpg?11", + "userid": "0C2573B1-DBCB-94B9-F51B-A69ECF1A3EDB", + "username": "fatfurluver123" + } + }, + { + "body": "I am so confused...this is hot.....", + "commentid": "FA515A4C-E44E-8FF5-124F-3B70CF1B3DB3", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T07:08:44-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/o/toxicgambit.jpg?5", + "userid": "D55322B9-5C06-15A0-34B5-C116041B0801", + "username": "Toxicgambit" + } + }, + { + "body": "=w=b", + "commentid": "E23D7CE3-CC86-643C-0933-24123D10E4C6", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "FA515A4C-E44E-8FF5-124F-3B70CF1B3DB3", + "posted": "2017-04-17T17:37:00-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Awesome", + "commentid": "F759A543-6249-DC03-D712-CC450AB2D666", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T06:41:40-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/l/alinh1296.jpg?8", + "userid": "1E828DFF-FAB8-AB79-1152-CFE46E551645", + "username": "alinh1296" + } + }, + { + "body": "This is the dream <3 ", + "commentid": "4AAC8B2E-EC1E-BD41-49C7-48A11208C9D6", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T06:40:44-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "1BEBB121-9408-0A7A-CFC6-4748CB3268A6", + "username": "demonflower123" + } + }, + { + "body": "YUP!", + "commentid": "03EBEB06-B5FE-8798-32F0-FD3071850484", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "4AAC8B2E-EC1E-BD41-49C7-48A11208C9D6", + "posted": "2017-04-17T17:36:47-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "nice", + "commentid": "F969245C-E7BA-A2F5-AE24-EE6B8C01BE5F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T06:39:52-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/u/suntwilig.jpg?6", + "userid": "7BBE6A8F-0EFF-CFE8-3A9E-5A091CEEE0C1", + "username": "suntwilig" + } + }, + { + "body": "Thanks dude!", + "commentid": "BFEC54BA-7599-18F3-B002-E982F3C72D3E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "F969245C-E7BA-A2F5-AE24-EE6B8C01BE5F", + "posted": "2017-04-17T17:36:36-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "np", + "commentid": "9E5BFE49-C639-55A3-D074-0B32B8BF2541", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "BFEC54BA-7599-18F3-B002-E982F3C72D3E", + "posted": "2017-04-17T19:09:26-0700", + "replies": 0, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/s/u/suntwilig.jpg?6", + "userid": "7BBE6A8F-0EFF-CFE8-3A9E-5A091CEEE0C1", + "username": "suntwilig" + } + }, + { + "body": "Seems? \";)\"

Nice looking team though.", + "commentid": "7C74657E-2564-4F1D-B04D-F7B9E8341D05", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T06:31:26-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/r/dracostarcloud.gif?2", + "userid": "3838455A-7CD4-E53A-329A-057F8542C3D5", + "username": "dracostarcloud" + } + }, + { + "body": "LOL
I'm not even subtle!", + "commentid": "F05E7F95-D84E-AB50-0B0E-88CBD4881B0E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "7C74657E-2564-4F1D-B04D-F7B9E8341D05", + "posted": "2017-04-17T17:35:58-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "10/10 would field that pokemon team. :3", + "commentid": "8B63ED1C-FD66-ADED-E273-4D02F3F91738", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T06:10:05-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/a/packratprincess.gif?11", + "userid": "B1AA6B85-8EAC-57E6-B733-F731EFF2D56C", + "username": "PackRatPrincess" + } + }, + { + "body": "hahaha", + "commentid": "5043BFA6-63A6-881C-4084-560F844AC1DD", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "8B63ED1C-FD66-ADED-E273-4D02F3F91738", + "posted": "2017-04-17T17:35:40-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "I'd also accept being one of the pokemon on the team, lol. X3", + "commentid": "C142A394-9C32-18C6-7312-9ACE1DB159FB", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "5043BFA6-63A6-881C-4084-560F844AC1DD", + "posted": "2017-04-17T18:15:41-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/p/a/packratprincess.gif?11", + "userid": "B1AA6B85-8EAC-57E6-B733-F731EFF2D56C", + "username": "PackRatPrincess" + } + }, + { + "body": "looks like they've all been trained to have max hp", + "commentid": "FCA9EC2C-DDF2-B5DB-A8A1-E11BDBCF8CC9", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T06:06:55-0700", + "replies": 1, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/s/u/superspoe.png?13", + "userid": "2CF58F6A-E5D1-6905-EA92-F6BD5538F0BA", + "username": "SuperSpoe" + } + }, + { + "body": "All thick fat!", + "commentid": "47D4DC2D-AAC4-777A-98DE-43B7A8E92D0C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "FCA9EC2C-DDF2-B5DB-A8A1-E11BDBCF8CC9", + "posted": "2017-04-16T19:07:32-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Lilligant and Meloetta getting so much love <3", + "commentid": "B45A0CBB-99C7-68A7-9397-6076A6EFB71D", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T05:56:53-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/a/cawowner54.gif?2", + "userid": "1E2FBEA3-9210-D898-62AC-10ED10F8615F", + "username": "cawowner54" + } + }, + { + "body": "Could your team look any cuter? jeez >//<

This is so good Jee ^.^", + "commentid": "2A080396-3147-50C7-F614-2C6569A957CC", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T05:53:47-0700", + "replies": 1, + "user": { + "type": "banned", + "usericon": "https://a.deviantart.net/avatars/v/e/velvetexplosion.gif?10", + "userid": "180263B9-C8DD-82CE-E758-B5B704BA3768", + "username": "VelvetExplosion" + } + }, + { + "body": "If they got even bigger. lol", + "commentid": "E9CD6E86-EB80-7049-E180-9EBF7A43F06E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "2A080396-3147-50C7-F614-2C6569A957CC", + "posted": "2017-04-16T19:07:51-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "D'awww~ That Lilligant and Melloetta are just adorable!", + "commentid": "1C592287-160A-2E98-D0C9-58C67C73AB9F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T05:43:38-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/v/e/veil-of-j.jpg?2", + "userid": "D257E5F8-BE1D-EC50-C4EC-0D697CA56CEF", + "username": "Veil-of-J" + } + }, + { + "body": "Thanks man!", + "commentid": "3915F91A-9816-CCDC-7464-C1AD3AC2D59E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "1C592287-160A-2E98-D0C9-58C67C73AB9F", + "posted": "2017-04-16T19:02:28-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "You're welcome", + "commentid": "583D76BF-F8A8-8099-561D-2B196DEADE70", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "3915F91A-9816-CCDC-7464-C1AD3AC2D59E", + "posted": "2017-04-16T19:49:30-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/v/e/veil-of-j.jpg?2", + "userid": "D257E5F8-BE1D-EC50-C4EC-0D697CA56CEF", + "username": "Veil-of-J" + } + }, + { + "body": "That's how I'd run a Pokemon gym, not gonna lie.", + "commentid": "85EE18E4-0186-3D67-3921-69777D5A43BD", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T05:27:56-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/default.gif", + "userid": "017C24AA-5597-8E2F-7D62-CDC12F4CBDAA", + "username": "Writerman674" + } + }, + { + "body": "XD", + "commentid": "74D02FA5-288E-901B-21BB-C25FEF6AE748", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "85EE18E4-0186-3D67-3921-69777D5A43BD", + "posted": "2017-04-16T19:02:20-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Cute, but a good Fire type could burn through half of them.", + "commentid": "0956F0E1-F3E2-25BA-BB41-56526E913326", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T05:26:55-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/l/alucard-v.png?6", + "userid": "723776DE-D3F8-1981-4112-D38FA6563A98", + "username": "Alucard-V" + } + }, + { + "body": "Good thing they're not made for fighting. : 3", + "commentid": "11A9CF9C-2CFE-3351-F024-BFFABC08CB63", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "0956F0E1-F3E2-25BA-BB41-56526E913326", + "posted": "2017-04-14T05:52:32-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "A Primarina and a Salazzle would do more to make it a more \"well rounded\" harem team in that regard. ", + "commentid": "A7B9473F-5CAC-2719-9655-78EA616C8076", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 2, + "parentid": "11A9CF9C-2CFE-3351-F024-BFFABC08CB63", + "posted": "2017-04-14T08:21:10-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/l/alucard-v.png?6", + "userid": "723776DE-D3F8-1981-4112-D38FA6563A98", + "username": "Alucard-V" + } + }, + { + "body": "I like how Meloetta is hogging the burger tray", + "commentid": "7EC1408D-64D6-0394-D4CD-8B40E7CAC4EE", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2017-04-14T05:22:22-0700", + "replies": 1, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/c/h/chubbinator.jpg?9", + "userid": "6E260CCE-6110-4ACE-FF09-41F13C5A3F49", + "username": "Chubbinator" + } + }, + { + "body": "Greedy lil mon.", + "commentid": "60CC7E6C-83EB-46D4-D273-0576A5601825", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "7EC1408D-64D6-0394-D4CD-8B40E7CAC4EE", + "posted": "2017-04-16T19:01:58-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "You mean NOT so little. lol", + "commentid": "0C3B8129-1130-208D-43C9-41F254C84280", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "60CC7E6C-83EB-46D4-D273-0576A5601825", + "posted": "2017-04-22T08:13:56-0700", + "replies": 0, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/c/h/chubbinator.jpg?9", + "userid": "6E260CCE-6110-4ACE-FF09-41F13C5A3F49", + "username": "Chubbinator" + } + }, + { + "body": "Here, have a poffin! Wow, you finished that quickly! Have another one! You eat so fast! Have another one, and another, and another, and... 😄", + "commentid": "52B9A485-001C-4527-BEA0-43851CED5FC8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T05:05:48-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/a/r/artdevil-91.png?8", + "userid": "BFDF8320-003C-4487-2980-C12115E32910", + "username": "ARTdEVIL-91" + } + }, + { + "body": "The cycle never ends!", + "commentid": "327E5DB6-75DF-D3F8-C196-5DB636DECB92", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "52B9A485-001C-4527-BEA0-43851CED5FC8", + "posted": "2017-04-16T19:02:14-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "OH my... so beautiful!! I love fatty female pokemon like this!! \":love:\"", + "commentid": "2CBADD11-552F-2854-6AAB-C008B3343BD8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": null, + "posted": "2017-04-14T04:47:54-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/o/tolkardragon18.jpg?2", + "userid": "A85A4407-921E-A348-4A8B-D5FAB47BC1DE", + "username": "TolkarDragon18" + } + }, + { + "body": "Thanks!", + "commentid": "0D711C70-8953-44DF-12EC-6369121CC817", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "2CBADD11-552F-2854-6AAB-C008B3343BD8", + "posted": "2017-04-16T19:03:00-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "You're welcome!", + "commentid": "4C6CC797-5513-4774-C441-79BDC9FBA978", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "0D711C70-8953-44DF-12EC-6369121CC817", + "posted": "2017-04-16T19:05:11-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/o/tolkardragon18.jpg?2", + "userid": "A85A4407-921E-A348-4A8B-D5FAB47BC1DE", + "username": "TolkarDragon18" + } + }, + { + "body": "I'm a sucker for a big gardevior though all of them do look good", + "commentid": "DED02D0C-B396-0960-1379-47976BE32FCF", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 2, + "parentid": null, + "posted": "2017-04-14T04:28:00-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/a/dark-ninja92.png?6", + "userid": "A500DB7E-7286-D30E-FAFD-35FDABE2868F", + "username": "dark-ninja92" + } + }, + { + "body": "Thanks man!", + "commentid": "467C99E4-E614-E9B1-56A7-5434DF113FD8", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "DED02D0C-B396-0960-1379-47976BE32FCF", + "posted": "2017-04-16T19:02:47-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "I hope to see more big and soft pokemon from you in the future", + "commentid": "934AD1B9-E52A-1A8F-7E66-5D6D0694E0BC", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "467C99E4-E614-E9B1-56A7-5434DF113FD8", + "posted": "2017-04-16T19:04:45-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/d/a/dark-ninja92.png?6", + "userid": "A500DB7E-7286-D30E-FAFD-35FDABE2868F", + "username": "dark-ninja92" + } + }, + { + "body": "Hey, everyone needs to indulge at some point. :3c", + "commentid": "59155106-C40A-EC26-2A01-71461727560E", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2017-04-14T04:22:01-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/t/y/tynorg-six.jpg?6", + "userid": "00DF3D17-636F-9A49-AA5B-64B4F5C15A48", + "username": "Tynorg-Six" + } + }, + { + "body": "I always do...", + "commentid": "B264C97F-003A-D389-AF97-7FE4864AEA3F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "59155106-C40A-EC26-2A01-71461727560E", + "posted": "2017-04-16T19:01:46-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Squishy female mons is always a win! \":D\"", + "commentid": "8C7116FF-1CCB-439C-5975-05A7F92C1C3C", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2017-04-14T04:09:50-0700", + "replies": 2, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/y/e/yellowraichu.png?7", + "userid": "A1075B7E-E07B-B3DA-6EAA-B3E85ED5371A", + "username": "YellowRaichu" + } + }, + { + "body": "yeah, especially with their body slam and roll out XD", + "commentid": "C2A0F05F-B201-E050-F170-AB7ABEADFBC9", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "8C7116FF-1CCB-439C-5975-05A7F92C1C3C", + "posted": "2017-05-30T13:42:43-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/l/u/luigihorror64.png?3", + "userid": "14533101-F00C-2C37-C285-EC455B3F4A78", + "username": "LuigiHorror64" + } + }, + { + "body": "yeah!", + "commentid": "78091A7E-4EF3-1903-1204-CD9FE418E0AD", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": "8C7116FF-1CCB-439C-5975-05A7F92C1C3C", + "posted": "2017-04-16T19:01:36-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "The waifu gym, a most dangerous gym if not properly prepared for. Once conquered you come out not as a boy, but as a man.", + "commentid": "40160996-BF3F-4C20-0EDB-4F005E0133A7", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 4, + "parentid": null, + "posted": "2017-04-14T04:08:37-0700", + "replies": 1, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/c/o/colonel-dietrik.jpg?4", + "userid": "66A93BDC-8941-DB65-0E83-45D47F054033", + "username": "Colonel-Dietrik" + } + }, + { + "body": "Oh man XD!", + "commentid": "16C0F3C9-61B5-E165-8833-A4539CD1F161", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "40160996-BF3F-4C20-0EDB-4F005E0133A7", + "posted": "2017-04-16T19:01:25-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + }, + { + "body": "Favoriting because of Lilligant.", + "commentid": "C3C047E2-946A-5FF8-7AD4-CB0DC51D659F", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 1, + "parentid": null, + "posted": "2017-04-14T03:59:31-0700", + "replies": 1, + "user": { + "type": "premium", + "usericon": "https://a.deviantart.net/avatars/g/o/goshujin-neko.png?4", + "userid": "BBDD8A0F-AD77-C4D2-5709-9B4075EF9F71", + "username": "Goshujin-Neko" + } + }, + { + "body": "hahaha", + "commentid": "89AE8CD7-309B-01AD-388D-87D87F496AAF", + "hidden": null, + "is_featured": false, + "is_liked": false, + "likes": 0, + "parentid": "C3C047E2-946A-5FF8-7AD4-CB0DC51D659F", + "posted": "2017-04-16T19:01:15-0700", + "replies": 0, + "user": { + "type": "regular", + "usericon": "https://a.deviantart.net/avatars/j/e/jeetdoh.jpg?5", + "userid": "5CDF7127-9A49-4B92-63B1-6A81C5321385", + "username": "Jeetdoh" + } + } + ], + "content": { + "filename": "pokemon_gym__zero_exercise_by_jeetdoh_db5r97r.jpg", + "filesize": 2418861, + "height": 2480, + "src": "https://wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/28ffd60b-8e5a-45df-9141-56bbf4e28deb/db5r97r-283ee1e7-d09a-470b-ae15-7df2d6e72739.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsImV4cCI6MTY3NDQ0ODk5MSwiaWF0IjoxNjc0NDQ4MzgxLCJqdGkiOiI2M2NlMGUwN2M3ZWZlIiwib2JqIjpbW3sicGF0aCI6IlwvZlwvMjhmZmQ2MGItOGU1YS00NWRmLTkxNDEtNTZiYmY0ZTI4ZGViXC9kYjVyOTdyLTI4M2VlMWU3LWQwOWEtNDcwYi1hZTE1LTdkZjJkNmU3MjczOS5qcGcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ.NPJ4I9BiJX-Uz8X6_ihnyOLJRMTU-v7OpmEJPfDT0Mw", + "transparency": false, + "width": 3508 + }, + "da_category": "Other", + "date": "2017-04-14 10:53:35", + "description": "Me and my team of lovely ladies...
Seems super self indulgent, but so worth it...", + "deviationid": "CDC241A3-F7A1-A11C-7955-BED1CD0DB4D1", + "download_filesize": 2418861, + "extension": "jpg", + "filename": "pokemon_gym__zero_exercise_by_jeetdoh-db5r97r", + "index": 674797671, + "index_base36": "b5r97r", + "is_blocked": false, + "is_deleted": false, + "is_downloadable": true, + "is_favourited": false, + "is_mature": false, + "is_published": true, + "is_watching": false, + "license": "No License", + "preview": { + "height": 724, + "src": "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/28ffd60b-8e5a-45df-9141-56bbf4e28deb/db5r97r-283ee1e7-d09a-470b-ae15-7df2d6e72739.jpg/v1/fill/w_1024,h_724,q_75,strp/pokemon_gym__zero_exercise_by_jeetdoh_db5r97r-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzI0IiwicGF0aCI6IlwvZlwvMjhmZmQ2MGItOGU1YS00NWRmLTkxNDEtNTZiYmY0ZTI4ZGViXC9kYjVyOTdyLTI4M2VlMWU3LWQwOWEtNDcwYi1hZTE1LTdkZjJkNmU3MjczOS5qcGciLCJ3aWR0aCI6Ijw9MTAyNCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.u496KgZEwGC5PPx7S3f_B-1yLh1t8raSAQWiOhZewB8", + "transparency": false, + "width": 1024 + }, + "printid": null, + "published_time": 1492167215, + "stats": { + "comments": 312, + "favourites": 4386 + }, + "subcategory": "collection", + "tags": [ + "bbw", + "belly", + "chubby", + "fat", + "food", + "gain", + "girls", + "harem", + "moon", + "obese", + "pokemon", + "ssbbw", + "sun", + "trainer", + "types", + "weight", + "jeetdoh", + "gardevoir", + "overweight", + "stuffing", + "meloetta", + "lilligant", + "florges", + "lurantis", + "tsareena" + ], + "target": { + "extension": "jpg", + "filename": "pokemon_gym__zero_exercise_by_jeetdoh-db5r97r", + "filesize": 2418861, + "height": 2480, + "src": "https://wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/28ffd60b-8e5a-45df-9141-56bbf4e28deb/db5r97r-283ee1e7-d09a-470b-ae15-7df2d6e72739.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsImV4cCI6MTY3NDQ0ODk5MSwiaWF0IjoxNjc0NDQ4MzgxLCJqdGkiOiI2M2NlMGUwN2M3ZWZlIiwib2JqIjpbW3sicGF0aCI6IlwvZlwvMjhmZmQ2MGItOGU1YS00NWRmLTkxNDEtNTZiYmY0ZTI4ZGViXC9kYjVyOTdyLTI4M2VlMWU3LWQwOWEtNDcwYi1hZTE1LTdkZjJkNmU3MjczOS5qcGcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ.NPJ4I9BiJX-Uz8X6_ihnyOLJRMTU-v7OpmEJPfDT0Mw", + "transparency": false, + "width": 3508 + }, + "thumbs": [ + { + "height": 106, + "src": "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/28ffd60b-8e5a-45df-9141-56bbf4e28deb/db5r97r-283ee1e7-d09a-470b-ae15-7df2d6e72739.jpg/v1/fit/w_150,h_150,q_70,strp/pokemon_gym__zero_exercise_by_jeetdoh_db5r97r-150.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzI0IiwicGF0aCI6IlwvZlwvMjhmZmQ2MGItOGU1YS00NWRmLTkxNDEtNTZiYmY0ZTI4ZGViXC9kYjVyOTdyLTI4M2VlMWU3LWQwOWEtNDcwYi1hZTE1LTdkZjJkNmU3MjczOS5qcGciLCJ3aWR0aCI6Ijw9MTAyNCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.u496KgZEwGC5PPx7S3f_B-1yLh1t8raSAQWiOhZewB8", + "transparency": false, + "width": 150 + }, + { + "height": 200, + "src": "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/28ffd60b-8e5a-45df-9141-56bbf4e28deb/db5r97r-283ee1e7-d09a-470b-ae15-7df2d6e72739.jpg/v1/fill/w_283,h_200,q_70,strp/pokemon_gym__zero_exercise_by_jeetdoh_db5r97r-200h.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzI0IiwicGF0aCI6IlwvZlwvMjhmZmQ2MGItOGU1YS00NWRmLTkxNDEtNTZiYmY0ZTI4ZGViXC9kYjVyOTdyLTI4M2VlMWU3LWQwOWEtNDcwYi1hZTE1LTdkZjJkNmU3MjczOS5qcGciLCJ3aWR0aCI6Ijw9MTAyNCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.u496KgZEwGC5PPx7S3f_B-1yLh1t8raSAQWiOhZewB8", + "transparency": false, + "width": 283 + }, + { + "height": 212, + "src": "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/28ffd60b-8e5a-45df-9141-56bbf4e28deb/db5r97r-283ee1e7-d09a-470b-ae15-7df2d6e72739.jpg/v1/fit/w_300,h_724,q_70,strp/pokemon_gym__zero_exercise_by_jeetdoh_db5r97r-300w.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzI0IiwicGF0aCI6IlwvZlwvMjhmZmQ2MGItOGU1YS00NWRmLTkxNDEtNTZiYmY0ZTI4ZGViXC9kYjVyOTdyLTI4M2VlMWU3LWQwOWEtNDcwYi1hZTE1LTdkZjJkNmU3MjczOS5qcGciLCJ3aWR0aCI6Ijw9MTAyNCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.u496KgZEwGC5PPx7S3f_B-1yLh1t8raSAQWiOhZewB8", + "transparency": false, + "width": 300 + } + ], + "title": "Pokemon Gym, Zero Exercise", + "url": "https://www.deviantart.com/jeetdoh/art/Pokemon-Gym-Zero-Exercise-674797671", + "username": "Nrythmic" +} diff --git a/tests/furaffinity.image.json b/tests/furaffinity.image.json new file mode 100644 index 0000000..6ed4fd1 --- /dev/null +++ b/tests/furaffinity.image.json @@ -0,0 +1,60 @@ +{ + "artist": "Englishweasel", + "artist_url": "englishweasel", + "category": "furaffinity", + "comments": 1, + "date": "2022-06-14 21:32:55", + "description": "\n \n \n \n Violet has a very huge appetite, so she tries her best to direct it towards the people she feels deserve it. Given her job she often finds the people who she feels are the lowest common denominator of civilization and the government is not above using her talents for making people disappear. All the same, she isn’t one to let people out once she has them, and one of the few things that bring her a semblance of joy is knowing she took someone horrid and put them to better use as wolf fat.
\r\n
\r\nViolet is one of my many many characters
\r\nArtwork done by the real O.G. \"_KingCreep105\" _KingCreep105 who did a great job with those curves\n \n ", + "extension": "jpg", + "fa_category": "Artwork (Digital)", + "favorites": 279, + "filename": "1655242375.englishweasel_f0800c96-0907-490c-a6a7-0191da61d061_jpeg", + "gender": "Female", + "height": 721, + "id": 47657025, + "rating": "Adult", + "species": "Wolf", + "subcategory": "favorite", + "tags": [ + "Violet", + "Siskel", + "Giant", + "Wolf", + "Woman", + "Pred", + "Mass", + "Vore", + "Unwilling", + "Prey", + "Digestion", + "Weight", + "Gain", + "Big", + "Belly", + "Fat", + "Butt", + "Fluffy", + "Tail", + "Dont", + "feel", + "bad", + "for", + "them", + "they", + "deserved", + "it", + "trust", + "me", + "no", + "they", + "wont", + "be", + "okay" + ], + "theme": "Vore", + "title": "Better off wolf fat", + "url": "https://d.furaffinity.net/art/englishweasel/1655242375/1655242375.englishweasel_f0800c96-0907-490c-a6a7-0191da61d061_jpeg.jpg", + "user": "shysho", + "views": 1961, + "width": 1280 +} diff --git a/xmp.py b/xmp.py new file mode 100644 index 0000000..ba9cb18 --- /dev/null +++ b/xmp.py @@ -0,0 +1,123 @@ +"XMP Manipulator for gallery-dl" +import logging +logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) + +allowed_exts=[ + "html", "htm", "xhtml", "xht", # HTML + "tif", "tiff", # TIFF + "jpeg", "jpg", "pjpeg", "pjpg", "jpe", # JPEG + "jp2", "jpf", "jpx", "jpm", "mj2", # JPEG 2000 + "png", "apng", # PNG + "gif", # GIF + "mp3", # MPEG-1 / MPEG-2 Layer III + "mp4", "m4a", "m4p", "m4b", "m4r", "m4v", # MPEG-4 + "mov", "qt", # Apple QuickTime .mov + "pdf", # PDF + "webp" # WebP +] + +# def backupMetadata(file: str, outputFileExt: str = "xmp_backup.json.xz") -> bool: +# """Exports XMP metadata inside of a file. + +# Parameters +# ---------- +# file : str +# Location of the file relative to the working directory. +# outputFileExt : str, optional +# The suffix used for the backup file. By default, the output file will be formatted as such: +# .xmp_backup.json.xz + +# Returns +# ------- +# bool +# True, if operation was successful. +# False, if operation failed. +# """ +# from libxmp.utils import file_to_dict + +# import json +# with open(f"{file}.xmp_backup.json.xz",'w+b') as bfile +# logging.debug(f"writing to {bfile}") +# import lzma +# bfile.write(lzma.compress( +# bytes(json.dumps(file_to_dict(file),sort_keys=True)), +# format=FORMAT_XZ, +# check=CHECK_SHA256, +# preset=9 +# )) +# logging.debug("wrote backup data") + +# logging.info("backup done!") + +def backupMetadata(file): + import pyexiv2 + data = pyexiv2.ImageMetadata(file) + data.read() + + full = [] + + for key in data.xmp_keys: + full.append([ + key, + data[key].raw_value + ]) + + with open(f"{file}.xmp_backup.json.xz",'w+b') as bfile + import lzma, json + bfile.write(lzma.compress( + bytes(json.dumps(full)), + format=FORMAT_XZ, + check=CHECK_SHA256, + preset=9 + )) + +# def writeTags(file: str, tags: dict) -> bool: +# """Writes XMP tags to file taking the info.json file as a dict. + + +# """ +# from libxmp import XMPFiles, consts +# xmpfile = XMPFiles(file_path=file,) +# if artist in tags: +# if type(tags.artist) == str: +# xmp.set_property(consts.XMP_NS_DC, u'creator', tags.artist.decode('unicode-escape')) + +def writeTags(file, tags): + import pyexiv2 + xmptags = pyexiv2.ImageMetadata(file) + xmptags.read() + + if artist in tags: + if type(tag.artist) == str: + xmptags['Xmp.dc.creator'] = tags.artist + elif tags.category == "deviantart": + xmptags['Xmp.dc.creator'] = tags.artist.username + + if title in tags: + xmptags['Xmp.dc.title'] = tags.title + + if description in tags: + xmptags['Xmp.dc.description'] = tags.description + + if date in tags: + xmptags['Xmp.dc.date'] = tags.date + + from getpub import getPub + xmptags['Xmp.dc.publisher'] = getPub(tags) + del getPub + + keywords=[] + + if tags in tags: for item in tags.tags: if item not in keywords: keywords.append(item) + + if theme in tags and tags.theme not in keywords: + keywords.append(tags.theme) + + if rating in tags and tags.rating not in keywords: + keywords.append(tags.rating) + + if species in tags and tags.species not in keywords: + keywords.append(tags.species) + + if gender in tags and tags.gender not in keywords: + keywords \ No newline at end of file